Keith Turner
Keith Turner
Saw build [#736](https://travis-ci.org/fluo-io/fluo/builds/80481637) fail against f5f2625 ``` Tests run: 1, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 5.151 sec
I had a buggy observer that was repeatedly failing with exceptions and the failures were not shown in the grafana dashboard.
Since String and Bytes are both immutable, it may be worthwhile to cache conversion from one to the other. The following are some thoughts on possible implementations. * Per thread...
While working on #804 I realized that in some cases caching Bytes to byte[] conversion would probably be faster than always allocating new byte array in some situations. This is...
In #804 I made some conservative changes to reuse columns objects. These changes only did this when the user passed in a set of wanted columns. In this case it...
The following is feedback from @joshelser on this [mailing list thread](https://lists.apache.org/thread.html/f4fabfec7ce8c70f599691b249f0ef96a36c021e3c0e83c9f350d4cd@%3Cdev.fluo.apache.org%3E) and my response. Need to test and document updating app config. > > - Application Configuration > > >...
The lib/fetch.sh script could use maven to download dep, if maven is installed. This has a few advantages : - Uses users repos and/or mirrors configured in their settings.xml -...
While looking at astralway/webindex#92 it occurred to me that Fluo could wait until a transaction has committed successfully before reporting any metrics. For transactions that fail, report no metrics.
The configuration for reporting metrics is currently pulled from the Fluo config file. This config file could be different for different processes running Fluo. For example Observers run by workers...
Need to look into make the Accumulo conditional writer limit the amount of data it sends to a tserver. Currently it will sends as much as it has. If many...