Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.

Commit 7a6ac6f

Browse files
committed
Fix typos, remove unused docker compose volume reference
1 parent f477e63 commit 7a6ac6f

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

docs/deploy/server/cluster/deployment.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This page describes how you can deploy a distributed Restate cluster.
2525
</Admonition>
2626

2727
<Admonition type="caution">
28-
Snapshots are essential to support safe log trimming and also allow you to set partition replication to a subset of all cluster nodes, while still allowing for fast partition fail-over to to any live node. Snapshots are also necessary to add more nodes in the future.
28+
Snapshots are essential to support safe log trimming and also allow you to set partition replication to a subset of all cluster nodes, while still allowing for fast partition fail-over to any live node. Snapshots are also necessary to add more nodes in the future.
2929
</Admonition>
3030

3131
To deploy a distributed Restate cluster without external dependencies, you need to configure the following settings in your [server configuration](/operate/configuration/server):

docs/guides/cluster.mdx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,6 @@ services:
8989

9090
minio:
9191
image: quay.io/minio/minio
92-
# volumes:
93-
# - object-store:/data
9492
entrypoint: "/bin/sh"
9593
# Ensure a bucket called "restate" exists on startup:
9694
command: "-c 'mkdir -p /data/restate && /usr/bin/minio server --quiet /data'"

docs/operate/snapshots.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import Admonition from '@theme/Admonition';
1616
</Admonition>
1717

1818
<Admonition type="caution">
19-
Snapshots are essential to support safe log trimming and also allow you to set partition replication to a subset of all cluster nodes, while still allowing for fast partition fail-over to to any live node. Snapshots are also necessary to add more nodes in the future.
19+
Snapshots are essential to support safe log trimming and also allow you to set partition replication to a subset of all cluster nodes, while still allowing for fast partition fail-over to any live node. Snapshots are also necessary to add more nodes in the future.
2020
</Admonition>
2121

2222
Restate workers can be configured to periodically publish snapshots of their partition state to a shared destination. Snapshots are not necessarily backups. Rather, snapshots allow nodes that had not previously served a partition to bootstrap a copy of its state. Without snapshots, placing a partition processor on a node that wasn't previously a follower would require the full replay of that partition's log. Replaying the log might take a long time - and is impossible if the log gets trimmed.

0 commit comments

Comments
 (0)