Is it possible to join a trident stream with itself? My particular use case is that I want to take the cross product of all the incoming tuples for a batch and then only keep the joined tuples containing a known value.
I believe the SQL for what I am trying to accomplish is: SELECT * FROM table AS t1 JOIN table AS t2 ON field1 WHERE t1.field2 = "known value"; My intention was to do a self join on my stream and then run the now joined stream through a filter. Thanks, Charles -- PhD Candidate; University Fellow University of Louisiana at Lafayette Center for Advanced Computer Studies http://charlesledoux.com
