MinIO
MinIO is a lightweight S3-compliant object-store. Although it has many nice features, here we focus only on local deployment, which is very useful if you wish to quickly test your TileDB-S3 programs locally. See the MinIO quickstart guide for installation instructions. Here is what we do to run MinIO on port 9999
:
Once you get MinIO server running, you need to set the S3 configurations as follows (below, <port>
stands for the port on which you are running the MinIO server, equal to 9999
if you run the MinIO docker as shown above):
Parameter
Value
"vfs.s3.scheme"
"http"
"vfs.s3.region"
""
"vfs.s3.endpoint_override"
"localhost:<port>"
"vfs.s3.use_virtual_addressing"
"false"
The Configuration page explains in detail how to set configuration parameters in TileDB. Below is a quick example for the minio specific parameters.
Last updated