Keith Turner
Keith Turner
While looking at #1422 I noticed that zoocache calls exists() and then getData(). I think it may be able to only call getData() and catch NoNodeException to know something does...
Currently the Accumulo GC checks that each user table seen in the metadata table is properly formed (this check was recently improved by #1266). However there is no check to...
Accumulo has multiple different id types like table ids, FATE transaction ids, namespace ids, external compactions ids, scan session ids, etc. These ids are logged. For logging fate transaction ids...
Bulk load RPCs check to see if the transaction is still alive in ZooKeeper before executing. While doing this check a tablet server wide [lock is held](https://github.com/apache/accumulo/blob/11e26d481b7885e46ce439e1345f0bf9bdd5dfb2/server/base/src/main/java/org/apache/accumulo/server/zookeeper/TransactionWatcher.java#L126). Therefore concurrent bulk...
While running a test of the new external compaction feature I Was looking at the metadata table config. External compactions add a new column family to the metadata table called...
Accumulo has many configuration properties that enable runtime performance tuning. For tuning a production system it would be nice if each of these properties had the following when feasible. *...
The way @netvl is generating the mapping code for Rust is very elegant. Would be nice to do that in the Go version. https://github.com/netvl/ecoji.rs/blob/2dd29f4ec68bc3abcb6ad4ba9e8d8e7a6a3d6931/build.rs
The current encoding APIs are for streams which is great for the command line application. It would be nice if the library had simple APIs for going directly from []byte...
It would be nice if the report had another tab that show the options used to create the report. When I use this tool I create two xml files that...
During a long run of webindex because of #656 there was some data that was unable to be processed for a long time. When I updated the Accumulo iterators on...