Added set_replicas() Fabric function

This commit is contained in:
troymc 2016-07-18 11:11:50 +02:00
parent 4046264ef2
commit de87bdcc5d

View File

@ -168,13 +168,20 @@ def init_bigchaindb():
run('bigchaindb init', pty=False) run('bigchaindb init', pty=False)
# Set the number of shards (in the backlog and bigchain tables) # Set the number of shards (in all tables)
@task @task
@hosts(public_dns_names[0]) @hosts(public_dns_names[0])
def set_shards(num_shards): def set_shards(num_shards):
run('bigchaindb set-shards {}'.format(num_shards)) run('bigchaindb set-shards {}'.format(num_shards))
# Set the number of replicas (in all tables)
@task
@hosts(public_dns_names[0])
def set_replicas(num_replicas):
run('bigchaindb set-replicas {}'.format(num_replicas))
# Start BigchainDB using screen # Start BigchainDB using screen
@task @task
@parallel @parallel