We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
My laptop is old, but it has high performance and a great quantity of RAM.
And I started a local Axon node use the default configuration.
Then I ran the following command to run the web3 compatible test.
axon/.github/workflows/web3_compatible.yml
Line 135 in 37cddb7
After a while, I got:
[2023-11-08T23:03:38.977904689+08:00 ERROR jsonrpsee_core::server::helpers] Error serializing response: Error("Memory capacity exceeded", line: 0, column: 0)
Then the test is hung.
I had to press Ctrl+C to exit.
Ctrl+C
Maybe this issue is the reason why many CI checks are failed after few hours tonight:
But, if luck enough, the web3 compatible test could be finished in 30 minutes:
This immediate cause for this issue is these axon-tests changes.
Reason: All issues was happened after those commits merged.
It doesn't mean these commits are incorrect.
I think the underlying cause is some unknown bugs in Axon.
Reason: The Axon testnet has same errors but its code is old.
And, fix: check mempool when call eth_getTransactionByHash #1526 reduces the chance of bugs happened to almost 0%.
eth_getTransactionByHash
Reason: All CI checks could be finished in 30 minutes in this PR.
The text was updated successfully, but these errors were encountered:
Error is probably logged here:
https://github.com/paritytech/jsonrpsee/blob/724e23841df5783255cd5b55c1f15308d75a362a/core/src/server/helpers.rs#L276
There is a limit on max response size in jsonrpsee.
Sorry, something went wrong.
References:
I still have two question:
eth_getTransactionCount(..., "pending")
eth_sendRawTransaction
max_payload_size
yangby-cryptape
No branches or pull requests
Description
My laptop is old, but it has high performance and a great quantity of RAM.
And I started a local Axon node use the default configuration.
Then I ran the following command to run the web3 compatible test.
axon/.github/workflows/web3_compatible.yml
Line 135 in 37cddb7
After a while, I got:
Then the test is hung.
I had to press
Ctrl+C
to exit.Related CI Checks
Maybe this issue is the reason why many CI checks are failed after few hours tonight:
But, if luck enough, the web3 compatible test could be finished in 30 minutes:
My Guess
This immediate cause for this issue is these axon-tests changes.
Reason: All issues was happened after those commits merged.
It doesn't mean these commits are incorrect.
I think the underlying cause is some unknown bugs in Axon.
Reason: The Axon testnet has same errors but its code is old.
And, fix: check mempool when call
eth_getTransactionByHash
#1526 reduces the chance of bugs happened to almost 0%.Reason: All CI checks could be finished in 30 minutes in this PR.
The text was updated successfully, but these errors were encountered: