我正在使用 pydocumentdb 使用 Python 脚本将一些处理后的数据作为 Azure Cloud 上的文档上传到 CosmosDB。这些文件来自同一来源。摄取适用于某些文件,但对于大于 1000 KB 的文件会出现下一个错误:
pydocumentdb.errors.HTTPFailure: Status code: 413
"code":"RequestEntityTooLarge","message":"Message: {\"Errors\":[\"Request
size is too large\"]
我正在使用 SQL API,这就是我在 Collection 中创建文档的方式:
client = document_client.DocumentClient(uri, {'masterKey': cosmos_key})
... I get the Db link and Collection link ...
Client.CreateDocument(collection_link, data)
我该如何解决这个错误?