mirror of https://github.com/apache/druid.git
Handle case when ignoreInvalidRows is null (#6420)
This commit is contained in:
parent
c7ac8785a1
commit
868ebfaca0
|
@ -152,11 +152,11 @@ public class HadoopTuningConfig implements TuningConfig
|
|||
this.allowedHadoopPrefix = allowedHadoopPrefix == null ? ImmutableList.of() : allowedHadoopPrefix;
|
||||
|
||||
|
||||
this.ignoreInvalidRows = ignoreInvalidRows;
|
||||
this.ignoreInvalidRows = ignoreInvalidRows == null ? false : ignoreInvalidRows;
|
||||
if (maxParseExceptions != null) {
|
||||
this.maxParseExceptions = maxParseExceptions;
|
||||
} else {
|
||||
if (ignoreInvalidRows == null || !ignoreInvalidRows) {
|
||||
if (!this.ignoreInvalidRows) {
|
||||
this.maxParseExceptions = 0;
|
||||
} else {
|
||||
this.maxParseExceptions = TuningConfig.DEFAULT_MAX_PARSE_EXCEPTIONS;
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
"parser": {
|
||||
"type": "string",
|
||||
"parseSpec": {
|
||||
"type": "tsv",
|
||||
"format": "tsv",
|
||||
"timestampSpec": {
|
||||
"column": "timestamp",
|
||||
"format": "yyyyMMddHH"
|
||||
|
|
Loading…
Reference in New Issue