Important
Helios features are now enabled during weekly update windows and are no longer directly tied to SingleStore engine releases. Refer to the release notes to view the latest features available in your Helios cluster.
INFER PIPELINE
On this page
Creates a DDL definition for a pipeline and a target table based on input files.CREATE PIPELINE statement that can be reviewed, edited, and subsequently used to create the required pipeline.
Syntax
INFER PIPELINE AS LOAD DATA {input_configuration}[FORMAT [CSV | JSON | AVRO | PARQUET | ICEBERG]][AS JSON]
Remarks
-
The
input_specifies configuration for loading files from Apache Kafka, Amazon S3, a local filesystem, Microsoft Azure, HDFS, and Google Cloud Storage.configuration Refer to CREATE PIPELINEfor more information on configuration specifications. -
All options supported by
CREATE PIPELINEare supported byINFER PIPELINE. -
CSV, JSON, Avro, Parquet , and Iceberg formats are supported.
-
The default format is CSV.
-
TEXTandENUMtypes useutf8mb4charset andutf8mb4_collation by default.bin -
The
AS JSONkeyword is used to produce pipeline and table definitions in JSON format. -
For
LOAD DATA CONNECTORsources,INFER PIPELINEgenerates aCREATE TABLEand matchingCREATE PIPELINEstatement based on the connector's schema. -
When the connector is recognized,
INFER PIPELINEappends connector-specific fields to the generatedCONFIG.This is currently implemented only for KinesisSourceConnector, which adds:-
"kafka.: Kinesis emits into a single topic; this field is not user-relevant but the connector requires it.topic": "s2-kinesis" -
"output.: Disables the topic field in the output document.topic": "false"
-
-
INFER PIPELINEforFORMAT JSONoperates only on first-level fields of the connector's output.To ingest sub-fields (for example, value::data), edit the generated DDL manually or use an output mode to project the payload. -
INFER PIPELINEforFORMAT AVROderives column names from Avro record leaf nodes.If two leaves share a name, the generated column name uses the full path joined by ".(for example," key.).partitionKey -
CREATE INFERRED PIPELINEdoes not supportIF NOT EXISTSon the generated table.If you drop the pipeline and re-run INFER PIPELINEfor a pipeline with the same name, the secondCREATE TABLEfails withER_.TABLE_ EXISTS_ ERROR Drop the table manually, or use CREATE PIPELINE(notINFERRED) when the table already exists.
Note
If the encoding of the source CSV file is not utf8mb4, multi-byte characters in the source file may be replaced with their corresponding single byte counterparts in the inferred table.
To change the encoding of the source CSV file to utf8mb4 on a linux machine, run the following commands:
-
Determine the current encoding of the CSV file.
file -i input.csv -
Convert the file data into
utf8mb4encoded data.iconv -f <input-encoding> -t UTF-8 input.csv -o output.csv
Run the INFER PIPELINE query on the output. file to get the correct inference.
Example
The following example demonstrates how to use the INFER PIPELINE command to infer the schema of a Avro-formatted file in an AWS S3 bucket.
This example uses data that conforms to the schema of the books table, as shown in the following.
{"namespace": "books.avro",
"type": "record",
"name": "Book",
"fields": [
{"name": "id", "type": "int"},
{"name": "name", "type": "string"},
{"name": "num_pages", "type": "int"},
{"name": "rating", "type": "double"},
{"name": "publish_timestamp", "type": "long",
"logicalType": "timestamp-micros"} ]}Refer to Generate an Avro File for an example of generating an Avro file that conforms to this schema.
The following example generates a table and pipeline definition by scanning the specified Avro file and inferring the schema from selected rows.
INFER PIPELINE AS LOAD DATA S3's3://data_folder/books.avro'CONFIG '{"region":"<region_name>"}'CREDENTIALS '{"aws_access_key_id":"<your_access_key_id>","aws_secret_access_key":"<your_secret_access_key>","aws_session_token":"<your_session_token>"}'FORMAT AVRO;
"CREATE TABLE `infer_example_table` (
`id` int(11) NOT NULL,
`name` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`num_pages` int(11) NOT NULL,
`rating` double NULL,
`publish_date` bigint(20) NOT NULL);
CREATE PIPELINE `infer_example_pipeline`
AS LOAD DATA S3 's3://data-folder/books.avro'
CONFIG '{\""region\"":\""us-west-2\""}'
CREDENTIALS '{\n \""aws_access_key_id\"":\""your_access_key_id\"",
\n \""aws_secret_access_key\"":\""your_secret_access_key\"",
\n \""aws_session_token\"":\""your_session_token\""}'
BATCH_INTERVAL 2500
DISABLE OUT_OF_ORDER OPTIMIZATION
DISABLE OFFSETS METADATA GC
INTO TABLE `infer_example_table`
FORMAT AVRO(
`id` <- `id`,
`name` <- `name`,
`num_pages` <- `num_pages`,
`rating` <- `rating`,
`publish_date` <- `publish_date`);"Refer to Schema and Pipeline Inference - Examples for more examples.
The following example uses INFER PIPELINE to generate a table and pipeline for an Amazon Kinesis stream.CONFIG includes the connector-specific fields described in Remarks.
CREATE INFERRED PIPELINE kinesis_ordersAS LOAD DATA CONNECTOR 'KinesisSourceConnector'CONFIG '{"kinesis.stream": "orders-stream","kinesis.region": "us-east-1","tasks.max": "3"}'CREDENTIALS '{"aws.access.key.id": "<ACCESS_KEY>","aws.secret.access.key": "<SECRET_KEY>"}';
The command produces a CREATE TABLE matching the connector's output schema and a CREATE PIPELINE statement whose CONFIG includes the appended fields:
{"kafka.topic": "s2-kinesis","kinesis.stream": "orders-stream","kinesis.region": "us-east-1","tasks.max": "3","output.topic": "false"}
For more information on FORMAT, output modes, and column mapping, refer to Connector Pipelines.
Last modified: