Skip to content

Commit 564a6ec

Browse files
authored
move storage engine content under arangodb server (#403)
1 parent aaa0cd3 commit 564a6ec

File tree

21 files changed

+30
-27
lines changed

21 files changed

+30
-27
lines changed

site/content/3.10/about-arangodb/features/community-edition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ see [arangodb.com/community-server/](https://www.arangodb.com/community-server/)
3939
documents, or graphs - perfect for social relations. Optional document
4040
validation using JSON Schema (draft-4, without remote schema support).
4141

42-
- [**Data Storage**](../../deploy/architecture/storage-engine.md):
42+
- [**Data Storage**](../../components/arangodb-server/storage-engine.md):
4343
RocksDB storage engine to persist data and indexes on disk, with a hot set in
4444
memory. It uses journaling (write-ahead logging) and can take advantage of
4545
modern storage hardware, like SSDs and large caches.

site/content/3.10/about-arangodb/features/highlights-by-version.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ Also see [What's New in 3.5](../../release-notes/version-3.5/whats-new-in-3-5.md
301301
as soon as possible.
302302

303303
- **RocksDB as Default Storage Engine**: With ArangoDB 3.4 the default
304-
[storage engine](../../deploy/architecture/storage-engine.md) for fresh installations will
304+
[storage engine](../../components/arangodb-server/storage-engine.md) for fresh installations will
305305
switch from MMFiles to RocksDB. Many optimizations have been made to RocksDB
306306
since the first release in 3.2. For 3.4 we optimized the binary storage
307307
format for improved insertion, implemented "optional caching", reduced the
@@ -342,7 +342,7 @@ Also see [What's New in 3.3](../../release-notes/version-3.3/whats-new-in-3-3.md
342342

343343
**All Editions**
344344

345-
- [**RocksDB Storage Engine**](../../deploy/architecture/storage-engine.md): You can now use
345+
- [**RocksDB Storage Engine**](../../components/arangodb-server/storage-engine.md): You can now use
346346
as much data in ArangoDB as you can fit on your disk. Plus, you can enjoy
347347
performance boosts on writes by having only document-level locks.
348348

site/content/3.10/about-arangodb/use-cases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ binary large objects (BLOBs) and works best with small to medium-sized
131131
JSON objects.
132132

133133
For more information about how ArangoDB persists data, see
134-
[Storage Engine](../deploy/architecture/storage-engine.md).
134+
[Storage Engine](../components/arangodb-server/storage-engine.md).
135135

136136
## ArangoDB as a Search Engine
137137

site/content/3.10/deploy/architecture/storage-engine.md renamed to site/content/3.10/components/arangodb-server/storage-engine.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
---
22
title: Storage Engine
33
menuTitle: Storage Engine
4-
weight: 15
4+
weight: 20
55
description: >-
66
The storage engine is responsible for persisting data on disk, holding copies
77
in memory, providing indexes and caches to speed up queries
88
archetype: default
9+
aliases:
10+
- ../../deploy/architecture/storage-engine
911
---
1012
ArangoDB's storage engine is based on Facebook's **RocksDB** and the only
1113
storage engine available in ArangoDB 3.7 and above. It is the bottom layer of

site/content/3.10/deploy/architecture/_index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ title: ArangoDB Architecture
33
menuTitle: Architecture
44
weight: 100
55
description: >-
6-
Technical insights into ArangoDB's scalability, sharding, the storage engine,
7-
and replication
6+
Technical insights into ArangoDB's scalability, sharding, and replication
87
archetype: chapter
98
---

site/content/3.10/develop/transactions/limitations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Understanding these differences is important when designing applications that ne
7676
to be resilient against outages of individual servers.
7777

7878
Cluster transactions share the underlying characteristics of the
79-
[storage engine](../../deploy/architecture/storage-engine.md) that is used for the cluster deployment.
79+
[storage engine](../../components/arangodb-server/storage-engine.md) that is used for the cluster deployment.
8080
A transaction started on a Coordinator translates to one transaction per involved DB-Server.
8181
The guarantees and characteristics of the given storage-engine apply additionally
8282
to the cluster specific information below.

site/content/3.10/release-notes/version-3.6/incompatible-changes-in-3-6.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The MMFiles storage engine is deprecated starting with version
4444
3.6.0 and it will be removed in a future release.
4545

4646
We recommend to switch to RocksDB even before the removal of MMFiles.
47-
RocksDB is the default [storage engine](../../deploy/architecture/storage-engine.md)
47+
RocksDB is the default [storage engine](../../components/arangodb-server/storage-engine.md)
4848
since v3.4.0.
4949

5050
## Requests statistics

site/content/3.11/about-arangodb/features/community-edition.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ see [arangodb.com/community-server/](https://www.arangodb.com/community-server/)
3939
documents, or graphs - perfect for social relations. Optional document
4040
validation using JSON Schema (draft-4, without remote schema support).
4141

42-
- [**Data Storage**](../../deploy/architecture/storage-engine.md):
42+
- [**Data Storage**](../../components/arangodb-server/storage-engine.md):
4343
RocksDB storage engine to persist data and indexes on disk, with a hot set in
4444
memory. It uses journaling (write-ahead logging) and can take advantage of
4545
modern storage hardware, like SSDs and large caches.

site/content/3.11/about-arangodb/features/highlights-by-version.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ Also see [What's New in 3.5](../../release-notes/version-3.5/whats-new-in-3-5.md
327327
as soon as possible.
328328

329329
- **RocksDB as Default Storage Engine**: With ArangoDB 3.4 the default
330-
[storage engine](../../deploy/architecture/storage-engine.md) for fresh installations will
330+
[storage engine](../../components/arangodb-server/storage-engine.md) for fresh installations will
331331
switch from MMFiles to RocksDB. Many optimizations have been made to RocksDB
332332
since the first release in 3.2. For 3.4 we optimized the binary storage
333333
format for improved insertion, implemented "optional caching", reduced the
@@ -368,7 +368,7 @@ Also see [What's New in 3.3](../../release-notes/version-3.3/whats-new-in-3-3.md
368368

369369
**All Editions**
370370

371-
- [**RocksDB Storage Engine**](../../deploy/architecture/storage-engine.md): You can now use
371+
- [**RocksDB Storage Engine**](../../components/arangodb-server/storage-engine.md): You can now use
372372
as much data in ArangoDB as you can fit on your disk. Plus, you can enjoy
373373
performance boosts on writes by having only document-level locks.
374374

site/content/3.11/about-arangodb/use-cases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ binary large objects (BLOBs) and works best with small to medium-sized
131131
JSON objects.
132132

133133
For more information about how ArangoDB persists data, see
134-
[Storage Engine](../deploy/architecture/storage-engine.md).
134+
[Storage Engine](../components/arangodb-server/storage-engine.md).
135135

136136
## ArangoDB as a Search Engine
137137

0 commit comments

Comments
 (0)