Skip to content

Commit 50f12e1

Browse files
committed
Logs and added flag for failuring chunk confirm
commit_hash:86d168e3c8e4585a59b7d740cbc5cba055dc0aec
1 parent 4ac7e3b commit 50f12e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

yt/python/yt/environment/default_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def get_dynamic_master_config():
9292
"enable_per_location_full_heartbeats": True,
9393
"enable_chunk_replicas_throttling_in_heartbeats": True,
9494
"enable_location_indexes_in_data_node_heartbeats": True,
95-
"enable_location_indexes_in_chunk_confirmation": True,
95+
"use_location_indexes_in_sequoia_chunk_confirmation": True,
9696
"use_location_indexes_to_search_location_on_confirmation": True,
9797
"check_location_convergence_by_index_and_uuid_on_confirmation": True,
9898
"enable_validation_full_heartbeats": True,

yt/python/yt/environment/yt_env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1497,7 +1497,7 @@ def quorum_ready():
14971497
# COMPAT(cherepashka): YT-27231, drop after enable_location_indexes_in_data_node_heartbeats will be enabled by default.
14981498
dynamic_config = get_dynamic_master_config()
14991499
if self.yt_config.enable_multidaemon:
1500-
dynamic_config["chunk_manager"]["data_node_tracker"]["enable_location_indexes_in_chunk_confirmation"] = False
1500+
dynamic_config["chunk_manager"]["data_node_tracker"]["use_location_indexes_in_sequoia_chunk_confirmation"] = False
15011501
dynamic_config["chunk_manager"]["data_node_tracker"]["use_location_indexes_to_search_location_on_confirmation"] = False
15021502
dynamic_config["chunk_manager"]["data_node_tracker"]["check_location_convergence_by_index_and_uuid_on_confirmation"] = False
15031503
patched_dynamic_master_config = get_patched_dynamic_master_config(dynamic_config)

0 commit comments

Comments
 (0)