mirror of https://github.com/apache/druid.git
Corrected documentation for IngestSegmentFirehose
Ingest Segment firehose had incorrect documentation.
This commit is contained in:
parent
1bad66c16d
commit
4a23cd94ef
|
@ -50,9 +50,7 @@ A sample ingest firehose spec is shown below -
|
||||||
{
|
{
|
||||||
"type" : "ingestSegment",
|
"type" : "ingestSegment",
|
||||||
"dataSource" : "wikipedia",
|
"dataSource" : "wikipedia",
|
||||||
"interval" : "2013-01-01/2013-01-02",
|
"interval" : "2013-01-01/2013-01-02"
|
||||||
"dimensions":[],
|
|
||||||
"metrics":[]
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -61,8 +59,8 @@ A sample ingest firehose spec is shown below -
|
||||||
|type|ingestSegment. Type of firehose|yes|
|
|type|ingestSegment. Type of firehose|yes|
|
||||||
|dataSource|A String defining the data source to fetch rows from, very similar to a table in a relational database|yes|
|
|dataSource|A String defining the data source to fetch rows from, very similar to a table in a relational database|yes|
|
||||||
|interval|A String representing ISO-8601 Interval. This defines the time range to fetch the data over.|yes|
|
|interval|A String representing ISO-8601 Interval. This defines the time range to fetch the data over.|yes|
|
||||||
|dimensions|The list of dimensions to select. If left empty, all dimensions are selected.|no|
|
|dimensions|The list of dimensions to select. If left empty, no dimensions are returned. If left null or not defined, all dimensions are returned. |no|
|
||||||
|metrics|The list of metrics to select. If left empty, all metrics are returned.|no|
|
|metrics|The list of metrics to select. If left empty, no metrics are returned. If left null or not defined, all metrics are selected.|no|
|
||||||
|filter| See [Filters](Filters.html)|yes|
|
|filter| See [Filters](Filters.html)|yes|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue