Closed tbs575 closed 1 year ago
I have two table streams one is
another is
try to join two tables stream with following flux
join.left( left: leftdata, right: rightdata, on: (l, r) => l.source_ip == r.source_ip, as: (l, r) => ({C: r.source_country}), )
but can not get anything, should be retrun country information, is there problem? thanks
try playing with grouping the tables before joining them. I rememeber there was something in the docs about the need of grouping
This issue has had no recent activity and will be closed soon.
I have two table streams one is
another is
try to join two tables stream with following flux
but can not get anything, should be retrun country information, is there problem? thanks