Disable chunked resharding -- it may interfere with journal flushing; will be re-enabled after fixes

This commit is contained in:
Vitaliy Filippov
2026-06-17 15:35:19 +03:00
parent 04c2f8d408
commit cf2ba05e4b
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -326,9 +326,8 @@ void osd_t::parse_config(bool init)
scrub_list_limit = config["scrub_list_limit"].uint64_value();
if (!scrub_list_limit)
scrub_list_limit = 262144;
pg_reshard_chunk_size = config["pg_reshard_chunk_size"].uint64_value();
if (!pg_reshard_chunk_size)
pg_reshard_chunk_size = 100000;
// FIXME: chunked resharding disabled for now, will be re-enabled after fixes
pg_reshard_chunk_size = 0;
pg_reshard_chunk_pause_ms = config["pg_reshard_chunk_pause_ms"].uint64_value();
if (!pg_reshard_chunk_pause_ms)
pg_reshard_chunk_pause_ms = 100;