Eugene Lazin
Eugene Lazin
I tried to reproduce it on CentOS 7.5 without any luck. The error message says that the configuration file is ill-formed. Can you retreive it and publish here please? I...
It looks like the problem is simple. The line like this: `docker run -d -p 8181:8181 -p 8282:8282 -p 8383:8383 -p 4242:4242 -v /tmp/akumuli:/Akumuli -e nvolumes='16' -e volume_size='1GB' akumuli/akumuli:skylake` is...
It's not possible to load CSV directly. But you can convert it to one of the supported formats. [Dictionary mode](https://docs.akumuli.org/writing-data#dictionary-mode) is the most efficient but you can use OpenTSDB format...
I'll take a look. Thanks for such detailed bug report!
It should be possible to use both escaped and unescaped tag values in queries, something like tag="host\u32" should work the same way as tag=host2. It is impossible to store some...
Hi, I don't think it's possible to adapt redis-cli tool. Akumuli uses RESP protocol only for data ingestion. If you need a quick demonstration you can check roundtrip test -...
Hi, This problem is caused by the FindJeMalloc.cmake script - https://github.com/akumuli/Akumuli/blob/master/cmake/FindJeMalloc.cmake. I've found it on Github and just copied. It works on Linux and Linux is the only supported OS...
It depends on query. It can be average, sum, min, max, or count. The function is one of the parameters of the group aggregate query. The default is average.
Hi, SQLite is used only to store metadata (time-series names, database volume paths and sizes, etc). It's not possible to replace it with Postgres and there is no need for...
Well, this is actually a good idea. I've already implemented one batch format but this one wouldn't interfere with it. I'm not planning to add a binary protocol because it...