Skip to content
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

Optimize TimeSeriesBlockHash #125461

Merged
merged 1 commit into from
Mar 24, 2025
Merged

Conversation

dnhatn
Copy link
Member

@dnhatn dnhatn commented Mar 22, 2025

Since the data returned from time-series indices (shard-level) is sorted by tsid and timestamp, we can optimize the timeseries blockhash by comparing the incoming tsid and timestamp only with the last values, thus avoiding the need for lookups or internal hashes. Additionally, we can reuse the internal large arrays when rebuilding key blocks.

@dnhatn dnhatn marked this pull request as ready for review March 24, 2025 06:39
@elasticsearchmachine elasticsearchmachine added Team:Analytics Meta label for analytical engine team (ESQL/Aggs/Geo) Team:StorageEngine labels Mar 24, 2025
@elasticsearchmachine
Copy link
Collaborator

Pinging @elastic/es-analytical-engine (Team:Analytics)

@elasticsearchmachine
Copy link
Collaborator

Pinging @elastic/es-storage-engine (Team:StorageEngine)

Copy link
Member

@martijnvg martijnvg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 Left one comment, LGTM otherwise.

final LongVector timestampVector = Objects.requireNonNull(timestampBlock.asVector(), "timestamp input must be a vector");
try (var ordsBuilder = blockFactory.newIntVectorBuilder(tsidVector.getPositionCount())) {
final BytesRef spare = new BytesRef();
// TODO: optimize incoming ordinal block
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you mean here that in a future change the time series source operator should generate the time series ordinal?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Never mind, I see this is tested indirectly via TimeSeriesAggregationOperatorTests.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, but I think we should have a separate unit test for this. I'll add it in a follow-up.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you mean here that in a future change the time series source operator should generate the time series ordinal?

Yes, I will try to improve TimeSeriesSortedSourceOperatorFactory.

/**
* An optimized block hash that receives two blocks: tsid and timestamp, which are sorted.
* Since the incoming data is sorted, this block hash appends the incoming data to the internal arrays without lookup.
*/
public final class TimeSeriesBlockHash extends BlockHash {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I couldn't find a unit test for this class. In case if it is missing, should we add a unit test for this block hash implementation?

@dnhatn
Copy link
Member Author

dnhatn commented Mar 24, 2025

Thanks @martijnvg.

@dnhatn dnhatn merged commit 28bdb24 into elastic:main Mar 24, 2025
17 checks passed
@dnhatn dnhatn deleted the time-series-block-hash branch March 24, 2025 16:04
omricohenn pushed a commit to omricohenn/elasticsearch that referenced this pull request Mar 28, 2025
Since the data returned from time-series indices (shard-level) is sorted 
by tsid and timestamp, we can optimize the timeseries blockhash by
comparing the incoming tsid and timestamp only with the last values,
thus avoiding the need for lookups or internal hashes. Additionally, we
can reuse the internal large arrays when rebuilding key blocks.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
:Analytics/ES|QL AKA ESQL >non-issue :StorageEngine/TSDB You know, for Metrics Team:Analytics Meta label for analytical engine team (ESQL/Aggs/Geo) Team:StorageEngine v9.1.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants