@gscdump/engine 0.32.5 → 0.32.6
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/iceberg/index.mjs +1 -1
- package/package.json +3 -3
package/dist/iceberg/index.mjs
CHANGED
|
@@ -219,7 +219,7 @@ async function createIcebergTables(conn, tables = ICEBERG_TABLES, encoding = "st
|
|
|
219
219
|
async function listIcebergTables(conn) {
|
|
220
220
|
return (await restCatalogListTables(conn.catalog, { namespace: conn.namespace })).map((t) => t.name).sort();
|
|
221
221
|
}
|
|
222
|
-
const SNAPSHOT_REF_TTL_MS =
|
|
222
|
+
const SNAPSHOT_REF_TTL_MS = 1800 * 1e3;
|
|
223
223
|
const RESOLVED_FILES_TTL_MS = 1440 * 60 * 1e3;
|
|
224
224
|
const METADATA_TTL_MS = 1440 * 60 * 1e3;
|
|
225
225
|
const MAX_CACHED_METADATA_BYTES = 2 * 1024 * 1024;
|
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.6",
|
|
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.6",
|
|
185
|
+
"gscdump": "0.32.6"
|
|
186
186
|
},
|
|
187
187
|
"devDependencies": {
|
|
188
188
|
"@duckdb/duckdb-wasm": "^1.32.0",
|