James Xu created STORM-66:
-----------------------------
Summary: taskId not sent to spout on initial handshake
Key: STORM-66
URL: https://issues.apache.org/jira/browse/STORM-66
Project: Apache Storm (Incubating)
Issue Type: Improvement
Reporter: James Xu
https://github.com/nathanmarz/storm/issues/645
Contrary to the multilang protocol specification, storm does not send the
taskId of the spout as part of the topology context.
What is expected:
"context": {
"task->component": {
"1": "example-spout",
"2": "__acker",
"3": "example-bolt"
},
"taskid": 3
},
What was provided:
"context":{
"task->component":{
"1":"__acker",
"2":"filter",
"3":"filter",
"4":"spout",
"5":"spout",
"6":"test"}
}
As is apparent, the taskId is not provided.
--
This message was sent by Atlassian JIRA
(v6.1.4#6159)