{question}
How do I create an unlimited ("bottomless") database in a SingleStore cluster within Kubernetes?
{question}
{answer}
Unlimited storage databases (also known as "bottomless" databases) are explained in detail in our documentation.
Commands like
CREATE DATABASE ... ON S3 ...
and
RESTORE DATABASE ... FROM S3 ... ON S3 ...
require the user to have the SUPER permission. This can be the root user or another user that has been granted the SUPER permission.
If you encounter the following error message:
Managed service users cannot specify a blob store bucket to use with bottomless storage.
this can indicate that a user is trying to execute an unlimited storage database command without the required SUPER permission.
{answer}