You are troubleshooting a performance issue where cold buckets are being moved to frozen storage too slowly. You find that the indexer is saturated with I/O operations. Which setting can be used to throttle the migration of cold buckets to frozen to improve system responsiveness?
Trap 1: maxHotBuckets
This controls hot buckets, not the cold-to-frozen lifecycle.
Trap 2: rotatePeriodInSecs
This controls hot bucket rotation, not cold-to-frozen migration.
Trap 3: maxTotalDataSizeMB
This controls when a bucket is frozen, not the speed of the migration.
- A
maxHotBuckets
Why wrong: This controls hot buckets, not the cold-to-frozen lifecycle.
- B
coldToFrozenScript
The script triggered by coldToFrozenScript can be configured with sleep commands or rate limiting to throttle the process.
- C
rotatePeriodInSecs
Why wrong: This controls hot bucket rotation, not cold-to-frozen migration.
- D
maxTotalDataSizeMB
Why wrong: This controls when a bucket is frozen, not the speed of the migration.