Skip to main content
Skip to main content

hudiCluster Table Function

This is an extension to the hudi table function.

Allows processing files from Apache Hudi tables in Amazon S3 in parallel with many nodes in a specified cluster. On initiator it creates a connection to all nodes in the cluster and dispatches each file dynamically. On the worker node it asks the initiator about the next task to process and processes it. This is repeated until all tasks are finished.

Syntax

Arguments

ArgumentDescription
cluster_nameName of a cluster that is used to build a set of addresses and connection parameters to remote and local servers.
urlBucket url with the path to an existing Hudi table in S3.
aws_access_key_id, aws_secret_access_keyLong-term credentials for the AWS account user. You can use these to authenticate your requests. These parameters are optional. If credentials are not specified, they are used from the ClickHouse configuration. For more information see Using S3 for Data Storage.
formatThe format of the file.
structureStructure of the table. Format 'column1_name column1_type, column2_name column2_type, ...'.
compressionParameter is optional. Supported values: none, gzip/gz, brotli/br, xz/LZMA, zstd/zst. By default, compression will be autodetected by the file extension.

Returned value

A table with the specified structure for reading data from cluster in the specified Hudi table in S3.