kcat icon indicating copy to clipboard operation
kcat copied to clipboard

Do we have support of kafkacat on windows ?

Open gaurav04 opened this issue 6 years ago • 12 comments

I want to install kafkacat on windows. I am not able to install because i dont found any documentation for the setup.

gaurav04 avatar Jul 28 '17 10:07 gaurav04

In Windows 10, you could use WSL or any other Windows, Cygwin to get a Linux shell

There is the win32 folder here, though, but not sure about its usage

OneCricketeer avatar Aug 07 '17 12:08 OneCricketeer

You should be able to build a exe with Visual Studio using the solution in win32.

We will provide an installer some time in the distant future.

Den 7 aug 2017 14:32 skrev "Jordan Moore" [email protected]:

In Windows 10, you could use WSL or any other Windows, Cygwin to get a Linux shell

There is the win32 folder here, though, but not sure about its usage

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/edenhill/kafkacat/issues/112#issuecomment-320650928, or mute the thread https://github.com/notifications/unsubscribe-auth/AAgCvrmj_vhDohe3_AR6199LRVqKrBSPks5sVwPTgaJpZM4Omd4h .

edenhill avatar Aug 07 '17 12:08 edenhill

@edenhill has this been created yet? I was looking into downloading it through Win10 Ubuntu shell but unable to locate librdkafka-dev libyajl-dev, which was provided under docs.

izzyzizou avatar Aug 24 '18 01:08 izzyzizou

You could try this exe file: https://ci.appveyor.com/project/edenhill/kafkacat/builds/23675338/artifacts

edenhill avatar Apr 08 '19 10:04 edenhill

Is the exe meant to be a statically linked build ?

image

jorgheymans avatar Jun 20 '19 11:06 jorgheymans

Is there any kafkacat for Windows 64 bit system? Please help

Pabi171 avatar Nov 01 '19 17:11 Pabi171

in windows 10 with WSL2

just open wsl

 sudo apt-get install kafkacat

jaimevale avatar Jul 29 '20 20:07 jaimevale

Is there any kafkacat for Windows 64 bit system? Please help

in windows 10 with WSL2

just open wsl

 sudo apt-get install kafkacat

I have installed in wsl and it install version 1.3.1 any hint to install 1.6? or is only dockerized?

cesarfong avatar Sep 23 '20 01:09 cesarfong

If you provide a documentation on how to build it on windows why not adding a windows build to the build pipeline and provide an downloadable executable? It's quiet inconvenient if every windows user have to do this by their own, since they just want to use it.

This ticket is open for more than 3 years now :-/

https://github.com/edenhill/kafkacat#build-for-windows

jens-meiss avatar Dec 11 '20 13:12 jens-meiss

I'd very much appreciate a contribution that adds Windows builds.

edenhill avatar Dec 11 '20 14:12 edenhill

I have been able to build it without many issues using Visual Studio 2019 (v16.8.4).

What I did is:

  • Retarget the solution to Win10
  • Update to SDK 142
  • Fix a minor issue preventing the code to be compiled

My work is available here on this fork: https://github.com/BEagle1984/kafkacat

I don't know if somebody want to have a look at it and if it's worth merging it back in here.

BEagle1984 avatar Jan 26 '21 08:01 BEagle1984

I also had to retarget the solution and update to SDK 142 and to enable the -G feature I had to change a couple of files:

  • https://github.com/ChrisBerna/kcat/commit/2056092b10064153f50d75d2cfda1d22d85e2822

ChrisBerna avatar Aug 27 '21 16:08 ChrisBerna