Implement class-based version of zkhander
This commit is contained in:
parent
3128c8fa70
commit
fef230ad98
|
@ -21,164 +21,232 @@
|
||||||
|
|
||||||
import time
|
import time
|
||||||
import uuid
|
import uuid
|
||||||
|
from kazoo.client import KazooClient
|
||||||
|
|
||||||
|
|
||||||
# Exists function
|
class ZKHandler(object):
|
||||||
def exists(zk_conn, key):
|
def __init__(self, hosts):
|
||||||
stat = zk_conn.exists(key)
|
"""
|
||||||
|
Initialize an instance of the ZKHandler class with config
|
||||||
|
|
||||||
|
A zk_conn object will be created but not started
|
||||||
|
"""
|
||||||
|
self.encoding = 'utf8'
|
||||||
|
self.zk_conn = KazooClient(hosts=hosts)
|
||||||
|
|
||||||
|
#
|
||||||
|
# State/connection management
|
||||||
|
#
|
||||||
|
def connect(self):
|
||||||
|
"""
|
||||||
|
Start the zk_conn object and connect to the cluster
|
||||||
|
"""
|
||||||
|
self.zk_conn.start()
|
||||||
|
|
||||||
|
def disconnect(self):
|
||||||
|
"""
|
||||||
|
Stop and close the zk_conn object and disconnect from the cluster
|
||||||
|
|
||||||
|
The class instance may be reused later (avoids persistent connections)
|
||||||
|
"""
|
||||||
|
self.zk_conn.stop()
|
||||||
|
self.zk_conn.close()
|
||||||
|
|
||||||
|
#
|
||||||
|
# Key Actions
|
||||||
|
#
|
||||||
|
def exists(self, key):
|
||||||
|
"""
|
||||||
|
Check if a key exists
|
||||||
|
"""
|
||||||
|
stat = self.zk_conn.exists(key)
|
||||||
if stat:
|
if stat:
|
||||||
return True
|
return True
|
||||||
else:
|
else:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
def read(self, key):
|
||||||
|
"""
|
||||||
|
Read data from a key
|
||||||
|
"""
|
||||||
|
return self.zk_conn.get(key)[0].decode(self.encoding)
|
||||||
|
|
||||||
# Child list function
|
def write(self, kvpairs):
|
||||||
def listchildren(zk_conn, key):
|
"""
|
||||||
children = zk_conn.get_children(key)
|
Create or update one or more keys' data
|
||||||
return children
|
"""
|
||||||
|
if type(kvpairs) is not list:
|
||||||
|
print("ZKHandler error: Key-value sequence is not a list")
|
||||||
# Delete key function
|
|
||||||
def deletekey(zk_conn, key, recursive=True):
|
|
||||||
zk_conn.delete(key, recursive=recursive)
|
|
||||||
|
|
||||||
|
|
||||||
# Rename key recursive function
|
|
||||||
def rename_key_element(zk_conn, zk_transaction, source_key, destination_key):
|
|
||||||
data_raw = zk_conn.get(source_key)
|
|
||||||
data = data_raw[0]
|
|
||||||
zk_transaction.create(destination_key, data)
|
|
||||||
|
|
||||||
if zk_conn.get_children(source_key):
|
|
||||||
for child_key in zk_conn.get_children(source_key):
|
|
||||||
child_source_key = "{}/{}".format(source_key, child_key)
|
|
||||||
child_destination_key = "{}/{}".format(destination_key, child_key)
|
|
||||||
rename_key_element(zk_conn, zk_transaction, child_source_key, child_destination_key)
|
|
||||||
|
|
||||||
zk_transaction.delete(source_key)
|
|
||||||
|
|
||||||
|
|
||||||
# Rename key function
|
|
||||||
def renamekey(zk_conn, kv):
|
|
||||||
# Start up a transaction
|
|
||||||
zk_transaction = zk_conn.transaction()
|
|
||||||
|
|
||||||
# Proceed one KV pair at a time
|
|
||||||
for source_key in sorted(kv):
|
|
||||||
destination_key = kv[source_key]
|
|
||||||
|
|
||||||
# Check if the source key exists or fail out
|
|
||||||
if not zk_conn.exists(source_key):
|
|
||||||
raise
|
|
||||||
# Check if the destination key exists and fail out
|
|
||||||
if zk_conn.exists(destination_key):
|
|
||||||
raise
|
|
||||||
|
|
||||||
rename_key_element(zk_conn, zk_transaction, source_key, destination_key)
|
|
||||||
|
|
||||||
# Commit the transaction
|
|
||||||
try:
|
|
||||||
zk_transaction.commit()
|
|
||||||
return True
|
|
||||||
except Exception:
|
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
transaction = self.zk_conn.transaction()
|
||||||
|
|
||||||
# Data read function
|
for kvpair in (kvpairs):
|
||||||
def readdata(zk_conn, key):
|
if type(kvpair) is not tuple:
|
||||||
data_raw = zk_conn.get(key)
|
print("ZKHandler error: Key-value pair '{}' is not a tuple".format(kvpair))
|
||||||
data = data_raw[0].decode('utf8')
|
return False
|
||||||
return data
|
|
||||||
|
|
||||||
|
key = kvpair[0]
|
||||||
|
value = kvpair[1]
|
||||||
|
|
||||||
# Data write function
|
if not self.exists(key):
|
||||||
def writedata(zk_conn, kv):
|
# Creating a new key
|
||||||
# Start up a transaction
|
transaction.create(key, str(value).encode(self.encoding))
|
||||||
zk_transaction = zk_conn.transaction()
|
|
||||||
|
|
||||||
# Proceed one KV pair at a time
|
|
||||||
for key in sorted(kv):
|
|
||||||
data = kv[key]
|
|
||||||
|
|
||||||
# Check if this key already exists or not
|
|
||||||
if not zk_conn.exists(key):
|
|
||||||
# We're creating a new key
|
|
||||||
zk_transaction.create(key, str(data).encode('utf8'))
|
|
||||||
else:
|
else:
|
||||||
# We're updating a key with version validation
|
# Updating an existing key
|
||||||
orig_data = zk_conn.get(key)
|
data = self.zk_conn.get(key)
|
||||||
version = orig_data[1].version
|
version = data[1].version
|
||||||
|
|
||||||
# Set what we expect the new version to be
|
# Validate the expected version after the execution
|
||||||
new_version = version + 1
|
new_version = version + 1
|
||||||
|
|
||||||
# Update the data
|
# Update the data
|
||||||
zk_transaction.set_data(key, str(data).encode('utf8'))
|
transaction.set_data(key, str(value).encode(self.encoding))
|
||||||
|
|
||||||
# Set up the check
|
# Check the data
|
||||||
try:
|
try:
|
||||||
zk_transaction.check(key, new_version)
|
transaction.check(key, new_version)
|
||||||
except TypeError:
|
except TypeError:
|
||||||
print('Zookeeper key "{}" does not match expected version'.format(key))
|
print("ZKHandler error: Key '{}' does not match expected version".format(key))
|
||||||
return False
|
return False
|
||||||
|
|
||||||
# Commit the transaction
|
|
||||||
try:
|
try:
|
||||||
zk_transaction.commit()
|
transaction.commit()
|
||||||
return True
|
return True
|
||||||
except Exception:
|
except Exception as e:
|
||||||
|
print("ZKHandler error: Failed to commit transaction: {}".format(e))
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
def delete(self, key, recursive=True):
|
||||||
|
"""
|
||||||
|
Delete a key (defaults to recursive)
|
||||||
|
"""
|
||||||
|
if self.zk_conn.delete(key, recursive=recursive):
|
||||||
|
return True
|
||||||
|
else:
|
||||||
|
return False
|
||||||
|
|
||||||
# Write lock function
|
def children(self, key):
|
||||||
def writelock(zk_conn, key):
|
"""
|
||||||
|
Lists all children of a key
|
||||||
|
"""
|
||||||
|
return self.zk_conn.get_children(key)
|
||||||
|
|
||||||
|
def rename(self, kkpairs):
|
||||||
|
"""
|
||||||
|
Rename one or more keys to a new value
|
||||||
|
"""
|
||||||
|
if type(kkpairs) is not list:
|
||||||
|
print("ZKHandler error: Key-key sequence is not a list")
|
||||||
|
return False
|
||||||
|
|
||||||
|
transaction = self.zk_conn.transaction()
|
||||||
|
|
||||||
|
def rename_element(transaction, source_key, destnation_key):
|
||||||
|
data = self.zk_conn.get(source_key)[0]
|
||||||
|
transaction.create(destination_key, data)
|
||||||
|
|
||||||
|
if self.children(source_key):
|
||||||
|
for child_key in self.children(source_key):
|
||||||
|
child_source_key = "{}/{}".format(source_key, child_key)
|
||||||
|
child_destination_key = "{}/{}".format(destination_key, child_key)
|
||||||
|
rename_element(transaction, child_source_key, child_destination_key)
|
||||||
|
|
||||||
|
transaction.delete(source_key, recursive=True)
|
||||||
|
|
||||||
|
for kkpair in (kkpairs):
|
||||||
|
if type(kkpair) is not tuple:
|
||||||
|
print("ZKHandler error: Key-key pair '{}' is not a tuple".format(kkpair))
|
||||||
|
return False
|
||||||
|
|
||||||
|
source_key = kkpair[0]
|
||||||
|
destination_key = kkpair[1]
|
||||||
|
|
||||||
|
if not self.exists(source_key):
|
||||||
|
print("ZKHander error: Source key '{}' does not exist".format(source_key))
|
||||||
|
return False
|
||||||
|
if self.exists(destination_key):
|
||||||
|
print("ZKHander error: Destination key '{}' already exists".format(destination_key))
|
||||||
|
return False
|
||||||
|
|
||||||
|
rename_element(transaction, source_key, destination_key)
|
||||||
|
|
||||||
|
try:
|
||||||
|
transaction.commit()
|
||||||
|
return True
|
||||||
|
except Exception as e:
|
||||||
|
print("ZKHandler error: Failed to commit transaction: {}".format(e))
|
||||||
|
return False
|
||||||
|
|
||||||
|
#
|
||||||
|
# Lock actions
|
||||||
|
#
|
||||||
|
def readlock(self, key):
|
||||||
|
"""
|
||||||
|
Acquires a read lock on a key
|
||||||
|
"""
|
||||||
count = 1
|
count = 1
|
||||||
|
lock = None
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
lock_id = str(uuid.uuid1())
|
lock_id = str(uuid.uuid1())
|
||||||
lock = zk_conn.WriteLock('{}'.format(key), lock_id)
|
lock = self.zk_conn.ReadLock(key, lock_id)
|
||||||
break
|
break
|
||||||
except Exception:
|
except Exception as e:
|
||||||
count += 1
|
|
||||||
if count > 5:
|
if count > 5:
|
||||||
|
print("ZKHandler warning: Failed to acquire read lock after 5 tries: {}".format(e))
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
time.sleep(0.5)
|
time.sleep(0.5)
|
||||||
|
count += 1
|
||||||
continue
|
continue
|
||||||
|
|
||||||
return lock
|
return lock
|
||||||
|
|
||||||
|
def writelock(self, key):
|
||||||
# Read lock function
|
"""
|
||||||
def readlock(zk_conn, key):
|
Acquires a write lock on a key
|
||||||
|
"""
|
||||||
count = 1
|
count = 1
|
||||||
|
lock = None
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
lock_id = str(uuid.uuid1())
|
lock_id = str(uuid.uuid1())
|
||||||
lock = zk_conn.ReadLock('{}'.format(key), lock_id)
|
lock = self.zk_conn.WriteLock(key, lock_id)
|
||||||
break
|
break
|
||||||
except Exception:
|
except Exception as e:
|
||||||
count += 1
|
|
||||||
if count > 5:
|
if count > 5:
|
||||||
|
print("ZKHandler warning: Failed to acquire write lock after 5 tries: {}".format(e))
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
time.sleep(0.5)
|
time.sleep(0.5)
|
||||||
|
count += 1
|
||||||
continue
|
continue
|
||||||
|
|
||||||
return lock
|
return lock
|
||||||
|
|
||||||
|
def exclusivelock(self, key):
|
||||||
# Exclusive lock function
|
"""
|
||||||
def exclusivelock(zk_conn, key):
|
Acquires an exclusive lock on a key
|
||||||
|
"""
|
||||||
count = 1
|
count = 1
|
||||||
|
lock = None
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
lock_id = str(uuid.uuid1())
|
lock_id = str(uuid.uuid1())
|
||||||
lock = zk_conn.Lock('{}'.format(key), lock_id)
|
lock = self.zk_conn.Lock(key, lock_id)
|
||||||
break
|
break
|
||||||
except Exception:
|
except Exception as e:
|
||||||
count += 1
|
|
||||||
if count > 5:
|
if count > 5:
|
||||||
|
print("ZKHandler warning: Failed to acquire exclusive lock after 5 tries: {}".format(e))
|
||||||
break
|
break
|
||||||
else:
|
else:
|
||||||
time.sleep(0.5)
|
time.sleep(0.5)
|
||||||
|
count += 1
|
||||||
continue
|
continue
|
||||||
|
|
||||||
return lock
|
return lock
|
||||||
|
|
Loading…
Reference in New Issue