Skip to content

Commit

Permalink
chore: randomize more and name non-sharded backups noshard
Browse files Browse the repository at this point in the history
  • Loading branch information
fuziontech committed Jun 8, 2024
1 parent f709d58 commit 809109b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion housewatch/clickhouse/backups.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def execute_backup(
nodes = get_node_per_shard(cluster)
responses = []
for shard, node in nodes:
params["shard"] = shard
params["shard"] = shard if is_sharded else "noshard"
if base_backup:
query_settings["base_backup"] = f"S3('{base_backup}/{shard}', '{aws_key}', '{aws_secret}')"
final_query = query % (params or {}) if substitute_params else query
Expand Down
1 change: 1 addition & 0 deletions housewatch/clickhouse/clusters.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,5 @@ def get_node_per_shard(cluster):
break
if not preferred_replica_found:
nodes.append((shard, random.choice(n)))
random.shuffle(nodes)
return nodes

0 comments on commit 809109b

Please sign in to comment.