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
{{ message }}
This repository was archived by the owner on Jan 27, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: chains/ergo/README.md
+9-3Lines changed: 9 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,13 @@ sudo apt-get install rustup
10
10
11
11
### Requirements
12
12
13
-
With current [setup](src/model_v1.rs) you need at least 8 cores CPU and 16GB RAM to run both Ergo Node and Redbit without crashing.
13
+
With current [setup](src/model_v1.rs) you need at least 8 cores CPU and 12GB RAM to run both Ergo Node and Redbit but remaining RAM is used for page caching
14
+
so it might swap or kernel with throttle our process. If you don't have enough RAM, set :
15
+
16
+
```
17
+
db_cache_size_gb = "low"
18
+
min_entity_batch_size = 200_000
19
+
```
14
20
15
21
### Usage
16
22
@@ -20,8 +26,8 @@ export ERGO__API_KEY="foo" # not needed for syncing
20
26
cargo run --release
21
27
```
22
28
23
-
Indexing might crash especially on laptops with Node running locally and not being synced yet.
24
-
In that case, set `fetching_parallelism = "low"` to not put the Node and Laptop under heavy pressure.
29
+
Do not use more than `fetching_parallelism = "mild"` or sharding as Ergo node reading is quite CPU intensive and increasing
0 commit comments