ChronixDB / chronix.examples

Some useful examples with Chronix
Apache License 2.0
17 stars 7 forks source link

[Question] Is it possible to run ChronixDB as an embedded TS DB #17

Open puzpuzpuz opened 5 years ago

puzpuzpuz commented 5 years ago

I wonder if it's possible to run Chronix Storage, Server and all necessary components (Lucene + Solr) in embedded mode, i.e. in a single JVM? If yes (and it seems to me that it should be possible), will it introduce any technical problems, like performance degradation, when compared with running Chronix in standalone mode?

FlorianLautenschlager commented 5 years ago

Hi, thank you for your question.

It is possible. Chronix Storage is based directly on Lucene while Chronix Server is embedded into Apache Solr. About performance: 1) Chronix is designed for a read intensive scenario (most of the time we import a batch of data and run multiple analyses on it). 2) It depends on the data volume (Chronix server can use the built Solr Cloud mode).

puzpuzpuz commented 5 years ago

Thanks for the clarification!