Skip to content

Commit c6e5c13

Browse files
committed
2 parents c6f37dd + 33ed974 commit c6e5c13

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Kafka Connect Unix Socket Source
2+
The connector is used to write data to Kafka from a Unix Socket.
3+
4+
# Building
5+
You can build the connector with Maven using the standard lifecycle phases:
6+
```
7+
mvn clean
8+
mvn package
9+
```
10+
11+
# Sample Configuration
12+
``` ini
13+
name=unix-socket-connector
14+
connector.class=uk.cl.cam.ac.uk.cadets.UnixSocketSourceConnector
15+
tasks.max=1
16+
topics=topic_name
17+
schema.name=socketschema
18+
pathname=socket_name
19+
batch.size=1
20+
```

0 commit comments

Comments
 (0)