James Terwilliger
James Terwilliger
We have plans to do so, yes. We almost delayed going OSS until we had one, but decided in the end it was better to go public sourcing sooner rather...
I had a conversation with a colleague, and I think this is something we will definitely do. We're going to ponder a path of execution over the course of the...
A few answers: Q: Will the `IQStreamable` and `IStreamable` APIs match? A: Yes - the question is whether `IQStreamable` matches `IStreamable` in its current form or if we use IQStreamable...
The "partitioned" versions of the operators that you see in the code has to do with a feature called Partitioned Streams. If you ingress data as PartitionedStreamEvents or specify a...
I'm going to write a longer response to cover more of the above, but I wanted to say one thing quickly. Just because your input events are not start-end edge...
Curious the behavior you are seeing about windows not resetting to 0 - we're not seeing that behavior. If you have a repro for that that is small, please let...
I'm looking at our code for QueryContainer and the Publish method - I'm thinking it's not going to work in its current form because QueryContainer needs to know all of...
Also, as your data is pre-sorted, you may be able to benefit from a faster ingress method. Instead of a Subject you can instead create a Subject. It's a little...
ClipEventDuration will indeed do the trick for you, but the method "Sessionize" is a convenient macro method that you may want to use that could give you a simpler way...
Hello! As with all things .Net memory management, the answer tends to come down to "maybe?" The general guidance we give is to start with struct. The logic behind it...