I love the push queries (called continuous queries in Apache Flink) of Apache ksqlDB. https://developer.confluent.io/learn-kafka/ksqldb/push-queries-and-pull-queries/ It allows to get notified via HTTP2 of a new result of a query whenever the result set (or the data) changes. That is awesome.
How could we force Apache Pulsar resp. Pulsar SQL to send push-queries? Or is there a similar approach on how to pump query results to a service endpoint (and then further to a client via http2 or websockets).
I don't want to run queries, if there is no data change. Thus, polling is not an option.