Skip to content

Instantly share code, notes, and snippets.

View StrikeW's full-sized avatar

StrikeW StrikeW

  • Shanghai
View GitHub Profile
@tfrench
tfrench / leader_election.py
Last active April 13, 2023 07:28
etcd v3 leader election using Python
"""etcd3 Leader election."""
import sys
import time
from threading import Event
import etcd3
LEADER_KEY = '/leader'
LEASE_TTL = 5
SLEEP = 1