-
Hello,
I am using Groovy, which has nice groovy.sql.Sql. I would like to use it with ksql and therefore I have installed your jdbc...
This is my simple code:
import groovy.sql.Sql
class GroSan…
JirHr updated
3 years ago
-
![image](https://user-images.githubusercontent.com/37230683/126758037-9b1a04a7-b3ec-45c0-af58-f6c424a43ac2.png)
-
## Description
**Registry
Version**: 2.5.8.Final
**Persistence type**: kafkasql
We're trying to use our Kafka cluster as a persistence backend. Login to the cluster requires SASL/PLAIN via SSL…
-
Please take this as constructive, but I think it would help if you included links to documentation on your answers as there seems to be a number of inaccuracies in the ksql questions. Some examples I…
-
Since not everyone uses Kafka Connect & KSQL in their setup, I suggest to:
- Add parameters `connect.enable` and `ksql.enable` to the `application.properties` config (default:`true` for both)
- Hide…
-
I am trying to sink our KSQL streams into BigTable. We have a relatively complex JSON schema (nested arrays and objects). We can use the big query connector from Wepay to sink into big query.
Havi…
-
Do we need to call out the dependency on `bash`? For example, this doesn't work in `fish`:
```
$ statements=$(< src/statements.sql) && \
echo '{"ksql":"'$statements'", "streamsProperties":…
rmoff updated
5 years ago
-
KSQL currently lets you take a non-windowed stream and perform a windowed group by:
```sql
CREATE TABLE T as SELECT stuff FROM S WINDOW TUMBLING (SIZE 1 SECOND) group by something;
```
Which i…
-
The KSQL FAQ contains an example of setting the message retention of KSQL-created topics ( https://docs.confluent.io/current/ksql/docs/faq.html#how-do-i-set-the-retention-period-for-streams-created-fo…
-
This is my first issue, so sorry if i missed something.
I have encountered an issue when reading data from a stream using a PULL Query (im new to KSQL sorry if the problem is actually the query)
…