connect_to_apache_iceberg
Establish a Timeplus database in Iceberg format to integrate with Iceberg data, enabling connection to specified S3 buckets and AWS regions.
Instructions
Create a Timeplus database in iceberg type to connect to Iceberg
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aws_account_id | Yes | ||
aws_region | No | us-west-2 | |
iceberg_db | Yes | ||
is_s3_table_bucket | No | ||
s3_bucket | Yes |
Input Schema (JSON Schema)
{
"properties": {
"aws_account_id": {
"title": "Aws Account Id",
"type": "integer"
},
"aws_region": {
"default": "us-west-2",
"title": "Aws Region",
"type": "string"
},
"iceberg_db": {
"title": "Iceberg Db",
"type": "string"
},
"is_s3_table_bucket": {
"default": false,
"title": "Is S3 Table Bucket",
"type": "boolean"
},
"s3_bucket": {
"title": "S3 Bucket",
"type": "string"
}
},
"required": [
"iceberg_db",
"aws_account_id",
"s3_bucket"
],
"title": "connect_to_apache_icebergArguments",
"type": "object"
}