JohnB
JohnB

Reputation: 11

Apache Storm Topology using Flux YAML file

I am designing an Apache Storm topology using a Flux YAML topology definition file. The trouble is I don't see how to :-

  1. Create a stream that sends to multiple bolts (the syntax seems to only include one 'to:' line).
  2. Emit multiple named streams from a single bolt. This is perfectly legal in Apache Storm. I am concerned that the Stream 'name:' line is declared as 'optional - not used' and hence Flux does not seem to support this feature of Storm ?

Upvotes: 1

Views: 544

Answers (1)

Guido
Guido

Reputation: 47695

  1. Each destination needs to be listed as a separate stream as they have individual grouping definitions.
  2. I don't think that's possible with Flux (0.10.0) yet.

Upvotes: 0

Related Questions