2 Answers
- Newest
- Most votes
- Most comments
0
To be clear, this happens every 10MB.
For example, in the 256 byte value variant, the 39569th line fails to fully send and truncates on the 240th byte.
The overhead for the JSON is 9 bytes for {"A": ""} where data goes in the quotes.
We can easily do the math on this, using the line numbers, plus the payload size, plus the json overhead.
((39568 * (256_9)) _ 240) / 1024 / 1024 = 10
Same for the 128byte variant... The 76539th row fails and data truncates on the 54th byte of the 76539th row.
((76538 * (128_9) ) _ 54) / 1024 / 1024 = 10
It's easily reproducible...
Edited by: GordoL on Nov 4, 2020 3:50 PM
answered 5 years ago
0
This is resolved by upgrading from Aurora Postgres 3.1.0/11.6 to 3.3/11.8. The issue is not present in the latest version
answered 5 years ago
Relevant content
- asked 2 years ago
- asked 2 years ago
- AWS OFFICIALUpdated 3 years ago
