-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmin_compute.yml
More file actions
73 lines (57 loc) · 2.8 KB
/
min_compute.yml
File metadata and controls
73 lines (57 loc) · 2.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# This is intended to give a rough estimate of the minimum requirements
# so that the user can make an informed decision about whether or not
# they want to run a miner or validator on their machine.
# NOTE: Specification for miners may be different from validators
version: '0.3.6'
compute_spec:
miner:
cpu:
min_cores: 32 # Minimum number of CPU cores
min_speed: 3.5 # Minimum speed per core (GHz)
recommended_cores: 128 # Recommended number of CPU cores
recommended_speed: 4.0 # Recommended speed per core (GHz)
architecture: "x86_64" # Architecture type (e.g., x86_64, arm64)
gpu:
required: false # No need for miner to have a GPU
memory:
min_ram: 64 # Minimum RAM (GB)
min_swap: 500 # Minimum swap space (GB)
recommended_swap: 1024 # Recommended swap space (GB)
ram_type: "DDR4" # RAM type (e.g., DDR4, DDR3, etc.)
storage:
min_space: 500 # Minimum free storage space (GB)
recommended_space: 500 # Recommended free storage space (GB)
type: "SSD" # Preferred storage type (e.g., SSD, HDD)
min_iops: 95000 # Minimum I/O operations per second (if applicable)
recommended_iops: 300000 # Recommended I/O operations per second
os:
name: "Ubuntu" # Name of the preferred operating system(s)
version: 22.04 # Version of the preferred operating system(s)
validator:
cpu:
min_cores: 64 # Minimum number of CPU cores
min_speed: 3.5 # Minimum speed per core (GHz)
recommended_cores: 128 # Recommended number of CPU cores
recommended_speed: 4.3 # Recommended speed per core (GHz)
architecture: "x86_64" # Architecture type (e.g., x86_64, arm64)
gpu:
required: false # No need for validator to have a GPU
memory:
min_ram: 128 # Minimum RAM (GB)
recommended_ram: 900 # Recommended RAM (GB)
min_swap: 512 # Minimum swap space (GB)
recommended_swap: 1024 # Recommended swap space (GB)
ram_type: "DDR4" # RAM type (e.g., DDR4, DDR3, etc.)
storage:
min_space: 500 # Minimum free storage space (GB)
recommended_space: 500 # Recommended free storage space (GB)
type: "SSD" # Preferred storage type (e.g., SSD, HDD)
min_iops: 95000 # Minimum I/O operations per second (if applicable)
recommended_iops: 300000 # Recommended I/O operations per second
os:
name: "Ubuntu" # Name of the preferred operating system(s)
version: 22.04 # Version of the preferred operating system(s)
network_spec:
bandwidth:
download: 1024 # Minimum download bandwidth (Mbps)
upload: 1024 # Minimum upload bandwidth (Mbps)