Skip to content

Commit 49bc179

Browse files
fix: fix build (#821)
* node slow sync potential reasons * fix: fix build --------- Co-authored-by: Gleb Karavatski <g.karavatski@pixelplex.io>
1 parent d325270 commit 49bc179

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

docs/v3/guidelines/nodes/nodes-troubleshooting.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ Try to perform following checks:
3434

3535
Go through the checklist [from this section](/v3/guidelines/nodes/nodes-troubleshooting#about-no-progress-in-node-synchronization-within-3-hours).
3636

37+
## Slow sync potential reasons
38+
39+
1. The disk is relatively weak. It's advisable to check the IOPS of the disk (though sometimes hosting providers exaggerate these numbers).
40+
2. Updates coincided with network congestion. However, the slow synchronization is due to the load, not the updates. The full node cannot catch up with the network because there were about 100 million transactions.
41+
3. Since the default value of keep history for a Full Node state has been reduced to one day, there are fewer Full Nodes in the network that can provide older states, may cause making it harder to sync with such a delay.
3742

3843
## Cannot apply external message to current state : External message was not accepted
3944

docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const getEnvLangConfig = () => {
88

99
const langArray = process.env.TARGET_LANGS
1010
? process.env.TARGET_LANGS.split(",")
11-
: []; // ["mandarin"]; TODO: uncomment when done
11+
: ["mandarin"];
1212
// : ["mandarin", "ru", "ko", "pl", "uk", "ja"];
1313

1414
const locales = Array.from(new Set([defaultLocale, ...langArray]));

0 commit comments

Comments
 (0)