milenkovicm commented on PR #1853: URL: https://github.com/apache/datafusion-ballista/pull/1853#issuecomment-4741128632
I'm running TPCH (SF10) Q2 with 512 partitions ```bash cargo run --bin tpch -- benchmark ballista -p /Users/marko/TMP/tpch_data/tpch-data-sf10/ -f parquet -i 1 --port 50050 --host 127.0.0.1 -c datafusion.execution.target_partitions=512 -q 2 ``` before PR ``` Error, decoded message length too large: found 43952013 bytes, the limit is: 16777216 bytes ``` after PR has been applied ``` Error, decoded message length too large: found 18947588 bytes, the limit is: 16777216 byte ``` so its like 2.5x improvement which is good direction I know there are other things we have to do in order to make using even less data like proposed in #1876 using uuid instead of strings 🤔 good progress @sandugood any suggestions @coderfender ? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
