Skip to main content

Hudi Connector Introduction

GeaFlow Hudi currently supports reading data from files.

Syntax

CREATE TABLE IF NOT EXISTS hudi_person (
id BIGINT,
name VARCHAR
) WITH (
type='hudi',
geaflow.file.persistent.config.json = '{\'fs.defaultFS\':\'namenode:9000\'}',
geaflow.dsl.file.path='/path/to/hudi_person'
);

Options

KeyRequiredDescription
geaflow.dsl.file.pathtrueThe path of the file or folder to read from or write to.
geaflow.file.persistent.config.jsonfalseJSON-formatted DFS configuration, which will override the system environment configuration.

Example

set geaflow.dsl.window.size = -1;

CREATE TABLE IF NOT EXISTS hudi_person (
id BIGINT,
name VARCHAR
) WITH (
type='hudi',
`geaflow.file.persistent.config.json` = '{\'fs.defaultFS\':\'namenode:9000\'}',
geaflow.dsl.file.path='/path/to/hudi_person'
);

CREATE TABLE IF NOT EXISTS hudi_sink (
id BIGINT,
name VARCHAR
) WITH (
type='hudi',
`geaflow.file.persistent.config.json` = '{\'fs.defaultFS\':\'namenode:9000\'}',
geaflow.dsl.file.path='/path/to/hudi_sink'
);

INSERT INTO hudi_sink
SELECT * FROM hudi_person;