Questions tagged [ksqldb]

ksqlDB: an event streaming database for Apache Kafka.

ksqlDB is a source-available event streaming database for Apache Kafka® developed by Confluent. It is distributed, scalable, reliable, and real-time. ksqlDB combines the power of real-time stream processing with the approachable feel of a relational database through a familiar, lightweight SQL syntax.

You can download ksqlDB at https://github.com/confluentinc/ksql

There is a quickstart at: https://ksqldb.io/quickstart.html

926 questions
-1
votes
1 answer

KSQL left join giving 'null' result even when data is present

I'm learning K-SQL/KSQL-DB and currently exploring joins. Below is the issue where I'm stuck. I have 1 stream 'DRIVERSTREAMREPARTITIONEDKEYED' and one table 'COUNTRIES', below is their description. ksql> describe…
-1
votes
1 answer

Apache Kafka Streams API vs KSQL

I'm want to learn about the differences between the two methods. I developed a project so It aggregates some data using Apache Kafka Streams API. And after that, I got on some solutions which are written with KSQL. I've never got experienced with…
Kadir Alan
  • 209
  • 1
  • 13
-1
votes
1 answer

How to download Kafka in VM

I am trying to setup Kafka in vm (EC2 instance). I am trying to download with wget. But it is not downloading just not giving any error but downloading completed in just 2 seconds. If I check in folder (using ls) I am seeing like…
Sun
  • 3,444
  • 7
  • 53
  • 83
-1
votes
2 answers

KSQLDB StandAlone Deployment Returns Error "Connection could not be established. Broker may not be available"

broker/docker-compose.yml --- version: '2' services: zookeeper: image: confluentinc/cp-zookeeper:6.0.1 hostname: zookeeper container_name: zookeeper ports: - "2181:2181" environment: ZOOKEEPER_CLIENT_PORT: 2181 …
-1
votes
2 answers

Install Confluent Platform inside docker Ubuntu container on Windows 10

I am trying to install Confluent Platform on my Windows machine. As far as I know, installing Confluent Platform will give me access to KSQL which is not available in Apache Kafka package. The other hurdle is : KSQL can't run on windows directly, it…
Praveenks
  • 1,436
  • 9
  • 40
  • 79
-1
votes
1 answer

Can Kafka KSQL be used for real-time stream aggregations in a large IoT scenario

I'm trying to understand KSQL and whether it has the appropriate performance characteristics for our use case. Use Case Given Thousands of IoT connected devices sending telemetry data, have a service that aggregates, ranks and sorts that data into…
MonkeyBonkey
  • 46,433
  • 78
  • 254
  • 460
-1
votes
1 answer

kafka stream to ktable join

I am trying to join a KStream: created from a topic, the topic has JSON value. I re-key the stream using two attributed from the value. example value (snippet of the json). I created a custom pojo class and use a custom…
bp82
  • 49
  • 1
  • 5
-1
votes
1 answer

KSQL Submitting multiple queries and keep it running

I am planning to use KSQL for stream processing. I have following requirements. Once query is set up I want to grab that output from query and send it as JSON to RabbitMQ. I have multiple users who will be creating criterias for query and I will be…
Ocean
  • 655
  • 2
  • 8
  • 21
-2
votes
2 answers

Need to convert the SQL Query to Gorm query

I have this SQL query Select CONCAT(kafka_user_stream.FirstName,' ', kafka_user_stream.LastName) AS "Full Name", kafka_user_stream.UID AS "User ID", kafka_user_stream.CountryCode AS "Country", kafka_user_stream.CreatedAt AS "Registration Date &…
-3
votes
1 answer

KSQL ( Confluent ) VS Hive Kafka SQL ( Hortanworks )

What are the difference ? which one is better ? when to use ? Hive Kafka SQL KSQL
-3
votes
1 answer

how to create different tables from a single topic in KSQL?

I have a Kafka topic which has customer, purchase, product etc data. I want to create different streams from this single topic.
P Singh
  • 51
  • 7
1 2 3
61
62