havannavar commented on issue #7519: 0.14-incubation: Coordinator failed to 
start because of the CDI BeanManager is not available. JAX-RS CDI support is 
disabled 
URL: 
https://github.com/apache/incubator-druid/issues/7519#issuecomment-485620637
 
 
   Thanks @jon-wei for your response
   
   Below is my datasource spec
   
   ```
   {
     "type": "kafka",
     "dataSchema": {
       "dataSource": "event_datasource",
       "parser": {
         "type": "string",
         "parseSpec": {
           "format": "json",
           "timestampSpec": {
             "column": "time",
             "format": "auto"
           },
           "dimensionsSpec": {
             "dimensions": [],
             "dimensionExclusions": [
               "timestamp",
               "value"
             ]
           }
         }
       },
       "metricsSpec" : [
         {
           "name": "count",
           "type": "count"
         },
         {
           "name": "value_sum",
           "fieldName": "value",
           "type": "doubleSum"
         },
         {
           "name": "value_min",
           "fieldName": "value",
           "type": "doubleMin"
         },
         {
           "name": "value_max",
           "fieldName": "value",
           "type": "doubleMax"
         }
       ],
       "granularitySpec": {
         "type": "uniform",
         "segmentGranularity": "HOUR",
         "queryGranularity": "NONE",
         "rollup": false
       }
     },
     "tuningConfig": {
       "type": "kafka",
       "reportParseExceptions": false
     },
     "ioConfig": {
       "topic": "event_traffic",
       "replicas": 1,
       "taskDuration": "PT10M",
       "completionTimeout": "PT20M",
       "consumerProperties": {
         "bootstrap.servers": "<ip1>:<port1>,<ip2>:<port2>,<ip3>:<port3>"
       }
     }
   }
   
   ```
   
   This is the task report after creating datasource and after ingesting 
message/data via Kafka-ingestion
   ```
   {
        "ingestionStatsAndErrors": {
                "taskId": 
"index_kafka_event_datasource_25c11ef7d533a4b_ofconddn",
                "payload": {
                        "ingestionState": "COMPLETED",
                        "unparseableEvents": {},
                        "rowStats": {
                                "buildSegments": {
                                        "processed": 0,
                                        "processedWithError": 0,
                                        "thrownAway": 0,
                                        "unparseable": 5
                                }
                        },
                        "errorMsg": null
                },
                "type": "ingestionStatsAndErrors"
        }
   }
   ```
   
   A complete log file of the same.
   
[index-logfile.log](https://github.com/apache/incubator-druid/files/3105534/index-logfile.log)
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to