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
2022-12-13 10:28:17.516 INFO main remote-ext: since no at is provided, setting it to latest finalized head, 0xe7d0b614dfe89af65b33577aae46a6f958c974bf52f8a5e865a0f4faeb578d22
212
230
2022-12-13 10:28:17.516 INFO main remote-ext: since no prefix is filtered, the data for all pallets will be downloaded
213
231
2022-12-13 10:28:17.550 INFO main remote-ext: writing snapshot of 1611464 bytes to "node-268@latest.snap"
214
232
2022-12-13 10:28:17.551 INFO main remote-ext: initialized state externalities with storage root 0x925e4e95de4c08474fb7f976c4472fa9b8a1091619cd7820a793bf796ee6d932 and state_version V1
215
233
```
216
234
235
+
For faster snapshot creation with large state, use multiple RPC endpoints:
236
+
237
+
```bash
238
+
try-runtime --runtime existing create-snapshot \
239
+
--uri ws://localhost:9999 \
240
+
--uri ws://localhost:9998 \
241
+
-- my-snapshot.snap
242
+
```
243
+
217
244
> Note that the snapshot contains the `existing` runtime, which does not have the correct
218
245
> `try-runtime` feature. In the following commands, we still need to overwrite the runtime.
//! 2022-12-13 10:28:17.516 INFO main remote-ext: since no at is provided, setting it to latest finalized head, 0xe7d0b614dfe89af65b33577aae46a6f958c974bf52f8a5e865a0f4faeb578d22
228
246
//! 2022-12-13 10:28:17.516 INFO main remote-ext: since no prefix is filtered, the data for all pallets will be downloaded
229
247
//! 2022-12-13 10:28:17.550 INFO main remote-ext: writing snapshot of 1611464 bytes to "node-268@latest.snap"
230
248
//! 2022-12-13 10:28:17.551 INFO main remote-ext: initialized state externalities with storage root 0x925e4e95de4c08474fb7f976c4472fa9b8a1091619cd7820a793bf796ee6d932 and state_version V1
231
249
//! ```
232
250
//!
251
+
//! For faster snapshot creation with large state, use multiple RPC endpoints:
0 commit comments