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
I'm having trouble syncing amms with my local erigon archive node.
mistake:
This error contains multiple until panic.
{ethers_providers::rpc::transports::ws::backend} Error response from WS err=Space limit exceeded: Message too long: 16963321 > 16777216
I tried setting the Ws config max_message_size and max_frame_size to unlimited, and that got resolved, and the sync works fine. But after a few minutes of syncing, this error still occurs, but this time there is only one, and it doesn't panic.
Will this cause some information to be lost when syncing an amm?
code:
let ws_config = WebSocketConfig {
max_send_queue: None,
max_message_size: None,
max_frame_size: None,
..WebSocketConfig::default()
};
// Setup ethers provider
let ws: Ws = Ws::connect_with_config(args.wss, ws_config).await.unwrap();
let provider: Arc<Provider<Ws>> = Arc::new(Provider::new(ws));
I'm having trouble syncing amms with my local erigon archive node.
mistake:
This error contains multiple until panic.
{ethers_providers::rpc::transports::ws::backend} Error response from WS err=Space limit exceeded: Message too long: 16963321 > 16777216
I tried setting the Ws config max_message_size and max_frame_size to unlimited, and that got resolved, and the sync works fine. But after a few minutes of syncing, this error still occurs, but this time there is only one, and it doesn't panic.
Will this cause some information to be lost when syncing an amm?
code:
The text was updated successfully, but these errors were encountered: