DESCRIBE PIPE Enterprise
Get high-level information about the settings and configuration of a specific autoingest pipe. Dremio displays the column headers that indicate the type of information listed in the row of results. This command only applies to Apache Iceberg tables.
SyntaxDESCRIBE PIPE <pipe_name>
Parameters
<pipe_name> String
The unique name of the pipe that you are describing.
Example
Describe a pipeDESCRIBE PIPE Example_pipe
pipe_name | pipe_id | source_path | target_table | target_branch | dedup_lookback_period_days | file_format | format_options | copy_options | pipe_status | error_message | created_at | last_updated_at | created_by | last_updated_by | notification_provider | notification_queue_ref |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
test_pipe | 525ffe04-97bb-473e-8e76-fa559faa7d0d | @s3/ingestion-test | s3."ingestion-test".pipe_sink_table | main | 14 | CSV | {"DATE_FORMAT":"YYYY-MM-DD\"T\"HH24:MI:SS.FFF","RECORD_DELIMITER":"\n","FIELD_DELIMITER":","} | {"ON_ERROR":"SKIP_FILE"} | STOPPED_STORAGE_LOCATION_ALTERED | Resource not found at path @s3/ingestion-test | 2024-08-05T13:39:41.167Z | 2024-08-05T13:39:41.167Z | dremio | dremio | AWS_SQS | arn:aws:sqs:us-west-2:123243142826:data_ingestion_queue |
Columns
Column | Data Type | Description |
---|---|---|
pipe_name | varchar | The name of the autoingest pipe. |
pipe_id | varchar | The unique identifier of the autoingest pipe. |
source_path | varchar | The preconfigured source path specified in the CREATE PIPE command. |
target_table | varchar | The name of the target Iceberg table. |
target_branch | varchar | The name of the target branch if Nessie was used as a catalog. |
dedup_lookback_period_days | integer | The number of days that Dremio looks back when comparing newly uploaded files to previously loaded files for file deduplication. |
file_format | varchar | The file format associated with the pipe. |
format_options | varchar | The specific file format options that are used in the COPY INTO statement when the pipe is triggered. |
copy_options | varchar | The COPY INTO options used during autoingestion. |
pipe_status | varchar | The state of the pipe. Enum:
|
error_message | varchar | The last error message for a pipe job that did not complete successfully. |
created_at | timestamp | The date and time at which the pipe was created. |
last_updated_at | timestamp | The date and time of the last modification to the pipe definition. |
created_by | varchar | The user who created the pipe. |
last_updated_by | varchar | The user who last updated the pipe definition. |
notification_provider | varchar | The provider of the event notification queue. Enum: AWS_SQS . |
notification_queue_ref | varchar | The unique identifier of the event notification queue. |