namespace as a path and can use it for table resolution when you use LanceDB outside the root namespace.
Table operations with namespace paths
Let’s imagine a scenario where your table management needs have evolved, and you now have the following multi-level structure to organize your tables outside the root namespace.["prod", "search"]) represents a level in the namespace hierarchy, and the table name is
specified when you create, open, or drop it.
Using namespaces is optional in LanceDB, and most basic use cases do not require to work with them.
An empty namespace (
[]), which is the default, means “root namespace”, and the data will be stored in
the data/ directory under the specified root path.Namespace management APIs
You can open/create/drop tables inside a namespace path (like["prod", "search"]).
The Python and Rust SDKs expose namespace lifecycle operations directly.
In Python, use lancedb.connect_namespace(...) when calling namespace lifecycle methods such as
create_namespace, list_namespaces, describe_namespace, and drop_namespace.
In Rust, use lancedb::connect_namespace(...) and call create_namespace, list_namespaces,
and drop_namespace.
In TypeScript, namespace lifecycle and namespace-scoped table operations are not currently exposed on
Connection. In practice, namespaces in TypeScript are managed through a namespace-aware admin surface (for example REST/admin tooling), and the Connection APIs operate at the root namespace.Namespaces in LanceDB Enterprise
In LanceDB Enterprise deployments, configure namespace-backed federated databases in a TOML file under your deployment’sconfig directory.
LanceDB Enterprise supports both directory-based (ns_impl = "dir") and REST-based (ns_impl = "rest") namespace implementations.
The example below shows how to configure a directory-based namespace implementation in LanceDB Enterprise.
"rest" with forwarding prefixed headers
for authentication and context propagation.
forward_header_prefixes = ["X-forward"], any incoming header starting with X-forward is forwarded to
http://<your_org>.internal.catalog.com. This is useful for auth propagation, for example sending
X-forward-authorization: Bearer xxxx.