nodetool compactionstats doesn't work for repair status?

2013-02-28 Thread Hiller, Dean
I am running a repair, but I can't figure out how to find out what percent done it is. How do I know if it is hung? When I run nodetool compactionstats it shows nothing like so [cassandra@a4 ~]$ nodetool compactionstats pending tasks: 0 Active compaction remaining time :n/a

Re: nodetool compactionstats doesn't work for repair status?

2013-02-28 Thread Michael Kjellman
There is no overall repair progress currently. You can use some awk/grep hackery to try and figure it out from the logs. (This works best for a cleanup, less so for a repair because ranges are skipped and merkel trees take a long time to compare/generate/validate) Remember, things might be

Re: nodetool compactionstats doesn't work for repair status?

2013-02-28 Thread Michael Kjellman
It reports what keyspace it is working on to stdout and when the ranges for that keyspace are all in sync. It is a very welcome feature but doesn't really give an accurate status other than when it started and finished repairing the keyspace in question. On Feb 28, 2013, at 8:08 AM, Alain