Pascal Seitz
3da08e92c7
fix: doc store for files larger 4GB
...
Fixes an issue in the skip list deserialization, which deserialized the byte start offset incorrectly as u32.
`get_doc` will fail for any docs that live in a block with start offset larger than u32::MAX (~4GB).
Causes index corruption, if a segment with a doc store larger 4GB is merged.
tantivy version 0.19 is affected
0.19.2
2023-02-10 12:12:47 +08:00
Pascal Seitz
6c4b8d97ed
chore: Release
0.19.1
2023-01-13 13:46:28 +08:00
Pascal Seitz
dc5f503c9a
use fastfield_codecs 0.3.1
2023-01-13 13:34:42 +08:00
Pascal Seitz
4ffcf3a933
chore: Release
2023-01-13 13:31:20 +08:00
Pascal Seitz
079f542f97
handle user input on get_docid_for_value_range
2023-01-13 12:24:34 +08:00
PSeitz
509adab79d
Bump version ( #1715 )
...
* group workspace deps
* update cargo.toml
* revert tant version
* chore: Release
2022-12-12 04:39:43 +01:00
PSeitz
96c93a6ba3
Merge pull request #1700 from quickwit-oss/PSeitz-patch-1
...
Update CHANGELOG.md
2022-12-02 16:31:11 +01:00
boraarslan
495824361a
Move split_full_path to Schema ( #1692 )
2022-11-29 20:56:13 +09:00
PSeitz
485a8f507e
Update CHANGELOG.md
2022-11-28 15:41:31 +01:00
PSeitz
1119e59eae
prepare fastfield format for null index ( #1691 )
...
* prepare fastfield format for null index
* add format version for fastfield
* Update fastfield_codecs/src/compact_space/mod.rs
* switch to variable size footer
* serialize delta of end
2022-11-28 17:15:24 +09:00
PSeitz
ee1f2c1f28
add aggregation support for date type ( #1693 )
...
* add aggregation support for date type
fixes #1332
* serialize key_as_string as rfc3339 in date histogram
* update docs
* enable date for range aggregation
2022-11-28 09:12:08 +09:00
PSeitz
600548fd26
Merge pull request #1694 from quickwit-oss/dependabot/cargo/zstd-0.12
...
Update zstd requirement from 0.11 to 0.12
2022-11-25 05:48:59 +01:00
PSeitz
9929c0c221
Merge pull request #1696 from quickwit-oss/dependabot/cargo/env_logger-0.10.0
...
Update env_logger requirement from 0.9.0 to 0.10.0
2022-11-25 03:28:10 +01:00
dependabot[bot]
f53e65648b
Update env_logger requirement from 0.9.0 to 0.10.0
...
Updates the requirements on [env_logger](https://github.com/rust-cli/env_logger ) to permit the latest version.
- [Release notes](https://github.com/rust-cli/env_logger/releases )
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md )
- [Commits](https://github.com/rust-cli/env_logger/compare/v0.9.0...v0.10.0 )
---
updated-dependencies:
- dependency-name: env_logger
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2022-11-24 20:07:52 +00:00
PSeitz
0281b22b77
update create_in_ram docs ( #1695 )
2022-11-24 17:30:09 +01:00
dependabot[bot]
a05c184830
Update zstd requirement from 0.11 to 0.12
...
Updates the requirements on [zstd](https://github.com/gyscos/zstd-rs ) to permit the latest version.
- [Release notes](https://github.com/gyscos/zstd-rs/releases )
- [Commits](https://github.com/gyscos/zstd-rs/commits )
---
updated-dependencies:
- dependency-name: zstd
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
2022-11-23 20:15:32 +00:00
Paul Masurel
0b40a7fe43
Added a expand_dots JsonObjectOptions. ( #1687 )
...
Related with quickwit#2345.
2022-11-21 23:03:00 +09:00
trinity-1686a
e758080465
add support for TermSetQuery in query parser ( #1683 )
2022-11-17 16:49:49 +01:00
Paul Masurel
2a39289a1b
Handle escaped dot in json path in the QueryParser. ( #1682 )
2022-11-16 07:18:34 +09:00
Adam Reichold
ca6231170e
Make the built-in stop word lists selectable via the Language enum already used by the Stemmer filter. ( #1671 )
2022-11-15 17:40:25 +09:00
PSeitz
eda6e5a10a
Merge pull request #1681 from quickwit-oss/ip_range_query_multi
...
remove Column from MultiValuedU128FastFieldReader
2022-11-15 09:27:46 +08:00
Pascal Seitz
8641155cbb
remove column from MultiValuedU128FastFieldReader
2022-11-14 18:49:15 +08:00
PSeitz
9a090ed994
Merge pull request #1659 from quickwit-oss/ip_range_query_multi
...
add support for ip range query on multivalue fastfields
2022-11-14 15:17:41 +08:00
Pascal Seitz
b7d0dd154a
fmt
2022-11-14 14:49:15 +08:00
PSeitz
ce10fab20f
Apply suggestions from code review
...
Co-authored-by: Paul Masurel <paul@quickwit.io >
2022-11-14 14:21:53 +08:00
Pascal Seitz
e034328a8b
Improve position_to_docid, refactor, add tests
2022-11-14 14:21:53 +08:00
Pascal Seitz
f811d1616b
add support for ip range query on multivalue fastfields
2022-11-14 14:21:52 +08:00
PSeitz
c665b16ff0
Merge pull request #1672 from quickwit-oss/allow_range_without_indexed
...
Allow range query on fastfield without INDEXED
2022-11-14 12:45:12 +08:00
PSeitz
3b5f810051
Merge pull request #1677 from quickwit-oss/switch_to_u32
...
switch total_num_val to u32
2022-11-14 12:01:40 +08:00
trinity-1686a
5765c261aa
allow warming up of the full posting list ( #1673 )
...
* allow warming up of the full posting list
* cargo fmt
2022-11-14 10:27:56 +09:00
Pascal Seitz
fb9f03118d
switch total_num_val to u32
2022-11-11 17:35:52 +08:00
PSeitz
55a9d808d4
Merge pull request #1674 from quickwit-oss/u128_codec_header
...
add header with codec type for u128
2022-11-11 13:47:51 +08:00
Pascal Seitz
32166682b3
add header deser test
2022-11-11 13:28:12 +08:00
Pascal Seitz
e6acf8f76d
add header with codec type for u128
2022-11-11 11:52:17 +08:00
Pascal Seitz
9e8a0c2cca
Allow range query on fastfield without INDEXED
2022-11-10 15:56:08 +08:00
Paul Masurel
3edf0a2724
Using the manual reload policy in IndexWriter. ( #1667 )
2022-11-09 11:20:41 +01:00
Paul Masurel
8ca12a5683
Added stop word filter to CHANGELOG.md
2022-11-09 17:00:45 +09:00
Adam Reichold
a4b759d2fe
Include stop word lists from Lucene and the Snowball project ( #1666 )
2022-11-09 16:57:35 +09:00
PSeitz
3e9c806890
Merge pull request #1665 from quickwit-oss/fix_num_vals
...
fix num_vals on u128 value index after merge
2022-11-07 21:46:02 +08:00
Pascal Seitz
c69a873dd3
fix num_vals on value index after merge
2022-11-07 21:05:21 +08:00
PSeitz
666afcf641
Merge pull request #1663 from PSeitz/fix_clippy
...
fix clippy
2022-11-07 18:11:20 +08:00
Pascal Seitz
38ad46e580
fix clippy
2022-11-07 16:09:55 +08:00
PSeitz
e948889f4c
Merge pull request #1662 from quickwit-oss/fix_num_vals
...
fix num_vals in multivalue index after merge
2022-11-07 15:57:32 +08:00
Pascal Seitz
6e636c9cea
fix num_vals in multivalue index after merge
2022-11-07 15:00:52 +08:00
PSeitz
5a610efbc1
Merge pull request #1661 from quickwit-oss/upgrade_criterion
...
update criterion to 0.4
2022-11-04 14:45:34 +08:00
Pascal Seitz
500a0d5e48
update criterion to 0.4
2022-11-04 13:26:29 +08:00
PSeitz
509a265659
add docstore version ( #1652 )
...
* add docstore version
closes #1589
* assert for docstore version
2022-11-04 10:19:16 +09:00
PSeitz
5b2cea1b97
Merge pull request #1656 from quickwit-oss/multival_offset_index
...
move multivalue index to own file
2022-11-02 14:03:06 +08:00
PSeitz
a5a80ffaea
Update fastfield_codecs/src/column.rs
...
Co-authored-by: Paul Masurel <paul@quickwit.io >
2022-11-02 06:37:27 +01:00
PSeitz
0f98d91a39
Merge pull request #1646 from quickwit-oss/no_score_calls
...
No score calls if score is not requested
2022-11-01 20:09:32 +08:00