SYS.PROJECT.PIPE_SUMMARY Preview
The sys.project.pipe_summary
table summarizes high-level statistics for autoingest pipes. Each row in the table represents a single pipe and its historical metadata.
SELECT * FROM sys.project.pipe_summary
Example Output
pipe_name | pipe_id | jobs_count | files_loaded_count | files_skipped_count | files_partially_loaded_count | pipe_status | error_message | last_updated_at | total_records_count |
---|---|---|---|---|---|---|---|---|---|
test_pipe | f0336bf3-f082-4c89-9753-7dcf66ce2472 | 10 | 100 | 2 | 0 | RUNNING | empty text | 2024-07-08 22:07:42.995 | 100150 |
Columns
Column Name | Data Type | Description |
---|---|---|
pipe_name | varchar | The name of the pipe. |
pipe_id | varchar | The unique identifier of the pipe. |
jobs_count | integer | The number of jobs completed for autoingestion related to this pipe. |
files_loaded_count | integer | The number of files loaded successfully. |
files_skipped_count | integer | The number of files skipped completely due to validation errors. |
files_partially_loaded_count | integer | The number of files partially loaded. |
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. Reasons include:
|
last_updated_at | timestamp | The date and time at which the pipe state changed, which should default to the pipe creation time. |
total_records_count | integer | The number of records processed by the pipe. |