Re: Text query with persistence

2018-02-07 Thread Dmitry Karachentsev
Thanks Alexey, I'll take a look on it! 07.02.2018 11:48, Alexey Goncharuk пишет: Hi Dmitriy, We do have a ticket for this [1], however, I am not sure it will be completed any time soon. As for the rebuilding indexes at the node startup, we already have an internal routine for this (see

Re: Text query with persistence

2018-02-07 Thread Alexey Goncharuk
Hi Dmitriy, We do have a ticket for this [1], however, I am not sure it will be completed any time soon. As for the rebuilding indexes at the node startup, we already have an internal routine for this (see GridQueryIndexing#rebuildIndexesFromHash). The only thing we need to implement is skipping

Text query with persistence

2018-02-07 Thread Dmitry Karachentsev
Hi guys, We have Apache Lucene based full text search that creates in-memory indexes. It's a nice feature, but it seems absolutely useless with persistence as indexes are dropped on node restart. Probably we need a configuration flag and\or API call to rebuild them, or persist somehow. Do