Tim Visée
ac4cfed143
For snapshots directly restored, use default temp path in storage volume ( #8059 )
2026-02-10 00:00:00 +01:00
c1cefe7590
feat: Optimize the collection loading process during startup ( #8053 )
...
* feat: optimize the collection loading process during startup
* simplify config options
* chore: update config.yaml
* Remove global state
* Disallow zero values
* Remove intermediate map
* Rename ConcurrentLoadConfig to LoadConcurrencyConfig
* Flatten config
* Accept string inputs from environment variables
* Fix test compilation
---------
Co-authored-by: generall <andrey@vasnetsov.com >
Co-authored-by: chenliang <chenliang@chenliangdeMacBook-Air.local >
Co-authored-by: timvisee <tim@visee.me >
2026-02-09 23:59:06 +01:00
Luis Cossío
876609c4c1
cfg import behind linux flag ( #8058 )
2026-02-09 23:58:49 +01:00
Tim Visée
b86b92cc24
Also specify clone behavior for new facet types in edge ( #8055 )
2026-02-09 23:58:41 +01:00
Tim Visée and dependabot[bot]
d28d707649
build(deps): bump bytes from 1.10.1 to 1.11.1 ( #8054 )
...
Bumps [bytes](https://github.com/tokio-rs/bytes ) from 1.10.1 to 1.11.1.
- [Release notes](https://github.com/tokio-rs/bytes/releases )
- [Changelog](https://github.com/tokio-rs/bytes/blob/master/CHANGELOG.md )
- [Commits](https://github.com/tokio-rs/bytes/compare/v1.10.1...v1.11.1 )
---
updated-dependencies:
- dependency-name: bytes
dependency-version: 1.11.1
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:58:32 +01:00
dependabot[bot] and timvisee
cdbb530a93
build(deps): bump jsonwebtoken from 10.2.0 to 10.3.0 ( #8039 )
...
* build(deps): bump jsonwebtoken from 10.2.0 to 10.3.0
Bumps [jsonwebtoken](https://github.com/Keats/jsonwebtoken ) from 10.2.0 to 10.3.0.
- [Changelog](https://github.com/Keats/jsonwebtoken/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Keats/jsonwebtoken/compare/v10.2.0...v10.3.0 )
---
updated-dependencies:
- dependency-name: jsonwebtoken
dependency-version: 10.3.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* Bump expiration to current time, don't unset it
* Add test to assert empty expiration is not allowed
* Allow absent expiration
---------
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: timvisee <tim@visee.me >
2026-02-09 23:58:27 +01:00
dependabot[bot] and Daniel Boros
9cf71956f7
build(deps): bump pyo3 from 0.27.2 to 0.28.0 ( #8034 )
...
* build(deps): bump pyo3 from 0.27.2 to 0.28.0
Bumps [pyo3](https://github.com/pyo3/pyo3 ) from 0.27.2 to 0.28.0.
- [Release notes](https://github.com/pyo3/pyo3/releases )
- [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md )
- [Commits](https://github.com/pyo3/pyo3/compare/v0.27.2...v0.28.0 )
---
updated-dependencies:
- dependency-name: pyo3
dependency-version: 0.28.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
* chore: add skip_from_py_object to accept the new behaviour
* chore: switch to from_py_object
* chore: allow deprecated usage
* fix: import
---------
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Daniel Boros <dancixx@gmail.com >
2026-02-09 23:58:21 +01:00
xzfc
5d72481af3
Callback-based DenseVectorStorage::for_each_in_dense_batch ( #8033 )
...
* Generalized vector offset
* Replace get_batch-like methods with for_each-like methods
2026-02-09 23:58:14 +01:00
Arnaud Gourlay and Ivan Pleshkov
0d87284c5c
WAL replay honors applied_seq ( #8008 )
...
* WAL replay honors applied_seq
fixes
* add integration test
* restore test after rebase
---------
Co-authored-by: Ivan Pleshkov <pleshkov.ivan@gmail.com >
2026-02-09 23:58:00 +01:00
Kyamran Shakhaev
fded8583ba
Change Rust version ( #8049 )
2026-02-09 23:57:53 +01:00
Daniel Boros
7422d20f19
feat/edge-facet-api ( #8045 )
...
* feat: add sync facet api
* feat: add facet-tests
* fix: formatting
* chore: remove exact typing
* feat: reduce code duplication
* fix: add missing type def
* fix: serde default value
2026-02-09 23:57:47 +01:00
157aa6596a
faster segment holder locks ( #8007 )
...
* non-locking retrieve
* optimization & write exclusive lock via upgradable_read
* faster segment holder locks debug (#8024 )
* fix deadlock
* move LockedSegmentHolder into a dedicated file
* reorder locks for snapshot
* fmt
* upd comments
* Update lib/collection/src/collection_manager/optimizers/segment_optimizer.rs
Co-authored-by: Ivan Boldyrev <ivan.boldyrev@qdrant.com >
* Add UpdatesGuard type wrapper for updates_guard (#8031 )
* Initial plan
* Add UpdatesGuard newtype wrapper for updates_guard
Co-authored-by: generall <1935623+generall@users.noreply.github.com >
* Fix linter issue - remove trailing space in doc comment
Co-authored-by: generall <1935623+generall@users.noreply.github.com >
* Remove unnecessary new() method, use tuple constructor directly
Co-authored-by: generall <1935623+generall@users.noreply.github.com >
* fix clippy
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com >
Co-authored-by: generall <1935623+generall@users.noreply.github.com >
Co-authored-by: generall <andrey@vasnetsov.com >
* Remove aliassed lifetime
Co-authored-by: Jojii <15957865+JojiiOfficial@users.noreply.github.com >
---------
Co-authored-by: Ivan Boldyrev <ivan.boldyrev@qdrant.com >
Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com >
Co-authored-by: generall <1935623+generall@users.noreply.github.com >
Co-authored-by: Tim Visée <tim+github@visee.me >
Co-authored-by: Jojii <15957865+JojiiOfficial@users.noreply.github.com >
2026-02-09 23:56:21 +01:00
7758792ced
Drop wal from api ( #8000 )
...
* Drop WAL from API
Flatten if statement
another approach
review remarks
switch flag back guard
unit test
* review remarks
* review remarks
* test missing records which are not truncated and not applied
* Drop wal from api: don't use applied seq number (#8030 )
* Don't rely on applied seq num
* Apply suggestions from code review
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
* remove unused
* Repurpose existing plunger, unset first_skipped in operation branch
* more complicated tests with empty wal
---------
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
Co-authored-by: Ivan Pleshkov <pleshkov.ivan@gmail.com >
* review remarks
---------
Co-authored-by: Tim Visée <tim+github@visee.me >
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com >
2026-02-09 23:56:09 +01:00
Jojii
985885d0b1
Fix test consistency in random memory id tracker ( #8043 )
2026-02-09 23:56:02 +01:00
d91e8db5f9
Streaming snapshot unpacking ( #8025 )
...
* download tar
* compute sha256 for stream download
* wip: propagate unpacking into down to the logic, todo: validation
* unpacked snapshot validation
* Minor tweaks
* Fix typo
* validation during unpack
* cancellation token
* update docstring
* remove redundant dep
* Rearrange unpack functions
- Rename `safe_unpack.rs` into `tar_unpack.rs` so it would be listed
near `tar_ext.rs` in IDEs.
- Replace calls like `ar = open_snapshot_archive(…); safe_unpack(ar, …);`
with a single call to `tar_unpack_file(…)`.
- Put calls to `Archive::new(); Archive::set_overwrite(false);` inside
`tar_unpack_reader` (was `safe_unpack`). So, now it is the only place
that does `set_overwrite`.
* Let clippy complain if tar::Archive::unpack used
* Mock snapshot download URL
Instead of downloading from storage.googleapis.com every time the test
runs, put small snapshot file to the repo.
The snapshot file is created using this command:
curl -s \
https://storage.googleapis.com/qdrant-benchmark-snapshots/test-shard.snapshot \
| tar \
--delete segments/4ea958d8-0b64-4312-9a53-0cd857e93535.tar \
--delete segments/65ac6276-8cca-4f5c-b767-9722190cee8b.tar \
> lib/storage/src/content_manager/snapshots/test-shard.snapshot
File contents:
$ tar tf lib/storage/src/content_manager/snapshots/test-shard.snapshot
wal/
wal/closed-255
newest_clocks.json
replica_state.json
shard_config.json
$ du -sh lib/storage/src/content_manager/snapshots/test-shard.snapshot
12K lib/storage/src/content_manager/snapshots/test-shard.snapshot
$ sha256sum < lib/storage/src/content_manager/snapshots/test-shard.snapshot
5d94eac5c1ede3994a28bc406120046c37370d5d45b489a0d2252531b4e3e1f2 -
---------
Co-authored-by: timvisee <tim@visee.me >
Co-authored-by: xzfc <xzfcpw@gmail.com >
2026-02-09 23:53:16 +01:00
Ivan Boldyrev
d8ffb098c7
Fix gridstore Option unsoundness ( #8011 )
...
* Implement `Optional<T>` type
Define a type with the same presumed layout as `Option<T>`, but with defined behavior.
* Make `transmute_*` functions unsafe
The functions `memory::mmap_ops::transmute_*` are inherently unsafe, but
are not marked as are. Their usage is documented, but it is not always clear
if the code is correct.
* Add `CsrHeader` to resolve another unsoundness
Tuples have no defined layout.
2026-02-09 23:53:02 +01:00
dependabot[bot]
d7580e5691
build(deps): bump foyer from 0.22.2 to 0.22.3 ( #8042 )
...
Bumps [foyer](https://github.com/foyer-rs/foyer ) from 0.22.2 to 0.22.3.
- [Release notes](https://github.com/foyer-rs/foyer/releases )
- [Changelog](https://github.com/foyer-rs/foyer/blob/main/CHANGELOG.md )
- [Commits](https://github.com/foyer-rs/foyer/compare/v0.22.2...v0.22.3 )
---
updated-dependencies:
- dependency-name: foyer
dependency-version: 0.22.3
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:52:53 +01:00
Daniel Boros
02b9373772
feat: add x-forwarded support ( #8028 )
...
* feat: add x-forwarded support
* fix: port parsing & add tests
* fix: case-insensitive mode
2026-02-09 23:52:47 +01:00
dependabot[bot]
2ed4eebeae
build(deps): bump cc from 1.2.54 to 1.2.55 ( #8040 )
...
Bumps [cc](https://github.com/rust-lang/cc-rs ) from 1.2.54 to 1.2.55.
- [Release notes](https://github.com/rust-lang/cc-rs/releases )
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.54...cc-v1.2.55 )
---
updated-dependencies:
- dependency-name: cc
dependency-version: 1.2.55
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:52:41 +01:00
dependabot[bot]
56a13ba521
build(deps): bump arc-swap from 1.8.0 to 1.8.1 ( #8041 )
...
Bumps [arc-swap](https://github.com/vorner/arc-swap ) from 1.8.0 to 1.8.1.
- [Changelog](https://github.com/vorner/arc-swap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/vorner/arc-swap/compare/v1.8.0...v1.8.1 )
---
updated-dependencies:
- dependency-name: arc-swap
dependency-version: 1.8.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:52:37 +01:00
dependabot[bot]
561e28dc9a
build(deps): bump zerocopy from 0.8.33 to 0.8.37 ( #8038 )
...
Bumps [zerocopy](https://github.com/google/zerocopy ) from 0.8.33 to 0.8.37.
- [Release notes](https://github.com/google/zerocopy/releases )
- [Changelog](https://github.com/google/zerocopy/blob/main/CHANGELOG.md )
- [Commits](https://github.com/google/zerocopy/compare/v0.8.33...v0.8.37 )
---
updated-dependencies:
- dependency-name: zerocopy
dependency-version: 0.8.37
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:52:26 +01:00
dependabot[bot]
4508114395
build(deps): bump bytemuck from 1.24.0 to 1.25.0 ( #8037 )
...
Bumps [bytemuck](https://github.com/Lokathor/bytemuck ) from 1.24.0 to 1.25.0.
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md )
- [Commits](https://github.com/Lokathor/bytemuck/compare/v1.24.0...v1.25.0 )
---
updated-dependencies:
- dependency-name: bytemuck
dependency-version: 1.25.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:52:21 +01:00
dependabot[bot]
a67c04049d
build(deps): bump mockito from 1.7.1 to 1.7.2 ( #8035 )
...
Bumps [mockito](https://github.com/lipanski/mockito ) from 1.7.1 to 1.7.2.
- [Release notes](https://github.com/lipanski/mockito/releases )
- [Commits](https://github.com/lipanski/mockito/compare/1.7.1...1.7.2 )
---
updated-dependencies:
- dependency-name: mockito
dependency-version: 1.7.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:52:17 +01:00
dependabot[bot]
d3e19622b9
build(deps): bump clap from 4.5.54 to 4.5.56 ( #8036 )
...
Bumps [clap](https://github.com/clap-rs/clap ) from 4.5.54 to 4.5.56.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.54...clap_complete-v4.5.56 )
---
updated-dependencies:
- dependency-name: clap
dependency-version: 4.5.56
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:52:12 +01:00
Anush
8b6c4b919a
docs: Add Rust Example For Qdrant Edge ( #8020 )
...
Signed-off-by: Anush008 <mail@anush.sh >
2026-02-09 23:46:08 +01:00
Tim Visée
0ce9667ab7
Apply clippy suggestions ( #8029 )
2026-02-09 23:46:02 +01:00
Daniel Boros and generall
fdccb8c367
feat/ext-api-keys ( #7809 )
...
* feat: forward api keys header
* fix: linter
* feat: add api_keys to grpc
* fix: imports
* fix: extract api keys from grpc headers
* refactor: make apikeys extracor more compact
* fix: linter issue
* feat: update header key logic
* fix: clippy issues
* make external keys a part of InferenceParams::new argument, so we wont forget using it
* avoid cloning metadata on header extraction
* combine inference token with ext api key for simpler usage
* clippy
---------
Co-authored-by: generall <andrey@vasnetsov.com >
2026-02-09 23:43:11 +01:00
Anush
54b4cdd306
chore: Use qdrant/murmur3 fork instead ( #8021 )
...
Signed-off-by: Anush008 <mail@anush.sh >
2026-02-09 23:41:00 +01:00
Kyamran Shakhaev
d56710c1e1
Remove redundant code ( #8013 )
2026-02-09 23:40:41 +01:00
Arnaud Gourlay and xzfc
aeeafe4a0e
Update queue info into CollectionInfo ( #8010 )
...
* Update queue info into CollectionInfo
* basic test
* fix
* cleaner
* Update lib/collection/src/shards/local_shard/mod.rs
Co-authored-by: xzfc <5121426+xzfc@users.noreply.github.com >
* fix the fix
* rename to op_num
* skip_serializing_if just in case
* first step
* test queue length with staging feature
* gate integration test based on binary feature
---------
Co-authored-by: xzfc <5121426+xzfc@users.noreply.github.com >
2026-02-09 23:39:24 +01:00
Tim Visée
7d2a9657ac
Use local telemetry for peer version check, not cluster level telemetry ( #8016 )
2026-02-09 23:39:17 +01:00
Luis Cossío
cd1e872f6c
[disk cache] benchmark other in-memory caches ( #7953 )
...
* benchmark against other caches
* use cycle
* use an enum for cache names
* make multithreaded bench with rayon
* don't include pregenerated keys in allocation
* improve benches
* improve keys with zipf + scan
* misc improvements
2026-02-09 23:39:00 +01:00
Tim Visée
85fbb94f3c
Remove TODOs for assigning clock tags in forward proxy ( #8005 )
2026-02-09 23:38:51 +01:00
Arnaud Gourlay and timvisee
72dd7c8cbe
Persist applied seq at regular interval ( #7976 )
...
* Persist applied seq at regular interval
* Error handling
* fix brain fart
* don't reset update_count
* handles explicitly failure to load
* init from WAL instead of zero
* fixes
* try to regenerate file on corruption
* fix
* trust the WAL if higher watermark most likely from a transfer
* use last WAL index & handles file shard lifecycle
* last WAL index is inclusive
* include applied_seq in partial snapshot
* snapshot applied_seq file
* fix
* remove outdated comment
* Describe AppliedSeq structure, it is used for persisting
---------
Co-authored-by: timvisee <tim@visee.me >
2026-02-09 23:38:44 +01:00
Ivan Pleshkov
7a529128c2
reduce update signal size by optimizing hw ( #8003 )
2026-02-09 23:38:37 +01:00
Andrey Vasnetsov
c755e6bfe8
more reliable version check ( #8002 )
2026-02-09 23:37:14 +01:00
dependabot[bot]
539767fe86
build(deps): bump colored from 3.0.0 to 3.1.1 ( #7998 )
...
Bumps [colored](https://github.com/mackwic/colored ) from 3.0.0 to 3.1.1.
- [Release notes](https://github.com/mackwic/colored/releases )
- [Changelog](https://github.com/colored-rs/colored/blob/master/CHANGELOG.md )
- [Commits](https://github.com/mackwic/colored/compare/v3.0.0...v3.1.1 )
---
updated-dependencies:
- dependency-name: colored
dependency-version: 3.1.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:37:05 +01:00
dependabot[bot]
2dfc753b96
build(deps): bump cc from 1.2.53 to 1.2.54 ( #7990 )
...
Bumps [cc](https://github.com/rust-lang/cc-rs ) from 1.2.53 to 1.2.54.
- [Release notes](https://github.com/rust-lang/cc-rs/releases )
- [Changelog](https://github.com/rust-lang/cc-rs/blob/main/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.53...cc-v1.2.54 )
---
updated-dependencies:
- dependency-name: cc
dependency-version: 1.2.54
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:36:59 +01:00
tellet-q
55969c7e97
Track shard transfer stages and duration ( #8001 )
...
* Track shard transfer stages and duration
2026-02-09 23:36:50 +01:00
Ivan Pleshkov
0f385b1fd7
Update queue dont keep ops in ram ( #7951 )
...
* update queue dont keep ops in ram showcase
* always load operation from WAL
* revert operations buffering
cound only pending in update worker operations
fix typo
use channel size instead of wal index
* remove result expect
* decrease buffering const
* review remarks
* are you happy codespell
2026-02-09 23:36:37 +01:00
Andrey Vasnetsov
b0f7fd002f
do not block ToC on in-collection operations by arc-ing collections ( #7999 )
...
* do not block ToC on in-collection operations by arc-ing collections
* review suggestion fix
2026-02-09 23:30:48 +01:00
dependabot[bot]
6f9f8e45f0
build(deps): bump uuid from 1.19.0 to 1.20.0 ( #7991 )
...
Bumps [uuid](https://github.com/uuid-rs/uuid ) from 1.19.0 to 1.20.0.
- [Release notes](https://github.com/uuid-rs/uuid/releases )
- [Commits](https://github.com/uuid-rs/uuid/compare/v1.19.0...v1.20.0 )
---
updated-dependencies:
- dependency-name: uuid
dependency-version: 1.20.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:30:41 +01:00
dependabot[bot]
eaff9577cd
build(deps): bump serde_json from 1.0.148 to 1.0.149 ( #7992 )
...
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.148 to 1.0.149.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.148...v1.0.149 )
---
updated-dependencies:
- dependency-name: serde_json
dependency-version: 1.0.149
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:30:36 +01:00
dependabot[bot]
30b44aaf5f
build(deps): bump quote from 1.0.43 to 1.0.44 ( #7995 )
...
Bumps [quote](https://github.com/dtolnay/quote ) from 1.0.43 to 1.0.44.
- [Release notes](https://github.com/dtolnay/quote/releases )
- [Commits](https://github.com/dtolnay/quote/compare/1.0.43...1.0.44 )
---
updated-dependencies:
- dependency-name: quote
dependency-version: 1.0.44
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:30:30 +01:00
dependabot[bot]
d328531d1b
build(deps): bump proc-macro2 from 1.0.105 to 1.0.106 ( #7996 )
...
Bumps [proc-macro2](https://github.com/dtolnay/proc-macro2 ) from 1.0.105 to 1.0.106.
- [Release notes](https://github.com/dtolnay/proc-macro2/releases )
- [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.105...1.0.106 )
---
updated-dependencies:
- dependency-name: proc-macro2
dependency-version: 1.0.106
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:30:25 +01:00
dependabot[bot]
af82596da8
build(deps): bump sysinfo from 0.37.2 to 0.38.0 ( #7994 )
...
Bumps [sysinfo](https://github.com/GuillaumeGomez/sysinfo ) from 0.37.2 to 0.38.0.
- [Changelog](https://github.com/GuillaumeGomez/sysinfo/blob/main/CHANGELOG.md )
- [Commits](https://github.com/GuillaumeGomez/sysinfo/compare/v0.37.2...v0.38.0 )
---
updated-dependencies:
- dependency-name: sysinfo
dependency-version: 0.38.0
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:30:18 +01:00
dependabot[bot]
e05bf86cf6
build(deps): bump nix from 0.30.1 to 0.31.1 ( #7997 )
...
Bumps [nix](https://github.com/nix-rust/nix ) from 0.30.1 to 0.31.1.
- [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md )
- [Commits](https://github.com/nix-rust/nix/compare/v0.30.1...v0.31.1 )
---
updated-dependencies:
- dependency-name: nix
dependency-version: 0.31.1
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:30:13 +01:00
dependabot[bot]
fe8ed09048
build(deps): bump lukemathwalker/cargo-chef ( #7989 )
...
Bumps lukemathwalker/cargo-chef from latest-rust-1.92.0-bookworm to latest-rust-1.93.0-bookworm.
---
updated-dependencies:
- dependency-name: lukemathwalker/cargo-chef
dependency-version: latest-rust-1.93.0-bookworm
dependency-type: direct:production
...
Signed-off-by: dependabot[bot] <support@github.com >
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 23:30:08 +01:00
Andrey Vasnetsov
9099a7ac1b
introduce update_mode parameter for upsert operation to control if we want to insert, update, or upsert ( #7963 )
...
* introduce update_mode parameter for upsert operation to control if we want to insert, update, or upsert
* add test
* upd dockstring
* require resharding once all peers have updated version
* use service error
* fix clippy again
* wait for same version before resharding in tests
2026-02-09 23:28:45 +01:00
xzfc
8fb203eeb5
Update GET collections/{}/optimizations ( #7946 )
...
* refactor(SegmentOptimizer::name): make it `&'static`
* refactor(TrackerStatus): add is_running()
* refactor: add TrackerSegmentInfo
* feat: rework optimizations endpoint
* feat(collections/{}/optimizations): trim spaces
2026-02-09 23:28:03 +01:00