abhishekagarwal87 commented on code in PR #14329: URL: https://github.com/apache/druid/pull/14329#discussion_r1255248904
########## docs/ingestion/input-sources.md: ########## @@ -794,6 +794,194 @@ The following is an example of a Combining input source spec: ... ``` +## Iceberg input source + +> You need to include the `druid-iceberg-extensions` as an extension to use the Iceberg input source. + +The Iceberg input source is used to read data stored in the Iceberg table format. For a given table, this input source scans up to the latest iceberg snapshot from the configured Hive catalog and the underlying live data files will be ingested using the existing input source formats available in Druid. + +The Iceberg input source cannot be independent as it relies on the existing input sources to perform the actual read from the Data files. +For example, if the warehouse associated with an iceberg catalog is on `S3`, please ensure that the [`druid-s3-extensions`](../development/extensions-core/s3.md) extension is also loaded. Review Comment: Got it. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
