Details
-
Improvement
-
Status: Resolved
-
Normal
-
Resolution: Fixed
-
None
-
Operability
-
Low Hanging Fruit
-
All
-
None
-
Description
Whenever a cleanup or garbagecollect operation is issued from nodetool, there is no log statuses for the start and end of the operation at the node level although statuses on individual sstables are captured. Start can be inferred, but it is difficult to know when the operation has completed because there is no log message.
[INFO ] cluster_id=5 ip_address=127.1.1.1 CompactionManager.java:353 - Starting Remove deleted data for keyspace1.sstable1
[INFO ] cluster_id=5 ip_address=127.1.1.1 CompactionManager.java:395 - Finished Remove deleted data for keyspace1.sstable1 successfully
[INFO ] cluster_id=5 ip_address=127.1.1.1 CompactionManager.java:353 - Starting Remove deleted data for keyspace1.sstable2
[INFO ] cluster_id=5 ip_address=127.1.1.1 CompactionManager.java:364 - No sstables to GARBAGE_COLLECT for keyspace1.sstable2
[INFO ] cluster_id=5 ip_address=127.1.1.1 CompactionManager.java:395 - Finished Remove deleted data for keyspace1.sstable2 successfully
This improvement proposes adding additional for start and end statuses log messages for the above operation at the node level. I.e.,
[INFO ] cluster_id=5 ip_address=127.1.1.1 CompactionManager.java:395 – Starting GARBAGE_COLLECT
….
[INFO ] cluster_id=5 ip_address=127.1.1.1 CompactionManager.java:395 – Completed GARBAGE_COLLECT