bitshares / bitshares-core

BitShares Blockchain node and command-line wallet
https://bitshares.github.io/
Other
1.17k stars 643 forks source link

ES `413 Request too large` error with `testnet-6.1.0` #2682

Closed abitmore closed 1 year ago

abitmore commented 1 year ago

Bug Description

A Testnet node running the test-6.1.0 tag is unable to sync if

Error messages:

handle_bulk_response ] 413 error: Request too large. Can be low disk space. elasticsearch.cpp:56

It is caused by transfers with huge memos. The size of each transfer is around 400 KB in the serialized form, and the size of the corresponding request to ES is around 1.5 MB in 2 lines. With elasticsearch-bulk-replay = 200, the total request size is around 150 MB. But unfortunately the default maximum request size allowed by ES is 100 MB, so we got the error.

The node is able to sync if elasticsearch-bulk-replay is changed to 100.

Impacts Describe which portion(s) of BitShares Core may be impacted by this bug. Please tick at least one box.

Steps To Reproduce Steps to reproduce the behavior (example outlined below):

  1. Execute API call '...'
  2. Using JSON payload '...'
  3. Received response '...'
  4. See error in screenshot

Expected Behavior A clear and concise description of what you expected to happen.

Screenshots (optional) If applicable, add screenshots to help explain process flow and behavior.

Host Environment Please provide details about the host environment. Much of this information can be found running: witness_node --version.

Additional Context (optional) Add any other context about the problem here.

CORE TEAM TASK LIST

abitmore commented 1 year ago

Fixed by #2683.