...
Note: If you completely new to eclipse, this "follow on screen instructions from here onwards", is usually, few clicks on 'Next', a click on 'Finish', a click on 'OK' and a click on 'Yes' when asked to restart your eclipse.
3. Get the Kafka Source Code :
In eclipse,
Window > Perspective > Open Perspective > Other > Git > Open.
Click on 'Clone a Git repository'.
URI: https://github.com/<your github username>/kafka.git
Host: github.com
Repository Path: /<your github username>/kafka.git
Enter your github user name and password.
Check 'store in secure store'.
Click Next.
Select a branch, the latest is 0.8.2.
Pick all or pick one, it is your choice.
Usually, there should be a default 'master' branch, which is missing in this repo.
Click Next.
Choose local directory where you want to clone the sources.
Directory: ~/MySources/kafka
Initial Branch: 0.8.2 or the one you picked in previous step
Check, Import all existing eclipse projects after clone finishes
Ideally, gradle plugin, if exists, should run eclipse task and import the projects into your workspace. For now, it is differed until 'Build Model' step.
Click Finish.
Link to Upstream Apache Kafka repo :
...