You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LID block ext1 now has firstLID and lastLID encoded
isContinued is only used for older frac versions
no legacy format TID adjusting for a new frac version
as previously, we always locate and load the first block eagerly but calling NextGeq allows to skip some blocks
Measurements
With 16k LID blocks, there are only 4 search requests (out of 50+ I tested) where this feature improves cold query perf. All four search requests fit into "intersect dense and sparse column" type.
Query
env
Total
cold, ms
LID blocks read
cold (branch), ms
LID blocks read (branch)
cold diff
LID blocks read, diff
Trial_1
Trial_2
Trial_3
service:E and login:L and moduleName:S and (zone:A or zone:B or zone:C) and exists:message
prod
0
22.29
±1.03
164
20.6
±1.10
62
-7.6%
-62.2%
-12.6%
-8.9%
-7.6%
request_host:huge AND remote_addr:X (found)
lb
0
18.22
±0.97
69
17.53
±0.82
42
-3.8%
-39.1%
-3.8%
-9.8%
-3.8%
request_host:small AND response_status:200
lb
69
33.64
±1.92
248
30.44
±1.60
138
-9.5%
-44.4%
-2%
-10.9%
-9.5%
response_status:500 | by request_method
lb
172
52.58
±2.14
377
51.68
±1.54
333
-1.7%
-11.7%
-7.9%
-20.6%
-1.7%
I have read and followed all requirements in CONTRIBUTING.md;
I used LLM/AI assistance to make this pull request;
❌ Patch coverage is 67.79661% with 19 lines in your changes missing coverage. Please review.
✅ Project coverage is 71.11%. Comparing base (08b0423) to head (2b14330).
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
performanceFeatures or improvements that positively affect seq-db performance
4 participants
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.
Description
Summary
v5firstLIDandlastLIDencodedisContinuedis only used for older frac versionsNextGeqallows to skip some blocksMeasurements
With 16k LID blocks, there are only 4 search requests (out of 50+ I tested) where this feature improves cold query perf. All four search requests fit into "intersect dense and sparse column" type.