-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
in-mem temp storage disk budget exceeded on multiple DISTINCT ON query #74554
Labels
C-bug
Code not up to spec/doc, specs & docs deemed correct. Solution expected to change code/behavior.
O-community
Originated from the community
Comments
msirek
added
the
C-bug
Code not up to spec/doc, specs & docs deemed correct. Solution expected to change code/behavior.
label
Jan 6, 2022
Hello, I am Blathers. I am here to help you get the issue triaged. Hoot - a bug! Though bugs are the bane of my existence, rest assured the wretched thing will get the best of care here. I was unable to automatically find someone to ping. If we have not gotten back to your issue within a few business days, you can try the following:
🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is otan. |
blathers-crl
bot
added
O-community
Originated from the community
X-blathers-untriaged
blathers was unable to find an owner
labels
Jan 6, 2022
yuzefovich
removed
X-blathers-untriaged
blathers was unable to find an owner
T-sql-queries
SQL Queries Team
labels
Jan 7, 2022
msirek
pushed a commit
to msirek/cockroach
that referenced
this issue
Apr 8, 2022
This commit comments out a flaky test which will be fixed by cockroachdb#74554. Release note: none
craig bot
pushed a commit
that referenced
this issue
Apr 9, 2022
79667: logictest: Ignore test flake in disjunction_in_join r=msirek a=msirek This commit comments out a flaky test which will be fixed by #74554. Release note: none 79669: dev: address paper cuts and improve `dev <cmd> -h` consistency r=irfansharif a=irfansharif - Disable test sharding under --rewrite; sharded package test runners can trample over one another when updating data files - Generate cgo files with naked `dev gen` - Remove the `dev gen go+docs` target but retain the fast path when both the `go` and `docs` targets are specified (`dev gen go docs` for e.g.) - Remove the `all` and `all_tests` moniker for `dev test`, and retain the sanitized path when testing everything using `dev test pkg/...`. The latter syntax feels closer to the `go test` expansion. - Edit some help text padding to wrap more cleanly in terminals Release note: None 79689: ci: build `cockroach-sql` binary r=jlinder a=rail Previously, the `cockroach-sql` binary was added to the source code, but has never been added as a compilation target in our CI. This patch enables building `cockroach-sql` as a part of CI. Release note: None 79690: changefeedccl: Make scan request size configurable. r=miretskiy a=miretskiy Add a `changefeed.backfill.scan_request_size` setting to control scan request size during backfill. The default is maintained at 16MB. However, some latency sensitive environments may choose to lower this setting, while increasing scan parallelism to ensure that the latches are held for shorter periods of time. Release Notes: Add a `changefeed.backfill.scan_request_size` setting to control scan request size during backfill. Relese Justification: Low danger stability and performance improvement. Co-authored-by: Mark Sirek <[email protected]> Co-authored-by: irfan sharif <[email protected]> Co-authored-by: Rail Aliiev <[email protected]> Co-authored-by: Yevgeniy Miretskiy <[email protected]>
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.
O-community
Originated from the community
Describe the problem
While testing a PR fix, I found a test case which exhausts the 100MB in-mem temp storage pool in the fakedist-disk flavor of logic tests. The query doesn't involve many rows, but it does use multiple DISTINCT ON clauses.
To Reproduce
In the cockroach source code, create file pkg/sql/logictest/testdata/logic_test/distinct_failure with the following contents:
Next, run the test:
The test fails with the following information:
Expected behavior
The test should pass.
Additional data / screenshots
Environment:
Additional context
Found issue when testing #74303
Jira issue: CRDB-12148
The text was updated successfully, but these errors were encountered: