Hi all, are running ingestion tasks with the httpFirehose. (druid 0.15)
The task appears to run correctly, based on a ‘cron’ calling:
http://uswest2-prod-druid-master-001:8090/druid/indexer/v1/task/task_id/status/
Also Checking the UI it also shows success.
What is odd to us, is that we continue to see requests form druid to that end http endpoint in specified in the fire hose!
We would think that once the task has completed, showing SUCCESS or FAILED, it would no longer send requests to that end point?
Any thoughts on what is going on here?
Example Task payload:
{
“type”: “index_parallel”,
“id”: “pipe-sds-to-file-1568741400000.json”,
“resource”: {
“availabilityGroup”: “pipe-sds-to-file-1568741400000.json”,
“requiredCapacity”: 1
},
“spec”: {
“dataSchema”: {
“dataSource”: “test-messages1”,
“parser”: {
“type”: “string”,
“parseSpec”: {
“format”: “json”,
“timestampSpec”: {
“column”: “acceptTs”,
“format”: “iso”
},
“dimensionsSpec”: {
“dimensions”: ,
“dimensionExclusions”: ,
“spatialDimensions”:
}
}
},
“metricsSpec”: ,
“granularitySpec”: {
“type”: “uniform”,
“segmentGranularity”: “FIFTEEN_MINUTE”,
“queryGranularity”: {
“type”: “none”
},
“rollup”: false,
“intervals”: null
},
“transformSpec”: {
“filter”: null,
“transforms”:
}
},
“ioConfig”: {
“type”: “index_parallel”,
“firehose”: {
“type”: “http”,
“uris”: [
“http://dps.openmarket.com/pipe-sds-to-file-1568741400000.json”
],
“maxCacheCapacityBytes”: 1073741824,
“maxFetchCapacityBytes”: 1073741824,
“prefetchTriggerBytes”: 536870912,
“fetchTimeout”: 900000,
“maxFetchRetry”: 3,
“httpAuthenticationUsername”: null,
“httpAuthenticationPassword”: null
},
“appendToExisting”: false
},
“tuningConfig”: {
“type”: “index_parallel”,
“maxRowsPerSegment”: null,
“maxRowsInMemory”: 1000000,
“maxBytesInMemory”: 0,
“maxTotalRows”: null,
“numShards”: null,
“indexSpec”: {
“bitmap”: {
“type”: “concise”
},
“dimensionCompression”: “lz4”,
“metricCompression”: “lz4”,
“longEncoding”: “longs”
},
“maxPendingPersists”: 0,
“forceGuaranteedRollup”: false,
“reportParseExceptions”: true,
“pushTimeout”: 0,
“segmentWriteOutMediumFactory”: null,
“maxNumSubTasks”: 1,
“maxRetry”: 3,
“taskStatusCheckPeriodMs”: 1000,
“chatHandlerTimeout”: “PT10S”,
“chatHandlerNumRetries”: 5,
“logParseExceptions”: true,
“maxParseExceptions”: 0,
“maxSavedParseExceptions”: 1,
“partitionDimensions”: ,
“buildV9Directly”: true
}
},
“context”: {},
“groupId”: “pipe-sds-to-file-1568741400000.json”,
“dataSource”: “test-messages1”
}
``