Skip to content

Commit 7adb392

Browse files
committed
Remove the disclaimer and add a few sentences for Infinigraph
1 parent c9cc8c9 commit 7adb392

File tree

5 files changed

+11
-26
lines changed

5 files changed

+11
-26
lines changed

modules/ROOT/content-nav.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@
173173
*** xref:scalability/composite-databases/querying-composite-databases.adoc[]
174174
*** xref:scalability/composite-databases/sharding-with-copy.adoc[]
175175
//*** xref:scalability/composite-databases/scaling-with-composite-databases.adoc[]
176-
** Property sharding (Preview feature)
176+
** Property sharding (Infinigraph)
177177
*** xref:scalability/sharded-property-databases/overview.adoc[]
178178
*** xref:scalability/sharded-property-databases/planning-and-sizing.adoc[]
179179
*** xref:scalability/sharded-property-databases/configuration.adoc[]

modules/ROOT/pages/scalability/concepts.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The three main strategies are:
88

99
* xref:clustering/setup/analytics-cluster.adoc[Analytics clustering] -- for horizontal read scalability.
1010
* xref:scalability/composite-databases/concepts.adoc[Composite databases] -- for federated queries and distributed data management.
11-
* xref:scalability/sharded-property-databases/overview.adoc[Property sharding] -- for handling massive property-heavy graphs.
11+
* xref:scalability/sharded-property-databases/overview.adoc[Property sharding] (part of Infinigraph) -- for handling massive property-heavy graphs.
1212
1313
== What is scalability?
1414

modules/ROOT/pages/scalability/scaling-with-neo4j.adoc

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
:description: Scaling strategies with Neo4j.
33
= Scaling with Neo4j
44

5-
Neo4j offers various options for scaling, tailored to specific use cases and requirements. Here are some of the supported scaling strategies:
5+
Neo4j offers various options for scaling, tailored to specific use cases and requirements.
6+
You can mix and match these strategies to create a scalable solution that meets your needs.
7+
8+
Here are some of the supported scaling strategies:
69

710
* *Data replication via Neo4j analytics clustering (read scalability)* -- A Neo4j cluster is a high-availability cluster with multi-DB support.
811
It is a collection of servers running Neo4j that are configured to communicate with each other.
@@ -34,7 +37,7 @@ The main advantage is obtained by combining Neo4j clustering and composite datab
3437
* *Data distribution via Infinigraph* -- using a distributed graph architecture to extend a single system without fragmenting the graph.
3538
//This allows, in theory, the unlimited growth of a graph.
3639
+
37-
label:preview[Preview feature] xref:scalability/sharded-property-databases/overview.adoc[Property sharding] (part of Infinigraph) allows you to decouple the properties attached to nodes and relationships and store them in separate graphs.
40+
xref:scalability/sharded-property-databases/overview.adoc[Property sharding] (part of Infinigraph) allows you to decouple the properties attached to nodes and relationships and store them in separate graphs.
3841
This architecture enables the independent scaling of property data, allowing for the handling of high volumes, heavy queries, and high read concurrency.
3942
4043
The following table summarizes the similarities and differences between analytics clustering, composite databases, and sharded property databases:
@@ -110,7 +113,7 @@ Tools used on individual shards and Bloom are not supported on composite databas
110113
//TODO
111114
//Admin considerations
112115

113-
// == Property sharding (Preview feature)
116+
// == Property sharding
114117

115118
// Sharded property databases
116119

modules/ROOT/pages/scalability/sharded-property-databases/configuration.adoc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ To enable the property sharding in your cluster, you must configure the followin
1414
|===
1515
| Configuration setting | Description
1616

17-
| internal.dbms.sharded_property_database.enabled=true
18-
| By default, the sharded property database is disabled.footnote:[Property sharding is a preview feature. For details, see xref:scalability/sharded-property-databases/overview.adoc[Property sharding overview].]
19-
2017
| db.query.default_language=CYPHER_25
2118
| Ensures that any database created will use Cypher 25 (unless users specifically override the default version in the `CREATE DATABASE` command).
2219
See xref:configuration/cypher-version-configuration.adoc[Configure the Cypher default version] and link:https://neo4j.com/docs/cypher-manual/current/queries/select-version/[Cypher Manual -> Select Cypher version].

modules/ROOT/pages/scalability/sharded-property-databases/overview.adoc

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,12 @@
22
:description: This page describes property sharding and how it works.
33
= Overview
44

5-
.Preview Feature
6-
[IMPORTANT]
7-
====
8-
The *property sharding feature is offered AS-IS* as described in your agreement with Neo4j and should only be used for internal development purposes.
9-
10-
When this feature becomes generally available, you will need to upgrade to the latest Neo4j version (which may require downtime) to use the feature for non-development purposes.
11-
12-
*Enabling the preview feature (internal parameter):* +
13-
By default, the sharded property database is disabled.
14-
Use the internal setting `internal.dbms.sharded_property_database.enabled=true` to enable it.
15-
16-
During the Preview period, if you have any feedback, comments, or encounter any issues, we welcome them in our link:https://github.com/neo4j/neo4j/issues[public GitHub repository].
17-
We will address them to the best of our ability.
18-
Please include the term *Infinigraph* or *property sharding* in the title of your issue so we can identify it more easily. +
19-
Customers with active contracts may contact Neo4j Support through the standard support channels.
20-
Please note that any cases related to the Preview feature will be classified as Severity 4 by default, in accordance with the link:https://neo4j.com/terms/support-terms/[Support Terms].
21-
====
5+
Property sharding is part of Infinigraph, Neo4j’s distributed graph architecture that uses sharding to distribute the graph’s property data across different members of a cluster.
6+
The graph remains logically intact, queries behave as expected, and applications scale without requiring code changes or manual workarounds.
227

238
== What is property sharding?
249

25-
Property sharding is about decoupling the properties associated with nodes and relationships, and storing them in separate graphs.
10+
Property sharding involves decoupling the properties associated with nodes and relationships, and storing them in separate graphs.
2611
The graph structure, comprising nodes and relationships, is stored in a single "graph shard".
2712
The properties associated with these nodes and relationships are distributed across multiple "property shards".
2813
This architecture enables the independent scaling of property data, allowing for the handling of larger volumes of properties without impacting the performance of the graph structure. +

0 commit comments

Comments
 (0)