stream-processing
Here are 637 public repositories matching this topic...
-
Updated
Nov 17, 2020
-
Updated
Nov 11, 2020 - Java
-
Updated
Nov 17, 2020 - Python
Add NULLIF function
It would be useful if ksqlDB had a NULLIF function, as common across SQL in other platforms.
NULLIF(value1, value2)
The NULLIF function returns NULL if and only if value1 and value2 are equal. Otherwise it returns value1.
-
Updated
Nov 3, 2020
-
Updated
Nov 23, 2020 - Go
Currently, you are not able to use middleware per handler in "clean way" (you can still manually wrap the handler function, or have separated router).
It would be nice to be able to add middleware per handler.
As a good reference point, you can use chi router: https://github.com/go-chi/chi
-
Updated
May 1, 2019 - C
-
Updated
Nov 23, 2020 - C
-
Updated
Oct 6, 2020 - Go
-
Updated
Nov 23, 2020
-
Updated
Aug 14, 2020 - Python
-
Updated
Nov 23, 2020 - Java
It can be very difficult to piece together a reasonably estimate of a history of events from the current workers logs because none of them have timestamps.
So for that end, I think we should add timestamps to the logs.
This has some cons:
- We can't just use
@printflike we have been until now. We need to either include a timestamp in every@printfcall (laborious and error prone) or c
-
Updated
Nov 18, 2020 - Java
Hi, first of all thanks for Hazelcast Jet. It is a really well-engineered product, kudos!
Currently, the official javadoc for the Kafka sources states two different default local parallelism values.
First time:
Second
-
Updated
Sep 25, 2020 - JavaScript
-
Updated
Nov 19, 2020 - Scala
-
Updated
Nov 20, 2020 - Java
-
Updated
Nov 23, 2020 - Java
-
Updated
Mar 29, 2020 - Go
-
Updated
Oct 2, 2020 - TypeScript
-
Updated
Mar 31, 2018
-
Updated
Oct 14, 2020 - Go
-
Updated
Sep 16, 2017 - Go
-
Updated
Nov 17, 2020
-
Updated
Nov 21, 2020 - PHP
Improve this page
Add a description, image, and links to the stream-processing topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the stream-processing topic, visit your repo's landing page and select "manage topics."


Hello, dear Mediapipe guys.
I want to inference the hand pose with Mediapipe model and my own model.
I have my own tf-lite models, it can work on the RGB bitmap.
I try to query the RGB bitmap from input frame with data packet.
My code is