Skip to content

Commit 220046a

Browse files
mnd999HunternessJPryce-Aklundh
committed
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 3c17dad commit 220046a

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
@@ -244,6 +244,30 @@ a|
244244
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.
245245
In an upcoming major release of Neo4j, this will be updated to represent the possible Cypher types for that property instead.
246246
For all available Cypher types, see the section on xref::values-and-types/property-structural-constructed.adoc#types-synonyms[types and their synonyms].
247+
248+
a|
249+
label:functionality[]
250+
label:deprecated[]
251+
[source, cypher, role="noheader"]
252+
----
253+
CREATE DATABASE db OPTIONS { seedCredentials: ..., seedConfig: ... }
254+
----
255+
| The `CREATE DATABASE` option `seedCredentials` has been deprecated.
256+
For seeding from cloud storage, it is recommended to use `CloudSeedProvider` which will read cloud credentials and configuration from standard locations.
257+
For further information, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/clustering/databases/#cloud-seed-provider[Managing databases in a cluster -> CloudSeedProvider].
258+
259+
a|
260+
label:functionality[]
261+
label:deprecated[]
262+
[source, cypher, role="noheader"]
263+
----
264+
CREATE DATABASE db OPTIONS { storeFormat: 'standard' }
265+
266+
CREATE DATABASE db OPTIONS { storeFormat: 'high_limit' }
267+
----
268+
| The `standard` and `high_limit` store formats have been deprecated.
269+
Creating databases with these formats is therefore also deprecated.
270+
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].
247271
|===
248272

249273

0 commit comments

Comments
 (0)