Skip to content

Commit 24f592c

Browse files
mnd999HunternessJPryce-Aklundh
authored
Further deprecations to options in CREATE DATABASE (#1083)
* Deprecate seedCredentials and seedConfig options without a (language) replacement. * Deprecate standard and high_limit store formats - [x] Still waiting on information from cluster as to how to do seeding from buckets now. Depends on: neo4j/docs-operations#1909 --------- Co-authored-by: Therese Magnusson <[email protected]> Co-authored-by: Jens Pryce-Åklundh <[email protected]>
1 parent d30abc0 commit 24f592c

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,30 @@ a|
126126
The column `propertyTypes` currently returned by the procedures link:{neo4j-docs-base-uri}/operations-manual/{page-version}/procedures/#procedure_db_schema_nodetypeproperties[`db.schema.nodeTypeProperties()`] and link:{neo4j-docs-base-uri}/operations-manual/{page-version}/procedures/#procedure_db_schema_reltypeproperties[`db.schema.relTypeProperties()`] produces a list of strings representing the potential Java types for a given property.
127127
In an upcoming major release of Neo4j, this will be updated to represent the possible Cypher types for that property instead.
128128
For all available Cypher types, see the section on xref::values-and-types/property-structural-constructed.adoc#types-synonyms[types and their synonyms].
129+
130+
a|
131+
label:functionality[]
132+
label:deprecated[]
133+
[source, cypher, role="noheader"]
134+
----
135+
CREATE DATABASE db OPTIONS { seedCredentials: ..., seedConfig: ... }
136+
----
137+
| The `CREATE DATABASE` option `seedCredentials` has been deprecated.
138+
For seeding from cloud storage, it is recommended to use `CloudSeedProvider` which will read cloud credentials and configuration from standard locations.
139+
For further information, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/clustering/databases/#cloud-seed-provider[Managing databases in a cluster -> CloudSeedProvider].
140+
141+
a|
142+
label:functionality[]
143+
label:deprecated[]
144+
[source, cypher, role="noheader"]
145+
----
146+
CREATE DATABASE db OPTIONS { storeFormat: 'standard' }
147+
148+
CREATE DATABASE db OPTIONS { storeFormat: 'high_limit' }
149+
----
150+
| The `standard` and `high_limit` store formats have been deprecated.
151+
Creating databases with these formats is therefore also deprecated.
152+
For more information on the deprecation of these formats, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-internals/store-formats/#format-deprecations[Store formats -> Format deprecations].
129153
|===
130154

131155

0 commit comments

Comments
 (0)