From 45f12de9ad5113f614a9b0f738d341a2d4fd5152 Mon Sep 17 00:00:00 2001 From: Jihoon Son Date: Thu, 28 Feb 2019 19:44:45 -0800 Subject: [PATCH] Fix supported file formats for Hadoop vs Native batch doc (#7069) * Fix supported file formats * address comment --- docs/content/ingestion/hadoop-vs-native-batch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/ingestion/hadoop-vs-native-batch.md b/docs/content/ingestion/hadoop-vs-native-batch.md index ce2c97e603b..89a8e022a9a 100644 --- a/docs/content/ingestion/hadoop-vs-native-batch.md +++ b/docs/content/ingestion/hadoop-vs-native-batch.md @@ -38,6 +38,6 @@ ingestion method. | Supported [rollup modes](http://druid.io/docs/latest/ingestion/index.html#roll-up-modes) | Perfect rollup | Best-effort rollup | Both perfect and best-effort rollup | | Supported partitioning methods | [Both Hash-based and range partitioning](http://druid.io/docs/latest/ingestion/hadoop.html#partitioning-specification) | N/A | Hash-based partitioning (when `forceGuaranteedRollup` = true) | | Supported input locations | All locations accessible via HDFS client or Druid dataSource | All implemented [firehoses](./firehose.html) | All implemented [firehoses](./firehose.html) | -| Supported file formats | All implemented Hadoop InputFormats | Currently only text file format (CSV, TSV, JSON) | Currently only text file format (CSV, TSV, JSON) | +| Supported file formats | All implemented Hadoop InputFormats | Currently text file formats (CSV, TSV, JSON) by default. Additional formats can be added though a [custom extension](../development/modules.html) implementing [`FiniteFirehoseFactory`](https://github.com/apache/incubator-druid/blob/master/core/src/main/java/org/apache/druid/data/input/FiniteFirehoseFactory.java) | Currently text file formats (CSV, TSV, JSON) by default. Additional formats can be added though a [custom extension](../development/modules.html) implementing [`FiniteFirehoseFactory`](https://github.com/apache/incubator-druid/blob/master/core/src/main/java/org/apache/druid/data/input/FiniteFirehoseFactory.java) | | Saving parse exceptions in ingestion report | Currently not supported | Currently not supported | Supported | | Custom segment version | Supported, but this is NOT recommended | N/A | N/A |