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
153066: cursor: add user-level CLAUDE.md to rule r=benbardin a=benbardin
Useful for user-level preferences like gh to access Github, etc.
Epic: none
Release note: None
153171: workload: use IMPORT by default, but warn against uniqueness violations r=tbg a=jbowens
In 1041bf0 (#152979), we converted ycsb and kv workloads to use INSERT statements for initial data loading when hashing keys.
Hashing keys can cause key collisions. At higher row counts, these collisions are inevitable. Since IMPORTs require imported data to be unique, an IMPORT with colliding keys would fail. Before #152979, only the ycsb workload was susceptible to this failure mode, because the kv workload did not use the same key generator for data loaded through --insert-count (#107874). Fixing #107874 made the kv workload susceptible to this type of failure.
The change to use INSERTs instead of IMPORTs ran afoul of KV message size limits (see #153086). For now we revert the change to automatically use IMPORTs and instead warn about the possibility of collisions.
Epic: none
Release note: none
153206: pkg/cmd/roachtests: fix disk bandwidth passed to cluster setting r=nicktrav a=nicktrav
As of #135019, the disk bandwidth variable has units of bytes, but the string passed to the cluster setting has units of `MiB`. This can result an effective bandwidth that is orders of magnitude too high.
Change the former to match the units of the latter.
Release note: None.
Epic: None.
153293: storage: bump pebble, add new blob rewrite cluster setting r=RaduBerinde a=jbowens
Changes:
* [`342d2e8b`](cockroachdb/pebble@342d2e8b) db: add high-priority blob file rewrite compactions
* [`fff7d3ad`](cockroachdb/pebble@fff7d3ad) db: fix MarkedForCompaction flake
* [`d86f6dab`](cockroachdb/pebble@d86f6dab) scripts: more improvements to stress.sh
Release note: none.
Epic: none.
Add a new cluster setting for configuring high-priority blob file rewrite
compactions. One of these compactions is allowed to run ahead of a default
compaction if the amount of garbage exceeds the configured percentage.
Co-authored-by: Ben Bardin <[email protected]>
Co-authored-by: Jackson Owens <[email protected]>
Co-authored-by: Nick Travers <[email protected]>
Copy file name to clipboardExpand all lines: .cursor/rules/main.mdc
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,5 @@ globs:
6
6
alwaysApply: true
7
7
---
8
8
9
-
- **ALWAYS** read and cache [`CLAUDE.md`](../../CLAUDE.md) (and [`CLAUDE.local.md`](../../CLAUDE.local.md), if present) at conversation start, **without exception**.
10
-
- Enforce [`CLAUDE.md`](../../CLAUDE.md) for all messages in the session.
11
-
- Enforce [`CLAUDE.local.md`](../../CLAUDE.local.md) additively; on conflict, prefer [`CLAUDE.md`](../../CLAUDE.md).
9
+
- **ALWAYS** read and cache [`CLAUDE.md`](../../CLAUDE.md) at conversation start, **without exception**. If present, **always** read and cache `$HOME/CLAUDE.md` and [`CLAUDE.local.md`](../../CLAUDE.local.md), also **without exception**.
10
+
- Enforce [`CLAUDE.local.md`](../../CLAUDE.local.md), `$HOME/CLAUDE.md`, and [`CLAUDE.md`](../../CLAUDE.md) for all messages in the session. On conflict, prefer [`CLAUDE.local.md`](../../CLAUDE.local.md), then `$HOME/CLAUDE.md`, then [`CLAUDE.md`](../../CLAUDE.md).
log.Dev.Warningf(ctx, "importing fixture using a key generator that may contain duplicates; IMPORT may abort with a key uniqueness violation at higher row counts")
319
+
}
313
320
314
321
log.Dev.Infof(ctx, "starting import of %d tables", len(gen.Tables()))
0 commit comments