@gscdump/engine 0.32.1 → 0.32.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/rollups.d.mts +1 -1
- package/dist/rollups.mjs +1 -1
- package/package.json +3 -3
package/dist/rollups.d.mts
CHANGED
|
@@ -229,7 +229,7 @@ declare const WINDOW_BYTE_BUDGET: number;
|
|
|
229
229
|
*/
|
|
230
230
|
declare const ROLLUP_PAGE_ROWS = 50000;
|
|
231
231
|
declare const ROLLUP_PAGE_ROWS_WIDE = 20000;
|
|
232
|
-
declare const ROLLUP_PAGE_ROWS_DAILY =
|
|
232
|
+
declare const ROLLUP_PAGE_ROWS_DAILY = 70000;
|
|
233
233
|
declare const DAILY_MAX_WINDOW_DAYS = 7;
|
|
234
234
|
/**
|
|
235
235
|
* UTC day-aligned [startMs, endMs] span a partition covers. Returns null for
|
package/dist/rollups.mjs
CHANGED
|
@@ -129,7 +129,7 @@ function utcDateMinusDays(at, days) {
|
|
|
129
129
|
const WINDOW_BYTE_BUDGET = 10 * 1024 * 1024;
|
|
130
130
|
const ROLLUP_PAGE_ROWS = 5e4;
|
|
131
131
|
const ROLLUP_PAGE_ROWS_WIDE = 2e4;
|
|
132
|
-
const ROLLUP_PAGE_ROWS_DAILY =
|
|
132
|
+
const ROLLUP_PAGE_ROWS_DAILY = 7e4;
|
|
133
133
|
const DAILY_MAX_WINDOW_DAYS = 7;
|
|
134
134
|
const DAY_RE = /^daily\/(\d{4})-(\d{2})-(\d{2})$/;
|
|
135
135
|
const WEEK_RE = /^weekly\/(\d{4})-(\d{2})-(\d{2})$/;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gscdump/engine",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.32.
|
|
4
|
+
"version": "0.32.3",
|
|
5
5
|
"description": "Append-only Parquet/DuckDB storage engine + planner + adapters for the gscdump pipeline. Node + edge runtimes; opt-in heavy peers.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Harlan Wilton",
|
|
@@ -181,8 +181,8 @@
|
|
|
181
181
|
"dependencies": {
|
|
182
182
|
"drizzle-orm": "1.0.0-rc.3",
|
|
183
183
|
"proper-lockfile": "^4.1.2",
|
|
184
|
-
"gscdump": "0.32.
|
|
185
|
-
"
|
|
184
|
+
"@gscdump/contracts": "0.32.3",
|
|
185
|
+
"gscdump": "0.32.3"
|
|
186
186
|
},
|
|
187
187
|
"devDependencies": {
|
|
188
188
|
"@duckdb/duckdb-wasm": "^1.32.0",
|