The create command sets up a new cluster that is ready to join members.

JSON Input Data Format
{
    "name": string,
    "lake": string,
    "bucket": string,
    "policy": string
}
name * Specifies a name for the cluster.
lake * Specifies the datalake engine and the open table format to be initialized. Possible values are:
  • Delta - for Delta Lake Engine
  • Hudi - for Hudi Lake Engine
  • Iceberg - for Iceberg Lake Engine
bucket * Specifies the bucket ID of the S3 storage, which can be either an Object Storage bucket or a Magna bucket.
policy * Specifies the S3 access policy for this cluster.
* Indicates a mandatory field.

Code Snippets
Here are several code snippets provided for your direct use. Simply select your preferred tool/language by clicking on it.


Successful Response
{
    "result": "OK",
    "payload": "The process was successfully completed",
    "id": "V7-49ff499f-xxxx-xxxx-xxxx-b47fxxxx99af"
}

Failed Response
{
    "result": "ERR",
    "message": "Error message ..."
}