我使用 Falcon 实现了一个 API,它使用 multipart/form 将文件上传到我的服务器。当文件很小 (~1MB) 时,POST 请求可以正常工作。但是当文件很大(~20MB)时,POST 失败并出现以下错误。
有关如何解决此问题的任何反馈?
错误:
http: error: ConnectionError: ('Connection aborted.', error(32, 'Broken pipe')) 在对 URL 进行 POST 请求时: http://...:49160/api/upload
这是我的请求命令行: 使用 httpie:
http -f POST http://111.111.111.111:49160/api/upload filename=video.mp4 file@/home/chacon/video.mp4
这是我的 on_post 函数:
def on_post(self, req, resp):
in_file = req.get_param('file')
in_video_name = in_file.filename
source_video_path = os.path.join("/tmp", in_video_name)
#working, but fails for large files
with open(source_video_path, 'wb') as source_video_file:
source_video_file.write(in_file.file.read())
谢谢,
卡洛斯