neeraj97 / kafka-connect-github-source

Get a stream of issues and pull requests for your chosen GitHub repositories into Apache Kafka

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kafka Connect Source GitHub

This connector allows you to get a stream of issues and pull requests from GitHub repositories, using the GitHub Api: https://developer.github.com/v3/issues/#list-issues-for-a-repository

Issues are pulled based on updated_at field, meaning any update to an issue or pull request will appear in the stream.

The connector writes to topic that is great candidate to demonstrate log compaction. It's also a fun way to automate your GitHub workflow.

Configuration

name=GitHubSourceConnectorDemo
tasks.max=2
connector.class=com.simplesteph.kafka.GitHubSourceConnector
since.timestamp=2017-01-01T00:00:00Z
#Pattern to be followed for mentioning repositories owner/repo:topic
github.repos=kubernetes/kubernetes:github-issues-kubernetes,apache/kafka:github-issues-kafka
# I heavily recommend you set auth.accesstoken field:
#auth.username=
#auth.password=
auth.accesstoken=your_accestoken

Note: Configuration for github.repos should be set and should follow the pattern owner1/repo1:topic1,owner2/repo2:topic2 ....

You can control the number of tasks to run by using tasks.max. This allows work to be divided among tasks i.e., each task will be assigned few repositories and will fetch issues for those repositories.

Set since.timestamp to fetch the issues of repositories which have been updated after the required timestamp.

Use either auth.username and auth.password or only auth.accesstoken. Using auth.accesstoken is preferable because authentication with username and password has been deprecated and will soon be not supported by Github APIs. For generating the personal accesstoken follow the steps in https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line

Running in development

Note: Java 8 is required for this connector. Make sure config/worker.properties is configured to wherever your kafka cluster is

./build.sh
./run.sh 

The simplest way to run run.sh is to have docker installed. It will pull a Dockerfile and run the connector in standalone mode above it.

Deploying

Note: Java 8 is required for this connector.

Distributed Mode

Build the project using ./build.sh.

Paste the folder target/kafka-connnect-github-source-1.1-package /share/java/kafka-connect-github-source(this folder has all jars of the project) in connect-workers' plugin.path(can be found in the connect-workers' properties) directory. The connect-worker should be able to detect GitHubSourceConnector.

Contributing

This connector can be improved much, please feel free to submit any PR you deem useful.

About

Get a stream of issues and pull requests for your chosen GitHub repositories into Apache Kafka

License:MIT License


Languages

Language:Java 98.1%Language:Shell 1.5%Language:Dockerfile 0.4%