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:
Gaurav Kumar 2016-04-17 00:04:54 +05:30 committed by Fangjin Yang
parent c1e690288c
commit f5822faca3
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ For example, using Avro Hadoop parser with custom reader's schema file:
"parser" : { "parser" : {
"type" : "avro_hadoop", "type" : "avro_hadoop",
"parseSpec" : { "parseSpec" : {
"type": "timeAndDims", "format": "timeAndDims",
"timestampSpec": <standard timestampSpec>, "timestampSpec": <standard timestampSpec>,
"dimensionsSpec": <standard dimensionsSpec> "dimensionsSpec": <standard dimensionsSpec>
} }