-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
bench: arrow batch benchmarks broken #71886
Labels
C-bug
Code not up to spec/doc, specs & docs deemed correct. Solution expected to change code/behavior.
T-sql-queries
SQL Queries Team
Comments
cucaroach
added
C-bug
Code not up to spec/doc, specs & docs deemed correct. Solution expected to change code/behavior.
T-sql-queries
SQL Queries Team
labels
Oct 22, 2021
Oh yeah, that makes sense. I think we simply want to do something like
|
cucaroach
added a commit
to cucaroach/cockroach
that referenced
this issue
Oct 22, 2021
In commit 0d580ad we optimized these functions to clear the data buffer to help out the GC but we broke these benchmarks. Parameterize the clearing behavior so the old behavior is preserved for benchmark continuity purposes. Fixes: cockroachdb#71886 Release note: None
I went in a different direction, I think that fix would make us look bad performance wise. |
cucaroach
added a commit
to cucaroach/cockroach
that referenced
this issue
Oct 22, 2021
In commit 0d580ad we optimized these functions to clear the data buffer to help out the GC but we broke these benchmarks. Parameterize the clearing behavior so the old behavior is preserved for benchmark continuity purposes. Fixes: cockroachdb#71886 Release note: None
cucaroach
added a commit
to cucaroach/cockroach
that referenced
this issue
Oct 25, 2021
And optimization to aid the Go GC broke benchmarks of Serialize and ArrowToBench, fix them by restoring the nil'd out arrays using a copy. Fixes: cockroachdb#71886 Release note: None
craig bot
pushed a commit
that referenced
this issue
Oct 25, 2021
71892: bench: fix colserde benchmarks r=cucaroach a=cucaroach And optimization to aid the Go GC broke benchmarks of Serialize and ArrowToBench, fix them by restoring the nil'd out arrays using a copy. Fixes: #71886 Release note: None Co-authored-by: Tommy Reilly <[email protected]>
8 tasks
blathers-crl bot
pushed a commit
that referenced
this issue
Mar 29, 2022
And optimization to aid the Go GC broke benchmarks of Serialize and ArrowToBench, fix them by restoring the nil'd out arrays using a copy. Fixes: #71886 Release note: None
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
C-bug
Code not up to spec/doc, specs & docs deemed correct. Solution expected to change code/behavior.
T-sql-queries
SQL Queries Team
After this commit (0d580ad) we crash on nil pointers.
The text was updated successfully, but these errors were encountered: