dosubot[bot] commented on issue #32783: URL: https://github.com/apache/superset/issues/32783#issuecomment-2742125803
<!-- Answer --> To address the "Payload too large" error when uploading a CSV file in Apache Superset, consider the following steps: 1. **Nginx Configuration**: Ensure that the `client_max_body_size` directive is correctly set in your Nginx configuration. You mentioned setting it to `200M`, which should be sufficient. Make sure this directive is placed in the correct context (e.g., `http`, `server`, or `location` block) and that Nginx has been reloaded to apply the changes. 2. **Superset Configuration**: In your `superset_config.py`, you have set `MAX_UPLOAD_FILE_SIZE` to `200 * 1024 * 1024`, which is 200MB. This should match the Nginx setting. Double-check that this configuration is being loaded by Superset. 3. **Reverse SSL Server**: Since your setup includes a reverse SSL server, verify if there are any size limits configured on this server that could be affecting the upload. The reverse proxy might have its own settings that need to be adjusted. 4. **Superset Logs**: Check the Superset logs for any additional error messages or stack traces that might provide more context on the issue. 5. **Browser and Network**: Ensure that there are no browser extensions or network policies that might be interfering with the upload process. By ensuring that all components in the upload chain (Nginx, reverse SSL server, and Superset) are configured to allow the desired file size, you should be able to resolve the "Payload too large" error. <!-- Dosu Comment Footer --> *To continue talking to [Dosu](https://dosu.dev), mention @dosu.* --- <sup>Help Dosu learn! Give it feedback: [Great Response](https://app.dosu.dev/response-feedback/6f585e79-f36c-480b-bb3f-45129fa368b3?feedback_type=great_response) | [Irrelevant Answer](https://app.dosu.dev/response-feedback/6f585e79-f36c-480b-bb3f-45129fa368b3?feedback_type=irrelevant_answer) | [Incorrect Sources](https://app.dosu.dev/response-feedback/6f585e79-f36c-480b-bb3f-45129fa368b3?feedback_type=incorrect_sources) | [Too Verbose](https://app.dosu.dev/response-feedback/6f585e79-f36c-480b-bb3f-45129fa368b3?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/6f585e79-f36c-480b-bb3f-45129fa368b3?feedback_type=hallucination) | [Bug Report](https://app.dosu.dev/response-feedback/6f585e79-f36c-480b-bb3f-45129fa368b3?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/6f585e79-f36c-480b-bb3f-45129fa368b3?feedback_type=other)</sup> -- 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]
