@lancedb/lancedb • Docs
@lancedb/lancedb / Connection
Class: abstract Connection¶
A LanceDB Connection that allows you to open tables and create new ones.
Connection could be local against filesystem or remote against a server.
A Connection is intended to be a long lived object and may hold open resources such as HTTP connection pools. This is generally fine and a single connection should be shared if it is going to be used many times. However, if you are finished with a connection, you may call close to eagerly free these resources. Any call to a Connection method after it has been closed will result in an error.
Closing a connection is optional. Connections will automatically be closed when they are garbage collected.
Any created tables are independent and will continue to work even if the underlying connection has been closed.
Methods¶
cancelJob()¶
Request cancellation of a server-side job by id.
Resolves to true if the server accepted the cancellation, false if no such job exists. Cancelling an already-terminal job is a no-op success.
Parameters¶
- jobId:
string
Returns¶
Promise<boolean>
cloneTable()¶
Clone a table from a source table.
A shallow clone creates a new table that shares the underlying data files with the source table but has its own independent manifest. This allows both the source and cloned tables to evolve independently while initially sharing the same data, deletion, and index files.
Parameters¶
-
targetTableName:
stringThe name of the target table to create. -
sourceUri:
stringThe URI of the source table to clone from. -
options? Clone options.
-
options.isShallow?:
booleanWhether to perform a shallow clone (defaults to true). -
options.sourceTag?:
stringThe tag of the source table to clone. -
options.sourceVersion?:
numberThe version of the source table to clone. -
options.targetNamespacePath?:
string[] The namespace path for the target table (defaults to root namespace).
Returns¶
Promise<Table>
close()¶
Close the connection, releasing any underlying resources.
It is safe to call this method multiple times.
Any attempt to use the connection after it is closed will result in an error.
Returns¶
void
createEmptyTable()¶
createEmptyTable(name, schema, options)¶
Creates a new empty Table
Parameters¶
-
name:
stringThe name of the table. -
schema:
SchemaLikeThe schema of the table -
options?:
Partial<CreateTableOptions> Additional options (backwards compatibility)
Returns¶
Promise<Table>
createEmptyTable(name, schema, namespacePath, options)¶
Creates a new empty Table
Parameters¶
-
name:
stringThe name of the table. -
schema:
SchemaLikeThe schema of the table -
namespacePath?:
string[] The namespace path to create the table in (defaults to root namespace) -
options?:
Partial<CreateTableOptions> Additional options
Returns¶
Promise<Table>
createMaterializedView()¶
Define a materialized view named name over the table source.
The view is created empty, with the query recorded in its schema
metadata; view.refresh() computes the rows. The view is a normal
table: it can be queried, indexed and searched, and it appears in
tableNames. The source table must have stable row ids (create it with
the newTableEnableStableRowIds storage option); they keep the view's
provenance valid across source compactions and cannot be enabled after
a table exists. Local databases only.
Parameters¶
-
name:
string -
source:
string -
options?
-
options.limit?:
number -
options.select?:
MaterializedViewSelect -
options.where?:
string
Returns¶
Promise<MaterializedView>
createNamespace()¶
Create a new namespace at the given path.
Parameters¶
-
namespacePath:
string[] The namespace path to create. -
options?:
Partial<CreateNamespaceOptions> Creationmode("create" | "exist_ok" | "overwrite") and optionalpropertiesto attach to the namespace.
Returns¶
Promise<CreateNamespaceResponse>
The properties of the created namespace and an optional transaction id.
createTable()¶
createTable(options, namespacePath)¶
Creates a new Table and initialize it with new data.
Parameters¶
-
options:
object&Partial<CreateTableOptions> The options object. -
namespacePath?:
string[] The namespace path to create the table in (defaults to root namespace)
Returns¶
Promise<Table>
createTable(name, data, options)¶
Creates a new Table and initialize it with new data.
Parameters¶
-
name:
stringThe name of the table. -
data:
TableLike|Record<string,unknown>[] Non-empty Array of Records to be inserted into the table -
options?:
Partial<CreateTableOptions> Additional options (backwards compatibility)
Returns¶
Promise<Table>
createTable(name, data, namespacePath, options)¶
Creates a new Table and initialize it with new data.
Parameters¶
-
name:
stringThe name of the table. -
data:
TableLike|Record<string,unknown>[] Non-empty Array of Records to be inserted into the table -
namespacePath?:
string[] The namespace path to create the table in (defaults to root namespace) -
options?:
Partial<CreateTableOptions> Additional options
Returns¶
Promise<Table>
describeNamespace()¶
Describe a namespace, returning its properties.
Parameters¶
- namespacePath:
string[] The namespace path to describe, in parent → child order, e.g.["analytics", "sales"].
Returns¶
Promise<DescribeNamespaceResponse>
The namespace's properties (may be undefined if the namespace has none).
display()¶
Return a brief description of the connection
Returns¶
string
dropAllTables()¶
Drop all tables in the database.
Parameters¶
- namespacePath?:
string[] The namespace path to drop tables from (defaults to root namespace).
Returns¶
Promise<void>
dropNamespace()¶
Drop a namespace.
Use behavior: "cascade" to also drop everything contained in the
namespace (sub-namespaces and tables). The default "restrict"
behavior refuses to drop a non-empty namespace.
Parameters¶
-
namespacePath:
string[] The namespace path to drop. -
options?:
Partial<DropNamespaceOptions>mode("skip" | "fail" for missing-namespace handling) andbehavior("restrict" | "cascade").
Returns¶
Promise<DropNamespaceResponse>
Any properties returned by the server and an optional transaction id.
dropTable()¶
Drop an existing table.
Parameters¶
-
name:
stringThe name of the table to drop. -
namespacePath?:
string[] The namespace path of the table (defaults to root namespace).
Returns¶
Promise<void>
dropTableAsync()¶
Start dropping a table and return its cleanup job.
The table may become unavailable before its data files are removed. Wait on the returned job to know when cleanup has finished.
Parameters¶
-
name:
string -
namespacePath?:
string[]
Returns¶
Promise<Job>
getJob()¶
Describe a single server-side job by id.
Resolves to null when the server has no such job.
Parameters¶
- jobId:
string
Returns¶
Promise<null | JobDescription>
isOpen()¶
Return true if the connection has not been closed
Returns¶
boolean
job()¶
A Job handle for a server-side job by id.
The handle is constructed without a server round trip; an unknown id surfaces when the handle is used. Dropping the handle has no effect on the job itself.
Parameters¶
- jobId:
string
Returns¶
jobHistory()¶
The lifecycle event history of a server-side job, as an Arrow table.
Lists history across all jobs when jobId is omitted.
Parameters¶
- jobId?:
string
Returns¶
Promise<Table<any>>
listJobs()¶
List server-side jobs across the database's tables.
Returns¶
Promise<JobInfo[]>
listMaterializedViews()¶
The names of the materialized views in this database.
Found by reading every table's schema, so this costs an open per table.
Returns¶
Promise<string[]>
listNamespaces()¶
List the immediate child namespaces under the given parent.
Results may be paginated. To retrieve subsequent pages, pass the
pageToken returned by a previous call.
Parameters¶
-
namespacePath?:
string[] The parent namespace path. Defaults to the root namespace if omitted. -
options?:
Partial<ListNamespacesOptions> Pagination options (pageToken,limit).
Returns¶
Promise<ListNamespacesResponse>
Child namespace names and an optional token for fetching the next page.
listTables()¶
listTables(options)¶
List a page of the tables in this database.
To retrieve the tables after the page, pass the pageToken the response
carries back in. A page can be shorter than limit without being the last
one, so walk until a response carries no page token:
const names = [];
let pageToken = undefined;
do {
const page = await conn.listTables({ pageToken, limit: 100 });
names.push(...page.tables);
pageToken = page.pageToken;
} while (pageToken);
Parameters¶
- options?:
Partial<ListTablesOptions> Pagination options (pageToken,limit).
Returns¶
Promise<ListTablesResponse>
A page of table names and an optional token for the tables after it.
listTables(namespacePath, options)¶
List a page of the tables in this database.
Parameters¶
-
namespacePath?:
string[] The namespace path to list tables from (defaults to root namespace) -
options?:
Partial<ListTablesOptions> Pagination options (pageToken,limit).
Returns¶
Promise<ListTablesResponse>
A page of table names and an optional token for the tables after it.
openMaterializedView()¶
Open the materialized view named name.
Rejects a table that exists but is not a materialized view.
Parameters¶
- name:
string
Returns¶
Promise<MaterializedView>
openTable()¶
Parameters¶
-
name:
string -
namespacePath?:
string[] -
options?:
Partial<OpenTableOptions>
Returns¶
Promise<Table>
renameTable()¶
Rename a table.
Currently only supported by LanceDB Cloud. Local OSS connections and namespace-backed connections (via connectNamespace) reject with a "not supported" error.
Parameters¶
-
currentName:
stringThe current name of the table. -
newName:
stringThe new name for the table. -
options?:
RenameTableOptionsOptional namespace paths. WhennewNamespacePathis omitted the table stays innamespacePath.
Returns¶
Promise<void>
tableNames()¶
tableNames(options)¶
List all the table names in this database.
Tables will be returned in lexicographical order.
Parameters¶
- options?:
Partial<TableNamesOptions> options to control the paging / start point (backwards compatibility)
Returns¶
Promise<string[]>
Deprecated¶
Use Connection.listTables instead.
tableNames(namespacePath, options)¶
List all the table names in this database.
Tables will be returned in lexicographical order.
Parameters¶
-
namespacePath?:
string[] The namespace path to list tables from (defaults to root namespace) -
options?:
Partial<TableNamesOptions> options to control the paging / start point
Returns¶
Promise<string[]>
Deprecated¶
Use Connection.listTables instead.