OpenML
OpenML copied to clipboard
Increase PHP upload limits and add large dataset upload docs
This PR increases server-side upload limits and adds documentation to support large dataset uploads.
Changes:
- Set
upload_max_filesizeto 5G indocker/config/php.ini - Set
post_max_sizeto 5G indocker/config/php.ini - Increase
max_execution_timeto 3600 seconds - Add
LARGE_DATASET_UPLOAD_FIX.mdwith full guidance - Add
QUICK_FIX_OVERFLOW_ERROR.mdwith immediate steps - Update
docker/README.mdwith upload limits section
Rationale:
- Users encounter client-side OverflowError: string longer than 2147483647 bytes when uploading very large datasets due to single-buffer SSL writes.
- Server defaults (2M/8M) also blocked uploads.
This PR documents client-side streaming/compression/external-hosting workarounds and raises server limits to accommodate large datasets.
Fixes #1223