Skip to main content

Distributed Lock with using Redis

Project description

distrilockper - Distributed Lock Helper

Feature

  • Support Redis Cluster and Redis Single setup
  • Redis operation with Lua scripting (Atomic operations)
  • Lock watch dog (auto increase the alive time of key if the process time is large than key ttl)
  • Thread safe
  • Support Reentrant lock
  • Support expired unlock function, automatically unlock after x seconds, no need to manually unlock by call unlock method
  • Support try lock, wait n second if the lock is existed.

Basic Usage

  1. Install

    pip install distrilockper
    
  2. declare config instance

    from distrilockper import Config
    config = Config()
    
  3. select single Redis server mode or cluster Redis servers mode

    config.use_single_server()
    
    config.use_cluster_servers()
    
  4. set the config

    config.use_single_server().set_config(host='0.0.0.0', port=6379)
    
    config.use_cluster_servers().set_config(host='0.0.0.0', port=7000)
    
    config.use_cluster_servers().add_node_address(host='0.0.0.0', port=7000) \
                                    .add_node_address(host='0.0.0.0', port=7001) \
                                    .add_node_address(host='0.0.0.0', port=7002) \
                                    .add_node_address(host='0.0.0.0', port=7003) \
                                    .add_node_address(host='0.0.0.0', port=7004) \
                                    .add_node_address(host='0.0.0.0', port=7005)
    

    The set_config and add_node_address method takes several arguments from python redis library

  5. declare the lock instance

    helper = LockHelper()
    helper.create(config)
    
  6. get a kind of lock

    lock = helper.get_reentrant_lock(key='apples')
    
  7. try lock the key

    result = lock.try_lock(wait_time=10,lease_time=7,time_unit='second')
    

    The try_lock method takes several arguments:

    • wait_time : try lock operation time out
    • lease_time : the release time of the lock
    • time_unit : unit of lease_time and wait_time
      • seconds / s
      • hour / h
      • minute / m
      • milliseconds/ ms
  8. unlock after business logic done

    lock.unlock()
    

Reentrant

the reentrant lock only supports in the same thread

Get the lock in different thread

from distrilockper import Config
from distrilockper import LockHelper
from multiprocessing.dummy import Pool as ThreadPool

config = Config()
config.use_single_server().set_config(host='0.0.0.0', port=6379)

helper = LockHelper()
helper.create(config)

def get_lock(_):
    print("run", _)
    Locker1 = helper.get_reentrant_lock(key='apples')
    re1 = Locker1.try_lock(60, 10, 'second')
    assert re1 == True
    print("get lock",re1)
    assert Locker1.is_exists() == True
    print('exists', Locker1.is_exists())

pool = ThreadPool(100)
results = pool.map(get_lock, range(10))

get the lock in same thread

from distrilockper import Config
from distrilockper import LockHelper
from multiprocessing.dummy import Pool as ThreadPool

config = Config()
config.use_single_server().set_config(host='0.0.0.0', port=6379)

helper = LockHelper()
helper.create(config)

for i in range(10):
    Locker1 = helper.get_reentrant_lock(key='apples')
    re1 = Locker1.try_lock(60, 10, 'second')
    assert re1 == True
    print("get lock", re1)
    assert Locker1.is_exists() == True
    print('exists', Locker1.is_exists())

Watchdog (for lock)

use case: the time is not predictable for time-consuming task or business logic. you can not set the fixed release time for lock you got. An Alternative plan that you can set a high number for release but it will be wait a long long time when you program be aborted unexpectedly

Watchdog mechanism will refresh regularly the lock until you call unlock method or the program be aborted unexpectedly

from distrilockper import Config
from distrilockper import LockHelper
from random import randint
from time import sleep

config = Config()
config.use_single_server().set_config(host='0.0.0.0', port=6379)

helper = LockHelper()
helper.create(config)

for i in range(10):
    Locker1 = helper.get_reentrant_lock(key='apples')
    re1 = Locker1.try_lock(wait_time=60, time_unit= 'second')
    assert re1 == True
    print("get lock", re1)
    assert Locker1.is_exists() == True
    print('exists', Locker1.is_exists())

    print('do something ')
    sleep(randint(10,100))

    assert Locker1.unlock() == True

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

distrilockper-0.0.1a11-py3-none-any.whl (36.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page