Skip to content
This repository was archived by the owner on Jan 3, 2023. It is now read-only.

Create a TileDB workspace

Karthik Gururaj edited this page Aug 25, 2016 · 3 revisions

A TileDB workspace must be created before importing any data into a TileDB array - please refer to the terminology page to find out what a workspace means.

Creating a workspace

./bin/create_tiledb_workspace <workspace_dir>

The above command will create a workspace if the <workspace_directory> does not exist. If <workspace_directory>
exists, then the directory is not touched/modified.

We recommend running the above command on each node sequentially before importing any data. This ensures that the workspace directory gets created in a consistent manner before any data gets imported into TileDB arrays.

Clone this wiki locally