使用 Apex 数据加载器的 Salesforce 批量上传错误:超出存储限制

发布于 2024-12-25 00:45:25 字数 227 浏览 2 评论 0原文

当我尝试批量上传自定义(员工)对象的 25,000 条记录时,我收到错误消息,指出“超出存储限制”。 我已确保 salesforce 中没有员工对象(使用数据加载器删除)。我确保回收站已清空。使用数据加载器时我的批量大小为 100

现在,当我使用 java 客户端和批量上传 API 尝试相同的操作时,上传工作完美,即使插入 100,000 条记录也没有错误

有谁知道为什么我只在使用 apex 数据加载器?

When i try to bulk upload 25,000 records of a custom (employee) object i get errors stating "storage limits exceeded".
I have ensured that there are no employee objects in salesforce (using data loader delete). I ensured that recycle bin has been emptied. My batch size is 100 while using the data loader

Now, when i try the same operation using a java client and bulk upload API, the upload works perfectly, with no errors even at 100,000 records insert

Does anyone know why i get this error only while using the apex data loader?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

长安忆 2025-01-01 00:45:25

其他物体、文档和附件可能会占用该空间。如果您可以检查总共有多少可用空间以及剩余多少空间,将会有所帮助。为此,请转至“设置”>“管理设置>数据管理>存储使用情况。
该屏幕将为您提供哪个对象有多少条记录以及消耗多少字节的高级详细信息。

It might be possible that other sobjects, documents and attachments are eating up the space. It will help if you can check how much space is available to you in total and how much is left. To do so, please goto Setup > Administration Setup > Data Management > Storage usage.
This screen will give you high level and fine details of which object has how many records and consuming how many bytes.

2025-01-01 00:45:25

在这两种情况下我都超出了存储限制(使用批量 API 和数据加载器)。我想我对批量 API 很幸运。昨天我无法使用批量 API 重复插入 25k 条记录。两种方法都以不同的百分比超出免费 5MB 标记而失败。
之所以会出现混乱,是因为超出存储空间后并没有立即出现“存储空间超出错误”。它可能会在使用 15MB 或 100MB(超过默认可用空间 5MB)后出现。

结论:一旦超出为该用户帐户分配的数据存储空间,无论使用批量 api 还是 apex 数据加载器进行插入,都会出现存储空间超出错误。需要购买更多存储空间!
谢谢
萨米尔

I was going over the storage limit in both cases (using bulk API and dataloader). I think i got lucky with the bulk API. I could not repeat inserting even 25k records yesterday, using bulk API. Both approaches failed at differing percentages of exceeding the free 5MB mark.
The confusion arises because the "storage exceeded error" does not appear immediately after storage is exceeded. It could appear after 15MB is used or 100 MB (over the default free of 5MB).

Conclusion: The storage exceeded error will appear irrespective of using bulk api or apex data loader for inserts once the data storage allocated for that user account is exceeded. One needs to buy more storage!
Thanks
Sameer

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文