我正在尝试通过Mobiledata导入功能将我的数据集导入mobiledata服务,但是我收到此错误:{“message”:“上传文件时出现异常:
[org.apache.commons.fileupload.FileUploadBase $ SizeLimitExceededException: 请求被拒绝,因为它的大小(174693558)超过了 最大配置(104857600)]“,”代码“:20004}
还有其他方法可以导入更大的数据集吗?
由于
答案 0 :(得分:2)
您可以通过以下方式实现:
1: Try to increase max-file-size & max-request-size
2: Or best approach would to break the file in chunks and then try. In this approach you would never have to bother about max-file-size & max-request-size and also the process would be faster. There are many algorithms to break files in chunks and join them at target.
此链接可以帮助您:
https://mobile.ng.bluemix.net/mbaas-api/#!/data/inject_post_0
答案 1 :(得分:0)
您可能需要更改max-file-size&等条目。 web.xml的max-request-size。
以下是相同的参考链接:
http://mail-archives.apache.org/mod_mbox/tomcat-users/201102.mbox/%3Cloom.20110203T214804-280@post.gmane.org%3E
除此之外,您可以在Bluemix中使用node.js sdk框架并上传数据:
http://mbaas-gettingstarted.ng.bluemix.net/node#mobile-data
希望它有所帮助。
答案 2 :(得分:0)
此问题似乎与web.xml有关,下面是此论坛上报告的类似问题: