We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e50d797 commit 33ed974Copy full SHA for 33ed974
README.md
@@ -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