Hi there,
Looking at the examples online, it seems that this extension works in a sort of mini batches way, meaning that it first waits for the pipes to finish loading and just then emits the partial computed result.
Is it possible to use this extension as an actual streaming engine, meaning that results are emitted after every new incoming row, or on multiple rows when using a window? To do so one need an incremental implementation of all primitive expressions such as distinct, count, etc.
Is this within the scope of this library and if so, where to find the list of supported incremental operators? And also, how are stream/stream and table/stream joins handled?
Hi there,
Looking at the examples online, it seems that this extension works in a sort of mini batches way, meaning that it first waits for the pipes to finish loading and just then emits the partial computed result.
Is it possible to use this extension as an actual streaming engine, meaning that results are emitted after every new incoming row, or on multiple rows when using a window? To do so one need an incremental implementation of all primitive expressions such as distinct, count, etc.
Is this within the scope of this library and if so, where to find the list of supported incremental operators? And also, how are stream/stream and table/stream joins handled?