Java 报告任务管理器中的processedWithError是什么意思?

Java 报告任务管理器中的processedWithError是什么意思?,java,druid,Java,Druid,我已经将这个文件摄取到德鲁伊身上了,这很好地说明了摄取是成功的。但是,当我签入摄取报告时,所有行都被错误处理,但数据源显示在“数据源”选项卡中 我已尝试将行数从20M减至20行。这是我的配置文件: "type" : "index", "spec" : { "ioConfig" : { "type" : "index", "firehose" : { "type" : "local", "baseDir" : "/home/dat

我已经将这个文件摄取到德鲁伊身上了,这很好地说明了摄取是成功的。但是,当我签入摄取报告时,所有行都被错误处理,但数据源显示在“数据源”选项卡中

我已尝试将行数从20M减至20行。这是我的配置文件:

"type" : "index",
  "spec" : {
    "ioConfig" : {
      "type" : "index",
      "firehose" : {
        "type" : "local",
        "baseDir" : "/home/data/Salutica",
      "filter" : "outDashboard2RawV3.csv"
      }
    },
    "dataSchema" : {
        "dataSource": "DaTRUE2_Dashboard_V3",
      "granularitySpec" : {
        "type" : "uniform",
        "segmentGranularity" : "WEEK",
        "queryGranularity" : "none",
        "intervals" : ["2017-05-08/2019-05-17"],
        "rollup" : false
      },
      "parser" : {
        "type" : "string",
        "parseSpec": {
          "format" : "csv",
           "timestampSpec" : {
            "column" : "Date_Time",
            "format" : "auto"
         },
        "columns" : [
          "Main_ID","Parameter_ID","Date_Time","Serial_Number","Status","Station_ID",
          "Station_Type","Parameter_Name","Failed_Date_Time","Failed_Measurement",
          "Database_Name","Date_Time_Year","Date_Time_Month",
          "Date_Time_Day","Date_Time_Hour","Date_Time_Weekday","Status_New"
        ],
        "dimensionsSpec" : {
          "dimensions" : [
              "Date_Time","Serial_Number","Status","Station_ID",
              "Station_Type","Parameter_Name","Failed_Date_Time",
              "Failed_Measurement","Database_Name","Status_New",
              {
                  "name" : "Main_ID",
                  "type" : "long"
              },
              {
                  "name" : "Parameter_ID",
                  "type" : "long"
              },
              {
                  "name" : "Date_Time_Year",
                  "type" : "long"
              },
              {
                  "name" : "Date_Time_Month",
                  "type" : "long"
              },
              {
                  "name" : "Date_Time_Day",
                  "type" : "long"
              },
              {
                  "name" : "Date_Time_Hour",
                  "type" : "long"
              },
              {
                  "name" : "Date_Time_Weekday",
                  "type" : "long"
              }
                  ]
           }
        }
      },
      "metricsSpec" : [
        {
          "name" : "count",
          "type" : "count"
        }
      ]
    },
    "tuningConfig" : {
      "type" : "index",
      "partitionsSpec" : {
        "type" : "hashed",
        "targetPartitionSize" : 5000000
      },
      "jobProperties" : {}
    }
  }
}
报告:

{“ingestionStatsAndErrors”:{“taskId”:“index_DaTRUE2_Dashboard_V3_2019-09-10T01:16:47.113Z”,“payload”:{“ingestionState”:“COMPLETED”,“unparseableEvents”:{},“rowStats”:{“DeterminatePartitions”:{“processed”:0,“thrownAway”:0,“Unparseabled”:0,“buildSegments”:{“processed”:0,ProcessedWither:20606701,“thrownAway”:0,“不可解析”:1}},“errorMsg”:null}”,键入“:“ingestionStatsAndErrors”}”

我期待着:

{“processed”:20606701,“processedWithError”:0,“thrownAway”:0,“unparseable”:1}},“errorMsg”:null},键入“:“IngestionStatsanderErrors”}”

与此相反:

{“已处理”:0,processedWithError:20606701,“thrownAway”:0,“不可解析”:1},“errorMsg”:null},键入“:“IngestionStatsanderErrors”}”


下面是我从csv输入的数据

    "Main_ID","Parameter_ID","Date_Time","Serial_Number","Status","Station_ID","Station_Type","Parameter_Name","Failed_Date_Time","Failed_Measurement","Database_Name","Date_Time_Year","Date_Time_Month","Date_Time_Day","Date_Time_Hour","Date_Time_Weekday","Status_New"
1,3,"2018-10-05 15:00:55","1840SDF00038","Passed","ST1","BLTBoard","1.8V","","","DaTRUE2Left",2018,10,5,15,"Friday","Passed"
1,4,"2018-10-05 15:00:55","1840SDF00038","Passed","ST1","BLTBoard","1.35V","","","DaTRUE2Left",2018,10,5,15,"Friday","Passed"
1,5,"2018-10-05 15:00:55","1840SDF00038","Passed","ST1","BLTBoard","Isc_VChrg","","","DaTRUE2Left",2018,10,5,15,"Friday","Passed"
1,6,"2018-10-05 15:00:55","1840SDF00038","Passed","ST1","BLTBoard","Isc_VBAT","","","DaTRUE2Left",2018,10,5,15,"Friday","Passed"

请提供示例输入。