@lancedb/lancedb β’ Docs
@lancedb/lancedb / CreateTableOptions
Interface: CreateTableOptions
Properties
dataStorageVersion?
The version of the data storage format to use.
The default is stable
.
Set to "legacy" to use the old format.
embeddingFunction?
enableV2ManifestPaths?
Use the new V2 manifest paths. These paths provide more efficient opening of datasets with many versions on object stores. WARNING: turning this on will make the dataset unreadable for older versions of LanceDB (prior to 0.10.0). To migrate an existing dataset, instead use the LocalTable#migrateManifestPathsV2 method.
existOk
If this is true and the table already exists and the mode is "create" then no error will be raised.
mode
The mode to use when creating the table.
If this is set to "create" and the table already exists then either an error will be thrown or, if existOk is true, then nothing will happen. Any provided data will be ignored.
If this is set to "overwrite" then any existing table will be replaced.
schema?
storageOptions?
Configuration for object storage.
Options already set on the connection will be inherited by the table, but can be overridden here.
The available options are described at https://lancedb.github.io/lancedb/guides/storage/
useLegacyFormat?
If true then data files will be written with the legacy format
The default is false.
Deprecated. Use data storage version instead.