2

I was just wondering if it is possible to run KSQL on windows machine. I downloaded from https://www.confluent.io/product/ksql/ and not sure how to set up and run.

Thanks MR

user2726975
  • 1,285
  • 3
  • 17
  • 26

1 Answers1

2

Your best bet is to run it under Docker. You can find the images on Docker Hub, and there are Docker Compose files to bring up the full stack as required.

Robin Moffatt
  • 30,382
  • 3
  • 65
  • 92
  • I did download on ksql on docker. Was able to successfully run some simple commands. Is it possible to create stream from a file that has many json records on windows machine? I am also using .NET stack – user2726975 Jan 17 '19 at 18:19
  • @user2726975 The Confluent .NET Kafka client can produce JSON, yes. Whether or not from a file – OneCricketeer Jan 17 '19 at 20:11