jonasjancarik commented on issue #13809: URL: https://github.com/apache/superset/issues/13809#issuecomment-808173877
The workaround I found is to lower the size of data batches (chunks), e.g. instead of 500 use just 1: `sed -i 's/chunksize=500/chunksize=1/g' $(find ~/venv/lib/python3.7/site-packages/superset/examples/. -maxdepth 1 -type f)` And replace `CHUNKSIZE = 512` with `CHUNKSIZE = 1` in `~/venv-superset/lib/python3.7/site-packages/superset/datasets/commands/importers/v1/utils.py` Of course this makes the import slower. -- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
