Metadata-Version: 1.0
Name: consullock
Version: 1.0.1
Summary: Tool to use locks in Consul (v1.0.1)
Home-page: https://github.com/wtsi-hgi/consul-lock
Author: UNKNOWN
Author-email: UNKNOWN
License: MIT
Description-Content-Type: UNKNOWN
Description: |Build Status| |codecov|
        
        Consul Lock
        ===========
        
        *CLI and Python interface for easily managing Consul locks*
        
        About
        -----
        
        -  CLI:
        
           -  Acquire and release a lock.
           -  Release multiple locks with keys that match regular expression.
           -  Meaningful exit codes (see ``configuration.py`` for details).
           -  JSON output on stdout.
           -  Add extra verbosity on stderr with ``-vv``.
        
        -  Python interface:
        
           -  Acquire and release a lock.
           -  Release multiple locks.
           -  Find and release multiple locks with keys that match regular
              expression.
           -  Type hinting.
        
        Installation
        ------------
        
        Prerequisites: - python >= 3.6
        
        The tool can be installed from PyPi:
        
        .. code:: bash
        
            pip install consullock
        
        Bleeding edge versions can be installed directly from GitHub:
        
        .. code:: bash
        
            pip install git+https://github.com/wtsi-hgi/consul-lock.git@master#egg=consullock
        
        Usage
        -----
        
        CLI
        ~~~
        
        Setup
        ^^^^^
        
        Set environment variables:
        
        .. code:: bash
        
            export CONSUL_HTTP_ADDR=consul.example.com:8500
            export CONSUL_HTTP_TOKEN=token
        
        General
        ^^^^^^^
        
        ::
        
            usage: consul-lock [-h] [-v] {unlock,lock} ...
        
            Tool to use locks in Consul
        
            positional arguments:
              {unlock,lock}  action
                unlock       release a lock
                lock         acquire a lock
        
            optional arguments:
              -h, --help     show this help message and exit
              -v             increase the level of log verbosity (add multiple increase
                             further)
        
        Locking
        ^^^^^^^
        
        ::
        
            usage: consul-lock lock [-h] [--session-ttl SESSION_TTL] [--non-blocking]
                                    [--timeout TIMEOUT]
                                    key
        
            positional arguments:
              key                   the lock identifier
        
            optional arguments:
              -h, --help            show this help message and exit
              --session-ttl SESSION_TTL
                                    time to live (ttl) in seconds of the session that will
                                    be created to hold the lock. Must be between 10s and
                                    86400s (inclusive). If set to 0, the session will not
                                    expire
              --non-blocking        do not block if cannot lock straight away
              --timeout TIMEOUT     give up trying to acquire the key after this many
                                    seconds (where 0 is never)
        
        Unlocking
        ^^^^^^^^^
        
        ::
        
            usage: consul-lock unlock [-h] [-r] key
        
            positional arguments:
              key         the lock identifier
        
            optional arguments:
              -h, --help  show this help message and exit
              -r          Whether the key should be treated as a regular expression and to
                          release all matching locks
        
        Examples
        ^^^^^^^^
        
        Block until acquires lock with key "my/lock", which will expire after 10
        minutes:
        
        ::
        
            $ consul-lock lock --session-ttl=600 my/lock
            {"created": "2017-11-30T14:55:49.322108", "key": "my/lock", "session": "9b92744f-f1a9-db12-7873-ad44af5ae224"}
            $ echo $?
            0 
        
        Try to acquire already locked "my/lock" but do not block:
        
        ::
        
            $ consul-lock lock --non-blocking my/lock
            null
            Unable to acquire lock: my/lock
            $ echo $?
            100
        
        (where ``null`` is the JSON output, written to stdout)
        
        Unlock lock:
        
        .. code:: bash
        
            $ consul-lock unlock my/lock
            ["my/lock"]
            $ echo $?
            0
        
        Python
        ~~~~~~
        
        .. code:: python
        
            from typing import Set
            from consullock.configuration import get_consul_configuration_from_environment
            from consullock.managers import ConsulLockManager
            from consullock.models import ConsulLockInformation
        
            # Instantiate lock manager
            lock_manager = ConsulLockManager(
                consul_configuration=get_consul_configuration_from_environment(),
                session_ttl_in_seconds=3600)
                
            # Get lock
            lock = lock_manager.acquire("my/lock", timeout=60, blocking=True)   # type: ConsulLockInformation
        
            # Find locks
            locks = lock_manager.find("my/.*")  # type: Dict[str, Optional[ConsulLockInformation]]
        
            # Release single lock
            lock_manager.release("my/lock")
        
            # Release many locks
            lock_manager.release_all("my/lock-1", "my/lock-2", "my/lock-3")
        
            # Release locks with key matching regex
            lock_manager.release_regex("my/.*")
        
        Development
        -----------
        
        Tests
        ~~~~~
        
        Prerequisites: - Docker (used to start Consul instances)
        
        Install the test requirements:
        
        ::
        
            pip install -r test_requirements.txt
        
        Run tests with:
        
        ::
        
            PYTHONPATH=. python -m unittest discover -v -s consullock/tests
        
        Alternatives
        ------------
        
        -  `alaa/consul-lock <https://github.com/alaa/consul-lock>`__ - Go tool
           with CLI where the user has to deal with sessions.
        -  `fidian/consul-locker <https://github.com/fidian/consul-locker>`__ -
           bash script that locks, executes and then releases.
        -  `KurToMe/python-consul-lock <https://github.com/KurToMe/python-consul-lock>`__
           - unmaintained Python lock interface with with questionable
           configuration.
        
        .. |Build Status| image:: https://travis-ci.org/wtsi-hgi/consul-lock.svg?branch=master
           :target: https://travis-ci.org/wtsi-hgi/consul-lock
        .. |codecov| image:: https://codecov.io/gh/wtsi-hgi/consul-lock/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/wtsi-hgi/consul-lock
        
Platform: UNKNOWN
