Byron Ruth
Byron Ruth
@Lancetnik Understood regarding the env-to-config pattern for containers. It simply has not been something strongly requested, so supported was not added proactively. A simple option would be to support `-e...
One clarification is that it silently failed when no records needed to be inserted. It did of course fail when an insert was attempted and the table did not exist....
Briefly talked to @masinoa about building a simple model to estimate the time of a Harvest query. The general idea is to break down the query into components, high-level ones...
It is great that we all have an idea on how to pursue this estimator. The best thing to do is for each of us to implement our models and...
Skimmed a paper on predicting query execution time: http://yunchi.org/publication/13icde_prediction.pdf The conslusion was interesting: > In this paper, we studied the problem of leveraging optimizer’s cost models to predict query execution...
Brief PostgreSQL query plan cost estimate: - Not accurate to rely on to estimate row count. Reset expectations with Cilantro: - Add configuration option to require the count to be...
Created https://github.com/chop-dbhi/avocado/issues/280 for getting a running query process ID and canceling it for supported database backends.
Thanks @aaron0browne. A quick and dirty method is: ``` bash watch "echo stats | nc 127.0.0.1 11211" ``` The watch command can be installed using Homebrew: `brew install watch`. Another...
@murphyke I misread the documentation on cache culling. It appears the memcache-based backend does not implement the culling feature: > Cache backends that implement their own culling strategy (i.e., the...
See cbmi/cilantro#206