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
adding the new flag store-tx-result-error-messages to the execution data sync doc (#1507)
* adding the new flag store-tx-result-error-messages to the execution data sync doc
* Apply suggestion from @peterargue
Co-authored-by: Peter Argue <89119817+peterargue@users.noreply.github.com>
* Apply suggestion from @peterargue
Co-authored-by: Peter Argue <89119817+peterargue@users.noreply.github.com>
* Apply suggestion from @peterargue
Co-authored-by: Peter Argue <89119817+peterargue@users.noreply.github.com>
* remoing an extra flag
---------
Co-authored-by: Peter Argue <89119817+peterargue@users.noreply.github.com>
Copy file name to clipboardExpand all lines: docs/protocol/node-ops/access-nodes/access-node-configuration-options.md
+7-5Lines changed: 7 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -135,21 +135,22 @@ Store the **`root-protocol-state-snapshot.json`** into the **`/bootstrap/public-
135
135
136
136
Now you have the execution sync setup and the root checkpoint in place, it’s time to configure the node to index all of the data so it can be used for script execution.
137
137
138
-
There are 2 cli flags that you will need to add:
138
+
There are 3 cli flags that you will need to add:
139
139
140
140
-`--execution-data-indexing-enabled=true` This will enable the indexer.
141
+
-`--store-tx-result-error-messages=true` This will fetch and index transaction result error messages from execution nodes.
141
142
-`--execution-state-dir` This defines the path where the registers db will be stored. A good default is on the same drive as the protocol db. e.g. `/data/execution-state`
142
143
143
144
# Start your node
144
145
145
-
Now that all of the settings to enable indexing are in place, you can start your node.
146
+
Now that all the settings to enable indexing are in place, you can start your node.
146
147
147
148
At a minimum, you will need the following flags:
148
149
149
150
```
150
151
--execution-data-indexing-enabled=true
152
+
--store-tx-result-error-messages=true
151
153
--execution-state-dir=/data/execution-state
152
-
--execution-data-sync-enabled=true
153
154
--execution-data-dir=/data/execution-data
154
155
```
155
156
@@ -249,8 +250,9 @@ As a best practice, specify a path with `--execution-data-dir`. A sensible defau
249
250
Below is a list of the available CLI flags to control the behavior of Execution Data Indexer.
0 commit comments