Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1692 a209d99eb -> 4a2a7282f (forced update)
Added upgrade notes Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/4a2a7282 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/4a2a7282 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/4a2a7282 Branch: refs/heads/TINKERPOP-1692 Commit: 4a2a7282f4fb9d85b2b8978928411f37ad04d8f9 Parents: 6789163 Author: Robert Dale <[email protected]> Authored: Sun Sep 3 02:22:41 2017 -0400 Committer: Robert Dale <[email protected]> Committed: Sun Sep 3 02:22:41 2017 -0400 ---------------------------------------------------------------------- CHANGELOG.asciidoc | 3 +++ .../reference/implementations-neo4j.asciidoc | 16 ++++++------ docs/src/upgrade/release-3.3.x.asciidoc | 26 ++++++++++++++++++++ .../conf/neo4j-standalone.properties | 6 +++-- gremlin-server/conf/neo4j-empty.properties | 6 +++-- 5 files changed, 45 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/4a2a7282/CHANGELOG.asciidoc ---------------------------------------------------------------------- diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 5a2f88d..2c66d9e 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -28,6 +28,9 @@ TinkerPop 3.3.1 (Release Date: NOT OFFICIALLY RELEASED YET) This release also includes changes from <<release-3-2-7, 3.2.7>>. +* Bumped Neo4j 3.2.3 + + [[release-3-3-0]] TinkerPop 3.3.0 (Release Date: August 21, 2017) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/4a2a7282/docs/src/reference/implementations-neo4j.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/reference/implementations-neo4j.asciidoc b/docs/src/reference/implementations-neo4j.asciidoc index 362bc0d..4def261 100644 --- a/docs/src/reference/implementations-neo4j.asciidoc +++ b/docs/src/reference/implementations-neo4j.asciidoc @@ -256,8 +256,8 @@ graph.close() gremlin.graph=org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jGraph gremlin.neo4j.directory=/tmp/neo4j -gremlin.neo4j.conf.node_auto_indexing=true -gremlin.neo4j.conf.relationship_auto_indexing=true +gremlin.neo4j.conf.dbms.auto_index.nodes.enabled=true +gremlin.neo4j.conf.dbms.auto_index.relationships.enabled=true ---- High Availability Configuration @@ -283,8 +283,8 @@ gremlin.graph=org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jGraph gremlin.neo4j.directory=/tmp/neo4j.server1 gremlin.neo4j.conf.ha.server_id=1 gremlin.neo4j.conf.ha.initial_hosts=localhost:5001\,localhost:5002\,localhost:5003 -gremlin.neo4j.conf.ha.cluster_server=localhost:5001 -gremlin.neo4j.conf.ha.server=localhost:6001 +gremlin.neo4j.conf.ha.host.coordination=localhost:5001 +gremlin.neo4j.conf.ha.host.data=localhost:6001 ---- Assuming the intent is to configure this cluster completely within TinkerPop (perhaps within three separate Gremlin @@ -296,8 +296,8 @@ gremlin.graph=org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jGraph gremlin.neo4j.directory=/tmp/neo4j.server2 gremlin.neo4j.conf.ha.server_id=2 gremlin.neo4j.conf.ha.initial_hosts=localhost:5001\,localhost:5002\,localhost:5003 -gremlin.neo4j.conf.ha.cluster_server=localhost:5002 -gremlin.neo4j.conf.ha.server=localhost:6002 +gremlin.neo4j.conf.ha.host.coordination=localhost:5002 +gremlin.neo4j.conf.ha.host.data=localhost:6002 ---- and the third will be: @@ -308,8 +308,8 @@ gremlin.graph=org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jGraph gremlin.neo4j.directory=/tmp/neo4j.server3 gremlin.neo4j.conf.ha.server_id=3 gremlin.neo4j.conf.ha.initial_hosts=localhost:5001\,localhost:5002\,localhost:5003 -gremlin.neo4j.conf.ha.cluster_server=localhost:5003 -gremlin.neo4j.conf.ha.server=localhost:6003 +gremlin.neo4j.conf.ha.host.coordination=localhost:5003 +gremlin.neo4j.conf.ha.host.data=localhost:6003 ---- IMPORTANT: The backslashes in the values provided to `gremlin.neo4j.conf.ha.initial_hosts` prevent that configuration http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/4a2a7282/docs/src/upgrade/release-3.3.x.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/upgrade/release-3.3.x.asciidoc b/docs/src/upgrade/release-3.3.x.asciidoc index bc41534..0ef237f 100644 --- a/docs/src/upgrade/release-3.3.x.asciidoc +++ b/docs/src/upgrade/release-3.3.x.asciidoc @@ -22,6 +22,32 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima *Gremlin Symphony #40 in G Minor* +TinkerPop 3.3.1 +--------------- + +*Release Date: NOT OFFICIALLY RELEASED YET* + +Please see the link:https://github.com/apache/tinkerpop/blob/3.3.1/CHANGELOG.asciidoc#release-3-3-1[changelog] for a complete list of all the modifications that are part of this release. + +Upgrading for Users +~~~~~~~~~~~~~~~~~~~ + +Upgrade Neo4j +^^^^^^^^^^^^^ + +See Neo4j's link:https://neo4j.com/guides/upgrade/[3.2 Upgrade FAQ] for a complete guide on how to upgrade from the previous 2.3.3 version. Also note that many of the configuration settings ave link:https://neo4j.com/developer/kb/manually-migrating-configuration-settings-from-neo4j-2x-to-neo4j-3x/[changed from neo4j 2x to 3x] + +In particular, these properties referenced in TinkerPop documentation and configuration were renamed: + +|========================================================= +|old (2.3) |new (3.3) +|node_auto_indexing |dbms.auto_index.nodes.enabled +|relationship_auto_indexing |dbms.auto_index.relationships.enabled +|ha.cluster_server |ha.host.coordination +|ha.server |ha.host.data +|========================================================= + + TinkerPop 3.3.0 --------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/4a2a7282/gremlin-console/conf/neo4j-standalone.properties ---------------------------------------------------------------------- diff --git a/gremlin-console/conf/neo4j-standalone.properties b/gremlin-console/conf/neo4j-standalone.properties index 0822711..11922bf 100644 --- a/gremlin-console/conf/neo4j-standalone.properties +++ b/gremlin-console/conf/neo4j-standalone.properties @@ -18,5 +18,7 @@ gremlin.graph=org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jGraph gremlin.neo4j.directory=/tmp/neo4j -gremlin.neo4j.conf.node_auto_indexing=true -gremlin.neo4j.conf.relationship_auto_indexing=true +gremlin.neo4j.conf.dbms.auto_index.nodes.enabled=true +#gremlin.neo4j.conf.dbms.auto_index.nodes.keys= +gremlin.neo4j.conf.dbms.auto_index.relationships.enabled=true +#gremlin.neo4j.conf.dbms.auto_index.relationships.keys= http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/4a2a7282/gremlin-server/conf/neo4j-empty.properties ---------------------------------------------------------------------- diff --git a/gremlin-server/conf/neo4j-empty.properties b/gremlin-server/conf/neo4j-empty.properties index 0ea551b..5d7f58e 100644 --- a/gremlin-server/conf/neo4j-empty.properties +++ b/gremlin-server/conf/neo4j-empty.properties @@ -29,5 +29,7 @@ gremlin.graph=org.apache.tinkerpop.gremlin.neo4j.structure.Neo4jGraph gremlin.neo4j.directory=/tmp/neo4j -gremlin.neo4j.conf.node_auto_indexing=true -gremlin.neo4j.conf.relationship_auto_indexing=true \ No newline at end of file +gremlin.neo4j.conf.dbms.auto_index.nodes.enabled=true +#gremlin.neo4j.conf.dbms.auto_index.nodes.keys= +gremlin.neo4j.conf.dbms.auto_index.relationships.enabled=true +#gremlin.neo4j.conf.dbms.auto_index.relationships.keys=
