-
Notifications
You must be signed in to change notification settings - Fork 25.8k
Synthetic id field for time_series indices (remove feature flag) #144184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
burqen
merged 39 commits into
elastic:main
from
burqen:ap/2026.03.13.synthetic-id-default-and-remove-feature-flag
Apr 7, 2026
Merged
Changes from all commits
Commits
Show all changes
39 commits
Select commit
Hold shift + click to select a range
d0d08f6
Synthetic id field for time_series indices
burqen 2d2f281
Update docs/changelog/144184.yaml
burqen 7111d90
Merge branch 'main' into ap/2026.03.13.synthetic-id-default-and-remov…
burqen 4bc666f
Temporary logging for tsdb/25_id
burqen e745dd6
Merge remote-tracking branch 'upstream/main' into ap/2026.03.13.synth…
burqen 6c6a6c1
Remove feature flag added added in merge
burqen cb4cbcd
Merge remote-tracking branch 'upstream/main' into ap/2026.03.13.synth…
burqen e207ea1
Revert "Temporary logging for tsdb/25_id"
burqen 19d300f
Merge branch 'main' into ap/2026.03.13.synthetic-id-default-and-remov…
burqen 3b245ee
Remove use of feature flag added in merge
burqen c5bf72e
Merge branch 'main' into ap/2026.03.13.synthetic-id-default-and-remov…
burqen ac30421
Merge remote-tracking branch 'upstream/main' into ap/2026.03.13.synth…
burqen bfeaab0
Bump IndexVersion for synthetic id On by default
burqen 204f731
Merge remote-tracking branch 'upstream/main' into ap/2026.03.13.synth…
burqen 32b9ef0
Remove feature flag added in merge
burqen 97bfa3b
Merge remote-tracking branch 'upstream/main' into ap/2026.03.13.synth…
burqen 136c773
Avoid use of setting when feature flag disabled
burqen 23e3ed2
Merge remote-tracking branch 'upstream/main' into ap/2026.03.13.synth…
burqen 4f778a1
Disable synthetic id in faulty version range
burqen e455a3e
Merge remote-tracking branch 'origin/main' into ap/2026.03.13.synthet…
fcofdez e17ab96
Merge remote-tracking branch 'origin/main' into ap/2026.03.13.synthet…
fcofdez 0ea5365
Fix compilation
fcofdez c84e0f4
Merge remote-tracking branch 'origin/main' into ap/2026.03.13.synthet…
fcofdez 320c8f2
Merge remote-tracking branch 'origin/main' into ap/2026.03.13.synthet…
fcofdez 156fcf7
Merge remote-tracking branch 'origin/main' into ap/2026.03.13.synthet…
fcofdez 1267fba
Merge mistake
fcofdez f3283a1
Merge branch 'main' into ap/2026.03.13.synthetic-id-default-and-remov…
tlrx d8c45ff
Merge branch 'main' into ap/2026.03.13.synthetic-id-default-and-remov…
tlrx 8300538
Merge branch 'main' into ap/2026.03.13.synthetic-id-default-and-remov…
tlrx 107f7fe
Merge branch 'main' into ap/2026.03.13.synthetic-id-default-and-remov…
tlrx 61d2575
Merge branch 'main' into ap/2026.03.13.synthetic-id-default-and-remov…
tlrx 7d66fc5
Merge remote-tracking branch 'upstream/main' into ap/2026.03.13.synth…
burqen 50d77a0
Improve release note
burqen 19440ea
Fix issue with release note
burqen ecb11b0
Release note adhere to schema
burqen a2f7513
Remove use of feature flag
burqen e892596
Add notable to release note
burqen 5c6b5ea
Merge branch 'main' into ap/2026.03.13.synthetic-id-default-and-remov…
burqen e800878
Better release note
burqen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| area: TSDB | ||
| pr: 144184 | ||
| summary: By using synthetic `_id` field for indices in time_series mode, storage footprint is significantly reduced | ||
| highlight: | ||
| title: Synthetic IDs for indices in time-series mode | ||
| body: |- | ||
| The `_id` field has a significant storage footprint in metrics applications, as it requires both storing and indexing | ||
| unique document identifiers that are rarely used for direct lookups. To alleviate this, we are introducing synthetic | ||
| IDs for indices in time-series mode. Instead of indexing the `_id` field, a Bloom filter is used for fast, lightweight | ||
| duplicate detection at ingest time. Lookups and operations that previously relied on `_id` are delegated to other | ||
| indexed fields on the document, such as timestamps, or dimension fields, preserving the same query and | ||
| retrieval functionality. | ||
|
|
||
| This offers up to 40% storage improvement for OTLP metrics and reduces the cpu overhead for segment merging due to the | ||
| lack of an inverted index for `_id` fields. | ||
| notable: true | ||
| type: "enhancement" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.