You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: kafka-connect-neo4j/docker/readme.adoc
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,16 @@ Create a directory `plugins` at the same level of the compose file and unzip the
12
12
13
13
docker-compose up -d
14
14
15
+
You can access your Neo4j instance under: http://localhost:7474, log in with `neo4j` as username and `connect` as password (see the docker-compose file to change it).
16
+
17
+
The insertion is sped up, if you create these two indexes:
18
+
19
+
[source,cypher]
20
+
----
21
+
CREATE INDEX ON :Person(surname);
22
+
CREATE CONSTRAINT ON (f:Family) ASSERT f.name IS UNIQUE;
23
+
----
24
+
15
25
Create the Sink instance:
16
26
17
27
We'll define the Sink configuration as follows:
@@ -72,6 +82,8 @@ Please check that everything is fine by going into:
72
82
73
83
http://localhost:9021/management/connect
74
84
85
+
(or on 0.0.0.0 instead of localhost depending on your Docker environment)
86
+
75
87
and click to the **Sink** tab. You must find a table just like this:
0 commit comments