Salva Alcántara
Salva Alcántara
Sounds good @johnynek ... I might be able to help if you point me on the right direction (don't promise anything, though).
FYI, I posted the same question in https://stackoverflow.com/questions/60529065/how-to-write-a-kryo-serializer-for-siddhiappruntime.
Also, as an aside note, I think it should be possible to recover the full siddhi app code (as a string) from the runtime object, what do you guys think...
As an update, this is the best thing I have come up with so far: ```scala import com.esotericsoftware.kryo.io.{Input, Output} import com.esotericsoftware.kryo.{Kryo, Serializer} import io.siddhi.core.{SiddhiAppRuntime => SiddhiRuntime} // A simple wrapper...
@niveathika Is this something affecting only Siddhi-io-http or would be the same in general for any siddhi application runtime? Also, on a related note, what would be the recommended way...
Probably related to #1610, where I ask how to implement them using the current pattern queries. There might be a way of writing those patterns by somehow chaining different pattern...
@xtrmstep Thanks for your reply. Indeed I am not sure whether this can be accomplished in the general case. Any thoughts on this @mohanvive ?
@mohanvive @suhothayan Is there any sort of a timeline for this? If you think I can help with something, just let me know.
In #1461 and #1610, some workarounds were given for rewriting queries involving multiple unordered events (in the meantime support for them is added)...but after checking with the simple pattern `A...
@mohanvive There are basically two workarounds that have worked for me so far: 1. Generating all the permutation patterns as discussed in #1610 (and along the lines of the `match_recognize`...