Comment on page
Create Arrays
To create an array you will need to use TileDB Embedded. After you create the array, if you would like to make it "visible" to TileDB Cloud, you need to register the array in a subsequent step. However, TileDB Embedded allows you to create and register the array in a single step, with a very simple change in the way you would otherwise create the array:
- Instead of using
<array-uri>
as you would typically in TileDB Embedded, you must usetiledb://<username>/<array-uri>
. For example, if you wish to create an array ats3://my_bucket/my_array
, you need to set the array URI totiledb://my_username/s3://my_bucket/my_array
and TileDB Embedded will instruct TileDB Cloud to automatically register the array astiledb://my_username/my_array
.
Last modified 1yr ago