You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/en/architecture.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ description: "Introduction to RustFS Architecture"
7
7
8
8
RustFS is an object storage system, similar to the well-known AWS S3. As a replacement for MinIO, RustFS references MinIO's simple, lightweight, scalable, and elegant architecture.
9
9
10
-
Objects can be documents, videos, PDF files, etc. To store objects, MinIO provides a scalable, flexible, and efficient solution for storing, accessing, and managing data. Its compatibility with AWS S3 API enables seamless integration with applications based on AWS S3.
10
+
Objects can be documents, videos, PDF files, etc. To store objects, RustFS provides a scalable, flexible, and efficient solution for storing, accessing, and managing data. Its compatibility with AWS S3 API enables seamless integration with applications based on AWS S3.
11
11
12
12
The architecture diagram is as follows:
13
13
@@ -22,11 +22,11 @@ In both distributed and single-machine modes, all read and write operations stri
22
22
23
23
## Several Important Concepts in RustFS
24
24
25
-
**Object**: The basic object stored in Minio, such as files, byte streams, anything...
25
+
**Object**: The basic object stored in RustFS, such as files, byte streams, anything...
26
26
27
27
**Bucket**: A logical space used to store Objects. Data between each Bucket is mutually isolated. For clients, it is equivalent to a top-level folder for storing files.
28
28
29
-
**Drive**: The disk that stores data, passed as a parameter when MinIO starts. All object data in Minio will be stored in Drives.
29
+
**Drive**: The disk that stores data, passed as a parameter when RustFS starts. All object data in RustFS will be stored in Drives.
30
30
31
31
**Set**: A collection of Drives. Distributed deployment automatically divides into one or more Sets based on cluster scale, with Drives in each Set distributed in different locations. An object is stored on one Set. (Some places also refer to the combination of Sets as **Strips**).
0 commit comments