PSeitz

Results 317 comments of PSeitz

There's also https://github.com/quickwit-oss/tantivy/pull/2451 But it's just covering error handling, not implementing order by multiple fields

The drop is caused by this PR: Fix the ingest rate displayed in the CLI https://github.com/quickwit-oss/quickwit/pull/4682 https://qw-benchmarks.104.155.161.122.nip.io/?run_ids=1573,1574&search_metric=engine_duration (the name for `894188f19` should be `before_fix_ingest_rate`)

Disabling the rate modulator fixes the performance issue: https://qw-benchmarks.104.155.161.122.nip.io/?run_ids=1573,1581&search_metric=engine_duration The first call to get the memory use in the rate modulator is returning 5 (5x the max capacity), which then...

## Count All `_count` with AllQuery **works** already. Uses only metadata. Implemented here: https://github.com/quickwit-oss/quickwit/pull/4410 ## Count All + Top N `_count` with AllQuery + top_n: Does a full search currently....

I update the comment to make it more clear on the current state implemented. On using the term dictionary for aggregations, this would only work if the same tokenizer is...

`CompactDoc` is now used in quickwit, which is similar to serialized JSON in memory consumption https://github.com/quickwit-oss/tantivy/pull/2402 >In addition, right now we keep accounting the memory associated with the TantivyDoc as...

`HyperLogLog++` is the common used algorithm here, which also allows merges. Numerical values should be straightforward, we can just use the u64 representation. Terms are tricky, since the term ordinals...

https://github.com/quickwit-oss/quickwit/pull/5204

If documents don't match the schema, they won't be indexed, which may cause the mismatch