mirror of https://github.com/apache/druid.git
Fixed wrong parseSpec in Avro Hadoop Parser (#2846)
`parseSpec` should contain `format` instead of `type`. It was wrongly defaulting to `tsv`
This commit is contained in:
parent
c1e690288c
commit
f5822faca3
|
@ -90,7 +90,7 @@ For example, using Avro Hadoop parser with custom reader's schema file:
|
|||
"parser" : {
|
||||
"type" : "avro_hadoop",
|
||||
"parseSpec" : {
|
||||
"type": "timeAndDims",
|
||||
"format": "timeAndDims",
|
||||
"timestampSpec": <standard timestampSpec>,
|
||||
"dimensionsSpec": <standard dimensionsSpec>
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue