用數據庫實現了一個分佈式鎖,雖簡陋,但能用!

之前參加過一個庫存系統,因爲其業務複雜性,搞了不少個應用來支撐。這樣的話一份庫存數據就有可能同時有多個應用來修改庫存數據。好比說,有定時任務域xx.cron,和SystemA域和SystemB域這幾個JAVA應用,可能同時修改同一份庫存數據。若是不作協調的話,就會有髒數據出現。對於跨JAVA進程的線程協調,能夠藉助外部環境,例如DB或者Redis。下文介紹一下如何使用DB來實現分佈式鎖。Java面試寶典PDF完整版前端

設計

本文設計的分佈式鎖的交互方式以下:一、根據業務字段生成transaction_id,併線程安全的建立鎖資源 二、根據transaction_id申請鎖 三、釋放鎖java

動態建立鎖資源

在使用synchronized關鍵字的時候,必須指定一個鎖對象。mysql

synchronized(obj) {
...
}

進程內的線程能夠基於obj來實現同步。obj在這裏能夠理解爲一個鎖對象。若是線程要進入synchronized代碼塊裏,必須先持有obj對象上的鎖。這種鎖是JAVA裏面的內置鎖,建立的過程是線程安全的。那麼藉助DB,如何保證建立鎖的過程是線程安全的呢?能夠利用DB中的UNIQUE KEY特性,一旦出現了重複的key,因爲UNIQUE KEY的惟一性,會拋出異常的。在JAVA裏面,是SQLIntegrityConstraintViolationException異常。面試

create table distributed_lock
(
 id BIGINT UNSIGNED PRIMARY KEY AUTO_INCREMENT COMMENT '自增主鍵',
 transaction_id varchar(128) NOT NULL DEFAULT '' COMMENT '事務id',
 last_update_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP NOT NULL COMMENT '最後更新時間',
 create_time TIMESTAMP DEFAULT '0000-00-00 00:00:00' NOT NULL COMMENT '建立時間',
 UNIQUE KEY `idx_transaction_id` (`transaction_id`)
)

transaction_id是事務Id,好比說,能夠用spring

倉庫 + 條碼 + 銷售模式sql

來組裝一個transaction_id,表示某倉庫某銷售模式下的某個條碼資源。不一樣條碼,固然就有不一樣的transaction_id。若是有兩個應用,拿着相同的transaction_id來建立鎖資源的時候,只能有一個應用建立成功。數據庫

一條distributed_lock記錄插入成功了,就表示一份鎖資源建立成功了。後端

DB鏈接池列表設計

在寫操做頻繁的業務系統中,一般會進行分庫,以下降單數據庫寫入的壓力,並提升寫操做的吞吐量。若是使用了分庫,那麼業務數據天然也都分配到各個數據庫上了。在這種水平切分的多數據庫上使用DB分佈式鎖,能夠自定義一個DataSouce列表。並暴露一個getConnection(String transactionId)方法,按照transactionId找到對應的Connection。安全

實現代碼以下:併發

package dlock;

import com.alibaba.druid.pool.DruidDataSource;
import org.springframework.stereotype.Component;

import javax.annotation.PostConstruct;
import java.io.FileInputStream;
import java.io.IOException;
import java.sql.Connection;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;

@Component
public class DataSourcePool {
    private List<DruidDataSource> dlockDataSources = new ArrayList<>();

    @PostConstruct
    private void initDataSourceList() throws IOException {
        Properties properties = new Properties();
        FileInputStream fis = new FileInputStream("db.properties");
        properties.load(fis);

        Integer lockNum = Integer.valueOf(properties.getProperty("DLOCK_NUM"));
        for (int i = 0; i < lockNum; i++) {
            String user = properties.getProperty("DLOCK_USER_" + i);
            String password = properties.getProperty("DLOCK_PASS_" + i);
            Integer initSize = Integer.valueOf(properties.getProperty("DLOCK_INIT_SIZE_" + i));
            Integer maxSize = Integer.valueOf(properties.getProperty("DLOCK_MAX_SIZE_" + i));
            String url = properties.getProperty("DLOCK_URL_" + i);

            DruidDataSource dataSource = createDataSource(user,password,initSize,maxSize,url);
            dlockDataSources.add(dataSource);
        }
    }

    private DruidDataSource createDataSource(String user, String password, Integer initSize, Integer maxSize, String url) {
        DruidDataSource dataSource = new DruidDataSource();
        dataSource.setDriverClassName("com.mysql.jdbc.Driver");
        dataSource.setUsername(user);
        dataSource.setPassword(password);
        dataSource.setUrl(url);
        dataSource.setInitialSize(initSize);
        dataSource.setMaxActive(maxSize);

        return dataSource;
    }

    public Connection getConnection(String transactionId) throws Exception {
        if (dlockDataSources.size() <= 0) {
            return null;
        }

        if (transactionId == null || "".equals(transactionId)) {
            throw new RuntimeException("transactionId是必須的");
        }

        int hascode = transactionId.hashCode();
        if (hascode < 0) {
            hascode = - hascode;
        }

        return dlockDataSources.get(hascode % dlockDataSources.size()).getConnection();
    }
}

首先編寫一個initDataSourceList方法,並利用Spring的PostConstruct註解初始化一個DataSource 列表。相關的DB配置從db.properties讀取。

DLOCK_NUM=2

DLOCK_USER_0="user1"
DLOCK_PASS_0="pass1"
DLOCK_INIT_SIZE_0=2
DLOCK_MAX_SIZE_0=10
DLOCK_URL_0="jdbc:mysql://localhost:3306/test1"

DLOCK_USER_1="user1"
DLOCK_PASS_1="pass1"
DLOCK_INIT_SIZE_1=2
DLOCK_MAX_SIZE_1=10
DLOCK_URL_1="jdbc:mysql://localhost:3306/test2"

DataSource使用阿里的DruidDataSource。

接着最重要的一個實現getConnection(String transactionId)方法。實現原理很簡單,獲取transactionId的hashcode,並對DataSource的長度取模便可。

鏈接池列表設計好後,就能夠實現往distributed_lock表插入數據了。

package dlock;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;

import java.sql.*;

@Component
public class DistributedLock {

    @Autowired
    private DataSourcePool dataSourcePool;

    /**
     * 根據transactionId建立鎖資源
     */
    public String createLock(String transactionId) throws Exception{
        if (transactionId == null) {
            throw new RuntimeException("transactionId是必須的");
        }
        Connection connection = null;
        Statement statement = null;
        try {
            connection = dataSourcePool.getConnection(transactionId);
            connection.setAutoCommit(false);
            statement = connection.createStatement();
            statement.executeUpdate("INSERT INTO distributed_lock(transaction_id) VALUES ('" + transactionId + "')");
            connection.commit();
            return transactionId;
        }
        catch (SQLIntegrityConstraintViolationException icv) {
            //說明已經生成過了。
            if (connection != null) {
                connection.rollback();
            }
            return transactionId;
        }
        catch (Exception e) {
            if (connection != null) {
                connection.rollback();
            }
            throw  e;
        }
        finally {
            if (statement != null) {
                statement.close();
            }

            if (connection != null) {
                connection.close();
            }
        }
    }
}

根據transactionId鎖住線程

接下來利用DB的select for update特性來鎖住線程。當多個線程根據相同的transactionId併發同時操做select for update的時候,只有一個線程能成功,其餘線程都block住,直到select for update成功的線程使用commit操做後,block住的全部線程的其中一個線程才能開始幹活。咱們在上面的DistributedLock類中建立一個lock方法。

public boolean lock(String transactionId) throws Exception {
        Connection connection = null;
        PreparedStatement preparedStatement = null;
        ResultSet resultSet = null;
        try {
            connection = dataSourcePool.getConnection(transactionId);
            preparedStatement = connection.prepareStatement("SELECT * FROM distributed_lock WHERE transaction_id = ? FOR UPDATE ");
            preparedStatement.setString(1,transactionId);
            resultSet = preparedStatement.executeQuery();
            if (!resultSet.next()) {
                connection.rollback();
                return false;
            }
            return true;
        } catch (Exception e) {
            if (connection != null) {
                connection.rollback();
            }
            throw  e;
        }
        finally {
            if (preparedStatement != null) {
                preparedStatement.close();
            }

            if (resultSet != null) {
                resultSet.close();
            }

            if (connection != null) {
                connection.close();
            }
        }
    }

實現解鎖操做

當線程執行完任務後,必須手動的執行解鎖操做,以前被鎖住的線程才能繼續幹活。在咱們上面的實現中,其實就是獲取到當時select for update成功的線程對應的Connection,並實行commit操做便可。

那麼如何獲取到呢?咱們能夠利用ThreadLocal。首先在DistributedLock類中定義

private ThreadLocal<Connection> threadLocalConn = new ThreadLocal<>();

每次調用lock方法的時候,把Connection放置到ThreadLocal裏面。咱們修改lock方法。

public boolean lock(String transactionId) throws Exception {
        Connection connection = null;
        PreparedStatement preparedStatement = null;
        ResultSet resultSet = null;
        try {
            connection = dataSourcePool.getConnection(transactionId);
            threadLocalConn.set(connection);
            preparedStatement = connection.prepareStatement("SELECT * FROM distributed_lock WHERE transaction_id = ? FOR UPDATE ");
            preparedStatement.setString(1,transactionId);
            resultSet = preparedStatement.executeQuery();
            if (!resultSet.next()) {
                connection.rollback();
                threadLocalConn.remove();
                return false;
            }
            return true;
        } catch (Exception e) {
            if (connection != null) {
                connection.rollback();
                threadLocalConn.remove();
            }
            throw  e;
        }
        finally {
            if (preparedStatement != null) {
                preparedStatement.close();
            }

            if (resultSet != null) {
                resultSet.close();
            }

            if (connection != null) {
                connection.close();
            }
        }
    }

這樣子,當獲取到Connection後,將其設置到ThreadLocal中,若是lock方法出現異常,則將其從ThreadLocal中移除掉。

有了這幾步後,咱們能夠來實現解鎖操做了。咱們在DistributedLock添加一個unlock方法。

public void unlock() throws Exception {
        Connection connection = null;
        try {
            connection = threadLocalConn.get();
            if (!connection.isClosed()) {
                connection.commit();
                connection.close();
                threadLocalConn.remove();
            }
        } catch (Exception e) {
            if (connection != null) {
                connection.rollback();
                connection.close();
            }
            threadLocalConn.remove();
            throw e;
        }
    }

缺點

畢竟是利用DB來實現分佈式鎖,對DB仍是形成必定的壓力。當時考慮使用DB作分佈式的一個重要緣由是,咱們的應用是後端應用,平時流量不大的,反而關鍵的是要保證庫存數據的正確性。對於像前端庫存系統,好比添加購物車佔用庫存等操做,最好別使用DB來實現分佈式鎖了。

進一步思考

若是想鎖住多份數據該怎麼實現?好比說,某個庫存操做,既要修改物理庫存,又要修改虛擬庫存,想鎖住物理庫存的同時,又鎖住虛擬庫存。其實也不是很難,參考lock方法,寫一個multiLock方法,提供多個transactionId的入參,for循環處理就能夠了。Java面試寶典PDF完整版

相關文章
相關標籤/搜索