Andrew Tolbert
Andrew Tolbert
`Meter` lacks a `clear` method that other metric types have. `Timer.clear()` clears the underlying `Histogram`, but not the underlying `Meter`.
After revisiting `ScheduledReporter` and its implementations for a bit, have a few ideas for enhancements: 1. Add callback / promise support to `report()` that completes when all reporting duties are...
From #22, it shouldn't take much to support browserify. Would be good to do some testing to validate if any recent changes might have made it require more work.
[CASSANDRA-11483](https://issues.apache.org/jira/browse/CASSANDRA-11483) updates the `sstablemetadata` command to work like `describe` so we should consider removing whenever we make a release that targets 4.0.
It's possible aggregations (like count) only operate over the current page, so if you have paging enabled you can get weird results.
There are several places in Cqlsh code that prints only the exception message. Since weird errors can happen in C*, we should log the full stack trace.
when using 'USE' autocompletion works on ~/, but when it does actually do the expansion when evaluating the path: ``` cqlsh> use ~/.ccm/1104/node1/data0/g1/hello_p-70e80041ea3f11e59ba04d93b372bbee/ Cannot find '/Users/atolbert/Downloads/~/.ccm/1104/node1/data0/g1/hello_p-70e80041ea3f11e59ba04d93b372bbee/'. ```
UDTs currently don't work as there isn't a means to specify their schema.
The paging logic in cqlsh reopens the SSTable(s) on each page. This is wasteful and we could just keep track of where we left off in `UnfilteredPartitionIterator` and the current...