You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ideally, in the highlighted part I wish I could access the [a_list, b_list] emitted by validate_bolt and the value_for_combine emitted by data_spout in my combine_bolt. However, in the process(self, tup) function of CombineBolt, the tup.values only contains the tuple emitted by data_spout. (When I print out tup.values, it writes Data_Spoutto_validateTuple(to_validate=...) ) How could I access the tuple emitted by ValidationBolt?
The text was updated successfully, but these errors were encountered:
My topology in short is as follows:
Ideally, in the highlighted part I wish I could access the
[a_list, b_list]
emitted byvalidate_bolt
and thevalue_for_combine
emitted bydata_spout
in mycombine_bolt
. However, in theprocess(self, tup)
function ofCombineBolt
, thetup.values
only contains the tuple emitted bydata_spout
. (When I print outtup.values
, it writes Data_Spoutto_validateTuple(to_validate=...) ) How could I access the tuple emitted byValidationBolt
?The text was updated successfully, but these errors were encountered: