When creating a dataset, you must specify a region — this determines where your data is physically stored.
Once set, a dataset’s region cannot be changed. See available regions.
CLI
Python SDK
JavaScript SDK
topk dataset create my-dataset --region aws-us-east-1-elastica# (Optional) Dataset description can be also specified:topk dataset create my-dataset --region aws-us-east-1-elastica --description "My dataset"
client.datasets().create("my-docs")# (Optional) Dataset description can be also specified:client.datasets().create("my-docs", description="My dataset")
await client.datasets().create("my-docs");// (Optional) Dataset description can be also specified:await client.datasets().create("my-docs", "My dataset");