Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: change node requirements #1868

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions how-to-guides/bridge-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ From an implementation perspective, Bridge nodes run two separate processes:
The following hardware minimum requirements are recommended for running the
bridge node:

- Memory: **16 GB RAM (minimum)**
- Memory: **24 GB RAM (minimum)**
- CPU: **6 cores**
- Disk: **2 TB NVME Storage**
- Disk: **5 TiB NVME Storage**
Comment on lines +50 to +52
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Inconsistent CPU requirement with nodes-overview.md.

The CPU requirement here is 6 cores, while nodes-overview.md specifies 8 cores for bridge nodes.

Please update the CPU requirement to match:

- CPU: **6 cores**
+ CPU: **8 cores**
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- Memory: **24 GB RAM (minimum)**
- CPU: **6 cores**
- Disk: **2 TB NVME Storage**
- Disk: **5 TiB NVME Storage**
- Memory: **24 GB RAM (minimum)**
- CPU: **8 cores**
- Disk: **5 TiB NVME Storage**

- Bandwidth: **1 Gbps for Download/1 Gbps for Upload**

## Setting up your bridge node
Expand Down
6 changes: 3 additions & 3 deletions how-to-guides/consensus-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ consensus layer.

The following minimum hardware requirements are recommended for running a consensus node:

- Memory: **16 GB RAM**
- CPU: **Quad-Core**
- Disk: **2 TB SSD Storage**
- Memory: **24 GB RAM**
- CPU: **8 cores**
- Disk: **3 TiB SSD Storage**
- Bandwidth: **1 Gbps for Download/1 Gbps for Upload**

## Set up a consensus node
Expand Down
4 changes: 2 additions & 2 deletions how-to-guides/full-storage-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ between one another.
The following hardware minimum requirements are recommended for running
the full storage node:

- Memory: **16 GB RAM (minimum)**
- Memory: **24 GB RAM (minimum)**
- CPU: **6 cores**
- Disk: **2 TB NVME Storage**
- Disk: **5 TiB NVME Storage**
Comment on lines +25 to +27
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

Inconsistent CPU requirement with nodes-overview.md.

The CPU requirement here is 6 cores, while nodes-overview.md specifies 8 cores for full storage nodes.

Please update the CPU requirement to match:

- CPU: **6 cores**
+ CPU: **8 cores**
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- Memory: **24 GB RAM (minimum)**
- CPU: **6 cores**
- Disk: **2 TB NVME Storage**
- Disk: **5 TiB NVME Storage**
- Memory: **24 GB RAM (minimum)**
- CPU: **8 cores**
- Disk: **5 TiB NVME Storage**

- Bandwidth: **1 Gbps for Download/1 Gbps for Upload**

## Setting up your full storage node
Expand Down
8 changes: 4 additions & 4 deletions how-to-guides/nodes-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ each tutorial guide.
| Node type | Memory | CPU | Disk | Bandwidth |
|-------------------|-------------|-------------|------------|-----------|
| Light node | 500 MB RAM | Single core | 100 GB SSD | 56 Kbps |
| Bridge node | 16 GB RAM | 6 cores | 2 TB NVME | 1 Gbps |
| Full storage node | 16 GB RAM | Quad-core | 2 TB NVME | 1 Gbps |
| Bridge node | 24 GB RAM | 8 cores | 5 TiB NVME | 1 Gbps |
| Full storage node | 24 GB RAM | 8 cores | 5 TiB NVME | 1 Gbps |

## Consensus nodes

| Node type | Memory | CPU | Disk | Bandwidth |
|------------------|-------------|-------------|------------|-----------|
| Validator | 16 GB RAM | 8 cores | 2 TB SSD | 1 Gbps |
| Consensus node | 16 GB RAM | Quad-core | 2 TB SSD | 1 Gbps |
| Validator | 24 GB RAM | 8 cores | 3 TiB SSD | 1 Gbps |
| Consensus node | 24 GB RAM | 8 cores | 3 TiB SSD | 1 Gbps |


Please provide any feedback on the tutorials and guides. If you notice
Expand Down
4 changes: 2 additions & 2 deletions how-to-guides/validator-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Validator nodes allow you to participate in consensus in the Celestia network.
The following hardware minimum requirements are recommended for running a
validator node:

- Memory: **16 GB RAM**
- Memory: **24 GB RAM**
- CPU: **8 cores**
- Disk: **2 TB SSD Storage**
- Disk: **3 TiB SSD Storage**
- Bandwidth: **1 Gbps for Download/1 Gbps for Upload**

## Setting up a validator node
Expand Down
Loading