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

Do not return pointers from windowing functions #519

Merged
merged 1 commit into from
Feb 20, 2025

Conversation

fpetkovski
Copy link
Collaborator

@fpetkovski fpetkovski commented Feb 20, 2025

Commit c2f322e introduced large regressions since due to two changes:

  • Changed return values of windowing functions from float64 to *float64, causing excessive allocations.
  • Added an expensive check on the hot path for a condition that could be calculated once for the entire query.

This commit reverts that changes and adds a better way to handle cases where both float and histogram values are missing, but there is no error in the evaluation. We can easily do this by returning a boolean value.

BenchmarkSingleQuery result

before c2f322e:
BenchmarkSingleQuery
BenchmarkSingleQuery-11    	       5	 204554700 ns/op	66048614 B/op	  540159 allocs/op

for c2f322e:
BenchmarkSingleQuery
BenchmarkSingleQuery-11    	       4	 279080729 ns/op	153497414 B/op	11378958 allocs/op

for this branch:
BenchmarkSingleQuery
BenchmarkSingleQuery-11    	       5	 204368625 ns/op	64872708 B/op	  540106 allocs/op

@SungJin1212 @yeya24 could you take a look?

@fpetkovski fpetkovski force-pushed the remove-float-pointers branch 3 times, most recently from 54d96ef to 0912d78 Compare February 20, 2025 13:06
@fpetkovski fpetkovski force-pushed the remove-float-pointers branch 2 times, most recently from 15b68b7 to 614a1b2 Compare February 20, 2025 13:12
Commit c2f322e introduced large regressions
since due to two changes:
* Changed return values of windowing functions from float64 to *float64, causing
excessive allocations.
* Added an expensive check on the hot path for a condition that could be calculated
once for the entire query.

This commit reverts that changes and adds a better way to handle cases where both
float and histogram values are missing, but there is no error in the evaluation.

Signed-off-by: Filip Petkovski <[email protected]>
@fpetkovski fpetkovski force-pushed the remove-float-pointers branch from 614a1b2 to 29c49d7 Compare February 20, 2025 13:13
@fpetkovski fpetkovski marked this pull request as ready for review February 20, 2025 13:13
@fpetkovski fpetkovski requested a review from yeya24 February 20, 2025 13:13
Copy link
Contributor

@yeya24 yeya24 left a comment

Choose a reason for hiding this comment

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

Fix makes sense to me. Thanks!

@yeya24 yeya24 merged commit fab1185 into thanos-io:main Feb 20, 2025
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants