Skip to content

@lancedb/lancedbDocs


@lancedb/lancedb / DirNamespaceConfig

Interface: DirNamespaceConfig

Configuration for the built-in directory namespace ("dir").

The directory namespace stores tables under a single root path (local filesystem or object storage URI). See https://docs.lancedb.com/namespaces for the documented surface; less-common knobs live under DirNamespaceConfig.extraProperties.

Properties

extraProperties?

optional extraProperties: Record<string, string>;

Additional raw properties passed verbatim to the namespace implementation (e.g. storage.*, credential_vendor.*). Typed fields above take precedence on key collision.


manifestEnabled?

optional manifestEnabled: boolean;

Whether to maintain a namespace manifest at the root. Required for child namespaces. Defaults to true on the impl side.


root

root: string;

Root path or URI containing the LanceDB tables.