@lancedb/lancedb 0.29.1-beta.0 → 0.30.0-beta.1
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/connection.d.ts +26 -2
- package/dist/connection.js +3 -3
- package/dist/index.d.ts +2 -2
- package/dist/native.d.ts +31 -2
- package/dist/native.js +52 -52
- package/dist/table.d.ts +47 -0
- package/dist/table.js +15 -1
- package/package.json +8 -8
package/dist/connection.d.ts
CHANGED
|
@@ -107,6 +107,18 @@ export interface DropNamespaceOptions {
|
|
|
107
107
|
/** Refuse to drop if non-empty (restrict) or drop recursively (cascade). */
|
|
108
108
|
behavior?: "restrict" | "cascade";
|
|
109
109
|
}
|
|
110
|
+
export interface RenameTableOptions {
|
|
111
|
+
/**
|
|
112
|
+
* The namespace path of the table being renamed. Defaults to the root
|
|
113
|
+
* namespace (`[]`) when omitted.
|
|
114
|
+
*/
|
|
115
|
+
namespacePath?: string[];
|
|
116
|
+
/**
|
|
117
|
+
* The namespace path to move the table to as part of the rename. When
|
|
118
|
+
* omitted the table stays in `namespacePath`.
|
|
119
|
+
*/
|
|
120
|
+
newNamespacePath?: string[];
|
|
121
|
+
}
|
|
110
122
|
/**
|
|
111
123
|
* A LanceDB Connection that allows you to open tables and create new ones.
|
|
112
124
|
*
|
|
@@ -219,7 +231,6 @@ export declare abstract class Connection {
|
|
|
219
231
|
* @param {string[]} namespacePath The namespace path of the table (defaults to root namespace).
|
|
220
232
|
*/
|
|
221
233
|
abstract dropTable(name: string, namespacePath?: string[]): Promise<void>;
|
|
222
|
-
abstract renameTable(oldName: string, newName: string, namespacePath?: string[]): Promise<void>;
|
|
223
234
|
/**
|
|
224
235
|
* Drop all tables in the database.
|
|
225
236
|
* @param {string[]} namespacePath The namespace path to drop tables from (defaults to root namespace).
|
|
@@ -295,6 +306,19 @@ export declare abstract class Connection {
|
|
|
295
306
|
sourceTag?: string;
|
|
296
307
|
isShallow?: boolean;
|
|
297
308
|
}): Promise<Table>;
|
|
309
|
+
/**
|
|
310
|
+
* Rename a table.
|
|
311
|
+
*
|
|
312
|
+
* Currently only supported by LanceDB Cloud. Local OSS connections and
|
|
313
|
+
* namespace-backed connections (via {@link connectNamespace}) reject with
|
|
314
|
+
* a "not supported" error.
|
|
315
|
+
*
|
|
316
|
+
* @param {string} currentName - The current name of the table.
|
|
317
|
+
* @param {string} newName - The new name for the table.
|
|
318
|
+
* @param {RenameTableOptions} options - Optional namespace paths. When
|
|
319
|
+
* `newNamespacePath` is omitted the table stays in `namespacePath`.
|
|
320
|
+
*/
|
|
321
|
+
abstract renameTable(currentName: string, newName: string, options?: RenameTableOptions): Promise<void>;
|
|
298
322
|
}
|
|
299
323
|
/** @hideconstructor */
|
|
300
324
|
export declare class LocalConnection extends Connection {
|
|
@@ -320,12 +344,12 @@ export declare class LocalConnection extends Connection {
|
|
|
320
344
|
private _createTableImpl;
|
|
321
345
|
createEmptyTable(name: string, schema: import("./arrow").SchemaLike, namespacePathOrOptions?: string[] | Partial<CreateTableOptions>, options?: Partial<CreateTableOptions>): Promise<Table>;
|
|
322
346
|
dropTable(name: string, namespacePath?: string[]): Promise<void>;
|
|
323
|
-
renameTable(oldName: string, newName: string, namespacePath?: string[]): Promise<void>;
|
|
324
347
|
dropAllTables(namespacePath?: string[]): Promise<void>;
|
|
325
348
|
describeNamespace(namespacePath: string[]): Promise<DescribeNamespaceResponse>;
|
|
326
349
|
listNamespaces(namespacePath?: string[], options?: Partial<ListNamespacesOptions>): Promise<ListNamespacesResponse>;
|
|
327
350
|
createNamespace(namespacePath: string[], options?: Partial<CreateNamespaceOptions>): Promise<CreateNamespaceResponse>;
|
|
328
351
|
dropNamespace(namespacePath: string[], options?: Partial<DropNamespaceOptions>): Promise<DropNamespaceResponse>;
|
|
352
|
+
renameTable(currentName: string, newName: string, options?: RenameTableOptions): Promise<void>;
|
|
329
353
|
}
|
|
330
354
|
/**
|
|
331
355
|
* Takes storage options and makes all the keys snake case.
|
package/dist/connection.js
CHANGED
|
@@ -160,9 +160,6 @@ class LocalConnection extends Connection {
|
|
|
160
160
|
async dropTable(name, namespacePath) {
|
|
161
161
|
return this.inner.dropTable(name, namespacePath ?? []);
|
|
162
162
|
}
|
|
163
|
-
async renameTable(oldName, newName, namespacePath) {
|
|
164
|
-
return this.inner.renameTable(oldName, newName, namespacePath ?? []);
|
|
165
|
-
}
|
|
166
163
|
async dropAllTables(namespacePath) {
|
|
167
164
|
return this.inner.dropAllTables(namespacePath ?? []);
|
|
168
165
|
}
|
|
@@ -178,6 +175,9 @@ class LocalConnection extends Connection {
|
|
|
178
175
|
dropNamespace(namespacePath, options) {
|
|
179
176
|
return this.inner.dropNamespace(namespacePath, options?.mode, options?.behavior);
|
|
180
177
|
}
|
|
178
|
+
async renameTable(currentName, newName, options) {
|
|
179
|
+
return this.inner.renameTable(currentName, newName, options?.namespacePath ?? [], options?.newNamespacePath);
|
|
180
|
+
}
|
|
181
181
|
}
|
|
182
182
|
exports.LocalConnection = LocalConnection;
|
|
183
183
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ import { HeaderProvider } from "./header";
|
|
|
4
4
|
export { JsHeaderProvider as NativeJsHeaderProvider } from "./native.js";
|
|
5
5
|
export { AddColumnsSql, ConnectionOptions, ConnectNamespaceOptions, IndexStatistics, IndexConfig, ClientConfig, TimeoutConfig, RetryConfig, TlsConfig, OptimizeStats, CompactionStats, RemovalStats, TableStatistics, FragmentStatistics, FragmentSummaryStats, Tags, TagContents, MergeResult, AddResult, AddColumnsResult, AlterColumnsResult, DeleteResult, DropColumnsResult, UpdateResult, SplitCalculatedOptions, SplitRandomOptions, SplitHashOptions, SplitSequentialOptions, ShuffleOptions, } from "./native.js";
|
|
6
6
|
export { makeArrowTable, MakeArrowTableOptions, Data, VectorColumnOptions, } from "./arrow";
|
|
7
|
-
export { Connection, CreateTableOptions, TableNamesOptions, OpenTableOptions, ListNamespacesOptions, CreateNamespaceOptions, DropNamespaceOptions, ListNamespacesResponse, CreateNamespaceResponse, DropNamespaceResponse, DescribeNamespaceResponse, } from "./connection";
|
|
7
|
+
export { Connection, CreateTableOptions, TableNamesOptions, OpenTableOptions, ListNamespacesOptions, CreateNamespaceOptions, DropNamespaceOptions, ListNamespacesResponse, CreateNamespaceResponse, DropNamespaceResponse, DescribeNamespaceResponse, RenameTableOptions, } from "./connection";
|
|
8
8
|
export { Session } from "./native.js";
|
|
9
9
|
export { ExecutableQuery, Query, QueryBase, VectorQuery, TakeQuery, QueryExecutionOptions, ColumnOrdering, FullTextSearchOptions, RecordBatchIterator, FullTextQuery, MatchQuery, PhraseQuery, BoostQuery, MultiMatchQuery, BooleanQuery, FullTextQueryType, Operator, Occur, } from "./query";
|
|
10
10
|
export { Index, IndexOptions, IvfPqOptions, IvfRqOptions, IvfFlatOptions, HnswPqOptions, HnswSqOptions, FtsOptions, } from "./indices";
|
|
11
|
-
export { Table, AddDataOptions, UpdateOptions, OptimizeOptions, Version, LsmWriteSpec, ColumnAlteration, } from "./table";
|
|
11
|
+
export { Table, AddDataOptions, UpdateOptions, OptimizeOptions, Version, WriteProgress, LsmWriteSpec, ColumnAlteration, } from "./table";
|
|
12
12
|
export { HeaderProvider, StaticHeaderProvider, OAuthHeaderProvider, TokenResponse, } from "./header";
|
|
13
13
|
export { MergeInsertBuilder, WriteExecutionOptions } from "./merge";
|
|
14
14
|
export * as embedding from "./embedding";
|
package/dist/native.d.ts
CHANGED
|
@@ -23,7 +23,6 @@ export declare class Connection {
|
|
|
23
23
|
cloneTable(targetTableName: string, sourceUri: string, targetNamespacePath: Array<string> | undefined | null, sourceVersion: number | undefined | null, sourceTag: string | undefined | null, isShallow: boolean): Promise<Table>
|
|
24
24
|
/** Drop table with the name. Or raise an error if the table does not exist. */
|
|
25
25
|
dropTable(name: string, namespacePath?: Array<string> | undefined | null): Promise<void>
|
|
26
|
-
renameTable(oldName: string, newName: string, namespacePath?: Array<string> | undefined | null): Promise<void>
|
|
27
26
|
dropAllTables(namespacePath?: Array<string> | undefined | null): Promise<void>
|
|
28
27
|
/** Describe a namespace and return its properties. */
|
|
29
28
|
describeNamespace(namespacePath: Array<string>): Promise<DescribeNamespaceResponse>
|
|
@@ -33,6 +32,12 @@ export declare class Connection {
|
|
|
33
32
|
createNamespace(namespacePath: Array<string>, mode?: string | undefined | null, properties?: Record<string, string> | undefined | null): Promise<CreateNamespaceResponse>
|
|
34
33
|
/** Drop a namespace. */
|
|
35
34
|
dropNamespace(namespacePath: Array<string>, mode?: string | undefined | null, behavior?: string | undefined | null): Promise<DropNamespaceResponse>
|
|
35
|
+
/**
|
|
36
|
+
* Rename a table. `current_namespace_path` and `new_namespace_path` default to
|
|
37
|
+
* the root namespace when omitted; the caller is expected to either pass both
|
|
38
|
+
* or pass neither.
|
|
39
|
+
*/
|
|
40
|
+
renameTable(currentName: string, newName: string, currentNamespacePath?: Array<string> | undefined | null, newNamespacePath?: Array<string> | undefined | null): Promise<void>
|
|
36
41
|
}
|
|
37
42
|
|
|
38
43
|
export declare class Index {
|
|
@@ -190,7 +195,7 @@ export declare class Table {
|
|
|
190
195
|
close(): void
|
|
191
196
|
/** Return Schema as empty Arrow IPC file. */
|
|
192
197
|
schema(): Promise<Buffer>
|
|
193
|
-
add(buf: Buffer, mode: string): Promise<AddResult>
|
|
198
|
+
add(buf: Buffer, mode: string, progressCallback?: (progress: WriteProgressInfo) => void): Promise<AddResult>
|
|
194
199
|
countRows(filter?: string | undefined | null): Promise<number>
|
|
195
200
|
delete(predicate: string): Promise<DeleteResult>
|
|
196
201
|
createIndex(index: Index | undefined | null, column: string, replace?: boolean | undefined | null, waitTimeoutS?: number | undefined | null, name?: string | undefined | null, train?: boolean | undefined | null): Promise<void>
|
|
@@ -747,3 +752,27 @@ export interface Version {
|
|
|
747
752
|
timestamp: number
|
|
748
753
|
metadata: Record<string, string>
|
|
749
754
|
}
|
|
755
|
+
|
|
756
|
+
/**
|
|
757
|
+
* Progress snapshot for a write operation, delivered to the JS callback
|
|
758
|
+
* passed to `Table.add`.
|
|
759
|
+
*/
|
|
760
|
+
export interface WriteProgressInfo {
|
|
761
|
+
/** Number of rows written so far. */
|
|
762
|
+
outputRows: number
|
|
763
|
+
/** Number of bytes written so far. */
|
|
764
|
+
outputBytes: number
|
|
765
|
+
/**
|
|
766
|
+
* Total rows expected, if the input source reports it.
|
|
767
|
+
* Always set on the final callback (where `done` is `true`).
|
|
768
|
+
*/
|
|
769
|
+
totalRows?: number
|
|
770
|
+
/** Wall-clock seconds since monitoring started. */
|
|
771
|
+
elapsedSeconds: number
|
|
772
|
+
/** Number of parallel write tasks currently in flight. */
|
|
773
|
+
activeTasks: number
|
|
774
|
+
/** Total number of parallel write tasks (the write parallelism). */
|
|
775
|
+
totalTasks: number
|
|
776
|
+
/** `true` for the final callback; `false` otherwise. */
|
|
777
|
+
done: boolean
|
|
778
|
+
}
|
package/dist/native.js
CHANGED
|
@@ -76,8 +76,8 @@ function requireNative() {
|
|
|
76
76
|
try {
|
|
77
77
|
const binding = require('@lancedb/lancedb-android-arm64');
|
|
78
78
|
const bindingPackageVersion = require('@lancedb/lancedb-android-arm64/package.json').version;
|
|
79
|
-
if (bindingPackageVersion !== '0.
|
|
80
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
79
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
80
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
81
81
|
}
|
|
82
82
|
return binding;
|
|
83
83
|
}
|
|
@@ -95,8 +95,8 @@ function requireNative() {
|
|
|
95
95
|
try {
|
|
96
96
|
const binding = require('@lancedb/lancedb-android-arm-eabi');
|
|
97
97
|
const bindingPackageVersion = require('@lancedb/lancedb-android-arm-eabi/package.json').version;
|
|
98
|
-
if (bindingPackageVersion !== '0.
|
|
99
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
98
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
99
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
100
100
|
}
|
|
101
101
|
return binding;
|
|
102
102
|
}
|
|
@@ -120,8 +120,8 @@ function requireNative() {
|
|
|
120
120
|
try {
|
|
121
121
|
const binding = require('@lancedb/lancedb-win32-x64-gnu');
|
|
122
122
|
const bindingPackageVersion = require('@lancedb/lancedb-win32-x64-gnu/package.json').version;
|
|
123
|
-
if (bindingPackageVersion !== '0.
|
|
124
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
123
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
124
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
125
125
|
}
|
|
126
126
|
return binding;
|
|
127
127
|
}
|
|
@@ -139,8 +139,8 @@ function requireNative() {
|
|
|
139
139
|
try {
|
|
140
140
|
const binding = require('@lancedb/lancedb-win32-x64-msvc');
|
|
141
141
|
const bindingPackageVersion = require('@lancedb/lancedb-win32-x64-msvc/package.json').version;
|
|
142
|
-
if (bindingPackageVersion !== '0.
|
|
143
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
142
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
143
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
144
144
|
}
|
|
145
145
|
return binding;
|
|
146
146
|
}
|
|
@@ -159,8 +159,8 @@ function requireNative() {
|
|
|
159
159
|
try {
|
|
160
160
|
const binding = require('@lancedb/lancedb-win32-ia32-msvc');
|
|
161
161
|
const bindingPackageVersion = require('@lancedb/lancedb-win32-ia32-msvc/package.json').version;
|
|
162
|
-
if (bindingPackageVersion !== '0.
|
|
163
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
162
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
163
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
164
164
|
}
|
|
165
165
|
return binding;
|
|
166
166
|
}
|
|
@@ -178,8 +178,8 @@ function requireNative() {
|
|
|
178
178
|
try {
|
|
179
179
|
const binding = require('@lancedb/lancedb-win32-arm64-msvc');
|
|
180
180
|
const bindingPackageVersion = require('@lancedb/lancedb-win32-arm64-msvc/package.json').version;
|
|
181
|
-
if (bindingPackageVersion !== '0.
|
|
182
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
181
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
182
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
183
183
|
}
|
|
184
184
|
return binding;
|
|
185
185
|
}
|
|
@@ -201,8 +201,8 @@ function requireNative() {
|
|
|
201
201
|
try {
|
|
202
202
|
const binding = require('@lancedb/lancedb-darwin-universal');
|
|
203
203
|
const bindingPackageVersion = require('@lancedb/lancedb-darwin-universal/package.json').version;
|
|
204
|
-
if (bindingPackageVersion !== '0.
|
|
205
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
204
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
205
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
206
206
|
}
|
|
207
207
|
return binding;
|
|
208
208
|
}
|
|
@@ -219,8 +219,8 @@ function requireNative() {
|
|
|
219
219
|
try {
|
|
220
220
|
const binding = require('@lancedb/lancedb-darwin-x64');
|
|
221
221
|
const bindingPackageVersion = require('@lancedb/lancedb-darwin-x64/package.json').version;
|
|
222
|
-
if (bindingPackageVersion !== '0.
|
|
223
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
222
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
223
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
224
224
|
}
|
|
225
225
|
return binding;
|
|
226
226
|
}
|
|
@@ -238,8 +238,8 @@ function requireNative() {
|
|
|
238
238
|
try {
|
|
239
239
|
const binding = require('@lancedb/lancedb-darwin-arm64');
|
|
240
240
|
const bindingPackageVersion = require('@lancedb/lancedb-darwin-arm64/package.json').version;
|
|
241
|
-
if (bindingPackageVersion !== '0.
|
|
242
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
241
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
242
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
243
243
|
}
|
|
244
244
|
return binding;
|
|
245
245
|
}
|
|
@@ -262,8 +262,8 @@ function requireNative() {
|
|
|
262
262
|
try {
|
|
263
263
|
const binding = require('@lancedb/lancedb-freebsd-x64');
|
|
264
264
|
const bindingPackageVersion = require('@lancedb/lancedb-freebsd-x64/package.json').version;
|
|
265
|
-
if (bindingPackageVersion !== '0.
|
|
266
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
265
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
266
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
267
267
|
}
|
|
268
268
|
return binding;
|
|
269
269
|
}
|
|
@@ -281,8 +281,8 @@ function requireNative() {
|
|
|
281
281
|
try {
|
|
282
282
|
const binding = require('@lancedb/lancedb-freebsd-arm64');
|
|
283
283
|
const bindingPackageVersion = require('@lancedb/lancedb-freebsd-arm64/package.json').version;
|
|
284
|
-
if (bindingPackageVersion !== '0.
|
|
285
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
284
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
285
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
286
286
|
}
|
|
287
287
|
return binding;
|
|
288
288
|
}
|
|
@@ -306,8 +306,8 @@ function requireNative() {
|
|
|
306
306
|
try {
|
|
307
307
|
const binding = require('@lancedb/lancedb-linux-x64-musl');
|
|
308
308
|
const bindingPackageVersion = require('@lancedb/lancedb-linux-x64-musl/package.json').version;
|
|
309
|
-
if (bindingPackageVersion !== '0.
|
|
310
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
309
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
310
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
311
311
|
}
|
|
312
312
|
return binding;
|
|
313
313
|
}
|
|
@@ -325,8 +325,8 @@ function requireNative() {
|
|
|
325
325
|
try {
|
|
326
326
|
const binding = require('@lancedb/lancedb-linux-x64-gnu');
|
|
327
327
|
const bindingPackageVersion = require('@lancedb/lancedb-linux-x64-gnu/package.json').version;
|
|
328
|
-
if (bindingPackageVersion !== '0.
|
|
329
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
328
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
329
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
330
330
|
}
|
|
331
331
|
return binding;
|
|
332
332
|
}
|
|
@@ -346,8 +346,8 @@ function requireNative() {
|
|
|
346
346
|
try {
|
|
347
347
|
const binding = require('@lancedb/lancedb-linux-arm64-musl');
|
|
348
348
|
const bindingPackageVersion = require('@lancedb/lancedb-linux-arm64-musl/package.json').version;
|
|
349
|
-
if (bindingPackageVersion !== '0.
|
|
350
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
349
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
350
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
351
351
|
}
|
|
352
352
|
return binding;
|
|
353
353
|
}
|
|
@@ -365,8 +365,8 @@ function requireNative() {
|
|
|
365
365
|
try {
|
|
366
366
|
const binding = require('@lancedb/lancedb-linux-arm64-gnu');
|
|
367
367
|
const bindingPackageVersion = require('@lancedb/lancedb-linux-arm64-gnu/package.json').version;
|
|
368
|
-
if (bindingPackageVersion !== '0.
|
|
369
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
368
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
369
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
370
370
|
}
|
|
371
371
|
return binding;
|
|
372
372
|
}
|
|
@@ -386,8 +386,8 @@ function requireNative() {
|
|
|
386
386
|
try {
|
|
387
387
|
const binding = require('@lancedb/lancedb-linux-arm-musleabihf');
|
|
388
388
|
const bindingPackageVersion = require('@lancedb/lancedb-linux-arm-musleabihf/package.json').version;
|
|
389
|
-
if (bindingPackageVersion !== '0.
|
|
390
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
389
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
390
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
391
391
|
}
|
|
392
392
|
return binding;
|
|
393
393
|
}
|
|
@@ -405,8 +405,8 @@ function requireNative() {
|
|
|
405
405
|
try {
|
|
406
406
|
const binding = require('@lancedb/lancedb-linux-arm-gnueabihf');
|
|
407
407
|
const bindingPackageVersion = require('@lancedb/lancedb-linux-arm-gnueabihf/package.json').version;
|
|
408
|
-
if (bindingPackageVersion !== '0.
|
|
409
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
408
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
409
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
410
410
|
}
|
|
411
411
|
return binding;
|
|
412
412
|
}
|
|
@@ -426,8 +426,8 @@ function requireNative() {
|
|
|
426
426
|
try {
|
|
427
427
|
const binding = require('@lancedb/lancedb-linux-loong64-musl');
|
|
428
428
|
const bindingPackageVersion = require('@lancedb/lancedb-linux-loong64-musl/package.json').version;
|
|
429
|
-
if (bindingPackageVersion !== '0.
|
|
430
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
429
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
430
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
431
431
|
}
|
|
432
432
|
return binding;
|
|
433
433
|
}
|
|
@@ -445,8 +445,8 @@ function requireNative() {
|
|
|
445
445
|
try {
|
|
446
446
|
const binding = require('@lancedb/lancedb-linux-loong64-gnu');
|
|
447
447
|
const bindingPackageVersion = require('@lancedb/lancedb-linux-loong64-gnu/package.json').version;
|
|
448
|
-
if (bindingPackageVersion !== '0.
|
|
449
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
448
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
449
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
450
450
|
}
|
|
451
451
|
return binding;
|
|
452
452
|
}
|
|
@@ -466,8 +466,8 @@ function requireNative() {
|
|
|
466
466
|
try {
|
|
467
467
|
const binding = require('@lancedb/lancedb-linux-riscv64-musl');
|
|
468
468
|
const bindingPackageVersion = require('@lancedb/lancedb-linux-riscv64-musl/package.json').version;
|
|
469
|
-
if (bindingPackageVersion !== '0.
|
|
470
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
469
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
470
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
471
471
|
}
|
|
472
472
|
return binding;
|
|
473
473
|
}
|
|
@@ -485,8 +485,8 @@ function requireNative() {
|
|
|
485
485
|
try {
|
|
486
486
|
const binding = require('@lancedb/lancedb-linux-riscv64-gnu');
|
|
487
487
|
const bindingPackageVersion = require('@lancedb/lancedb-linux-riscv64-gnu/package.json').version;
|
|
488
|
-
if (bindingPackageVersion !== '0.
|
|
489
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
488
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
489
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
490
490
|
}
|
|
491
491
|
return binding;
|
|
492
492
|
}
|
|
@@ -505,8 +505,8 @@ function requireNative() {
|
|
|
505
505
|
try {
|
|
506
506
|
const binding = require('@lancedb/lancedb-linux-ppc64-gnu');
|
|
507
507
|
const bindingPackageVersion = require('@lancedb/lancedb-linux-ppc64-gnu/package.json').version;
|
|
508
|
-
if (bindingPackageVersion !== '0.
|
|
509
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
508
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
509
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
510
510
|
}
|
|
511
511
|
return binding;
|
|
512
512
|
}
|
|
@@ -524,8 +524,8 @@ function requireNative() {
|
|
|
524
524
|
try {
|
|
525
525
|
const binding = require('@lancedb/lancedb-linux-s390x-gnu');
|
|
526
526
|
const bindingPackageVersion = require('@lancedb/lancedb-linux-s390x-gnu/package.json').version;
|
|
527
|
-
if (bindingPackageVersion !== '0.
|
|
528
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
527
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
528
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
529
529
|
}
|
|
530
530
|
return binding;
|
|
531
531
|
}
|
|
@@ -548,8 +548,8 @@ function requireNative() {
|
|
|
548
548
|
try {
|
|
549
549
|
const binding = require('@lancedb/lancedb-openharmony-arm64');
|
|
550
550
|
const bindingPackageVersion = require('@lancedb/lancedb-openharmony-arm64/package.json').version;
|
|
551
|
-
if (bindingPackageVersion !== '0.
|
|
552
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
551
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
552
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
553
553
|
}
|
|
554
554
|
return binding;
|
|
555
555
|
}
|
|
@@ -567,8 +567,8 @@ function requireNative() {
|
|
|
567
567
|
try {
|
|
568
568
|
const binding = require('@lancedb/lancedb-openharmony-x64');
|
|
569
569
|
const bindingPackageVersion = require('@lancedb/lancedb-openharmony-x64/package.json').version;
|
|
570
|
-
if (bindingPackageVersion !== '0.
|
|
571
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
570
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
571
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
572
572
|
}
|
|
573
573
|
return binding;
|
|
574
574
|
}
|
|
@@ -586,8 +586,8 @@ function requireNative() {
|
|
|
586
586
|
try {
|
|
587
587
|
const binding = require('@lancedb/lancedb-openharmony-arm');
|
|
588
588
|
const bindingPackageVersion = require('@lancedb/lancedb-openharmony-arm/package.json').version;
|
|
589
|
-
if (bindingPackageVersion !== '0.
|
|
590
|
-
throw new Error(`Native binding package version mismatch, expected 0.
|
|
589
|
+
if (bindingPackageVersion !== '0.30.0-beta.1' && process.env.NAPI_RS_ENFORCE_VERSION_CHECK && process.env.NAPI_RS_ENFORCE_VERSION_CHECK !== '0') {
|
|
590
|
+
throw new Error(`Native binding package version mismatch, expected 0.30.0-beta.1 but got ${bindingPackageVersion}. You can reinstall dependencies to fix this issue.`);
|
|
591
591
|
}
|
|
592
592
|
return binding;
|
|
593
593
|
}
|
package/dist/table.d.ts
CHANGED
|
@@ -5,6 +5,32 @@ import { AddColumnsResult, AddColumnsSql, AddResult, AlterColumnsResult, DeleteR
|
|
|
5
5
|
import { FullTextQuery, Query, TakeQuery, VectorQuery } from "./query";
|
|
6
6
|
import { IntoSql } from "./util";
|
|
7
7
|
export { IndexConfig } from "./native";
|
|
8
|
+
/**
|
|
9
|
+
* Progress snapshot for a write operation, delivered to the `progress`
|
|
10
|
+
* callback passed to {@link Table.add}.
|
|
11
|
+
*/
|
|
12
|
+
export interface WriteProgress {
|
|
13
|
+
/** Number of rows written so far. */
|
|
14
|
+
outputRows: number;
|
|
15
|
+
/** Number of bytes written so far. */
|
|
16
|
+
outputBytes: number;
|
|
17
|
+
/**
|
|
18
|
+
* Total rows expected, when the input source reports it.
|
|
19
|
+
*
|
|
20
|
+
* Always set on the final callback (the one with `done: true`), falling
|
|
21
|
+
* back to the actual number of rows written when the source could not
|
|
22
|
+
* report a row count up front.
|
|
23
|
+
*/
|
|
24
|
+
totalRows?: number;
|
|
25
|
+
/** Wall-clock seconds since the write started. */
|
|
26
|
+
elapsedSeconds: number;
|
|
27
|
+
/** Number of parallel write tasks currently in flight. */
|
|
28
|
+
activeTasks: number;
|
|
29
|
+
/** Total number of parallel write tasks (the write parallelism). */
|
|
30
|
+
totalTasks: number;
|
|
31
|
+
/** `true` for the final callback; `false` otherwise. */
|
|
32
|
+
done: boolean;
|
|
33
|
+
}
|
|
8
34
|
/**
|
|
9
35
|
* Options for adding data to a table.
|
|
10
36
|
*/
|
|
@@ -15,6 +41,27 @@ export interface AddDataOptions {
|
|
|
15
41
|
* If "overwrite" then the new data will replace the existing data in the table.
|
|
16
42
|
*/
|
|
17
43
|
mode: "append" | "overwrite";
|
|
44
|
+
/**
|
|
45
|
+
* Optional callback invoked periodically with write progress.
|
|
46
|
+
*
|
|
47
|
+
* The callback is fired once per batch written and once more with
|
|
48
|
+
* `done: true` when the write completes. Calls are dispatched
|
|
49
|
+
* asynchronously to the JS event loop and never block the write — a slow
|
|
50
|
+
* callback will queue events rather than back-pressure the writer.
|
|
51
|
+
*
|
|
52
|
+
* Errors thrown from the callback are logged with `console.warn` and
|
|
53
|
+
* swallowed — they do not abort the write.
|
|
54
|
+
*
|
|
55
|
+
* @example
|
|
56
|
+
* ```ts
|
|
57
|
+
* await table.add(data, {
|
|
58
|
+
* progress: (p) => {
|
|
59
|
+
* console.log(`${p.outputRows}/${p.totalRows ?? "?"} rows`);
|
|
60
|
+
* },
|
|
61
|
+
* });
|
|
62
|
+
* ```
|
|
63
|
+
*/
|
|
64
|
+
progress: (progress: WriteProgress) => void;
|
|
18
65
|
}
|
|
19
66
|
export interface UpdateOptions {
|
|
20
67
|
/**
|
package/dist/table.js
CHANGED
|
@@ -66,7 +66,21 @@ class LocalTable extends Table {
|
|
|
66
66
|
const mode = options?.mode ?? "append";
|
|
67
67
|
const schema = await this.schema();
|
|
68
68
|
const buffer = await (0, arrow_1.fromDataToBuffer)(data, undefined, schema);
|
|
69
|
-
|
|
69
|
+
// Wrap the user callback so a thrown error doesn't surface as an
|
|
70
|
+
// unhandled exception (the callback fires from a napi threadsafe
|
|
71
|
+
// function — exceptions there crash the process).
|
|
72
|
+
const userProgress = options?.progress;
|
|
73
|
+
const progress = userProgress
|
|
74
|
+
? (p) => {
|
|
75
|
+
try {
|
|
76
|
+
userProgress(p);
|
|
77
|
+
}
|
|
78
|
+
catch (e) {
|
|
79
|
+
console.warn("Table.add progress callback threw:", e);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
: undefined;
|
|
83
|
+
return await this.inner.add(buffer, mode, progress);
|
|
70
84
|
}
|
|
71
85
|
async update(optsOrUpdates, options) {
|
|
72
86
|
const isValues = "values" in optsOrUpdates && typeof optsOrUpdates.values !== "string";
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"ann"
|
|
12
12
|
],
|
|
13
13
|
"private": false,
|
|
14
|
-
"version": "0.
|
|
14
|
+
"version": "0.30.0-beta.1",
|
|
15
15
|
"main": "dist/index.js",
|
|
16
16
|
"exports": {
|
|
17
17
|
".": "./dist/index.js",
|
|
@@ -102,13 +102,13 @@
|
|
|
102
102
|
"reflect-metadata": "^0.2.2"
|
|
103
103
|
},
|
|
104
104
|
"optionalDependencies": {
|
|
105
|
-
"@lancedb/lancedb-darwin-arm64": "0.
|
|
106
|
-
"@lancedb/lancedb-linux-x64-gnu": "0.
|
|
107
|
-
"@lancedb/lancedb-linux-arm64-gnu": "0.
|
|
108
|
-
"@lancedb/lancedb-linux-x64-musl": "0.
|
|
109
|
-
"@lancedb/lancedb-linux-arm64-musl": "0.
|
|
110
|
-
"@lancedb/lancedb-win32-x64-msvc": "0.
|
|
111
|
-
"@lancedb/lancedb-win32-arm64-msvc": "0.
|
|
105
|
+
"@lancedb/lancedb-darwin-arm64": "0.30.0-beta.1",
|
|
106
|
+
"@lancedb/lancedb-linux-x64-gnu": "0.30.0-beta.1",
|
|
107
|
+
"@lancedb/lancedb-linux-arm64-gnu": "0.30.0-beta.1",
|
|
108
|
+
"@lancedb/lancedb-linux-x64-musl": "0.30.0-beta.1",
|
|
109
|
+
"@lancedb/lancedb-linux-arm64-musl": "0.30.0-beta.1",
|
|
110
|
+
"@lancedb/lancedb-win32-x64-msvc": "0.30.0-beta.1",
|
|
111
|
+
"@lancedb/lancedb-win32-arm64-msvc": "0.30.0-beta.1"
|
|
112
112
|
},
|
|
113
113
|
"peerDependencies": {
|
|
114
114
|
"apache-arrow": ">=15.0.0 <=18.1.0"
|