How to use apache storm tuple
I just began with Apache Storm. I read the tutorial and had a look into examples My problem is that all example work with very simple tuples (often one filed with a string). The tuples are created inline (using new Values(...)). In my case i have tuples with many fields (5..100). So my question is how to implement such tuple with name and type (all primitive) for each field? Are there any examples? (i think directly implementing "Tuple" isn't a good idea) thanks An alternative to creating the tuple with all of the fields as a value is to just create a bean and pass that inside the tuple. Given