Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到其他人在没有明确答案的情况下遇到了这个问题。就我而言,我使用的是 C# 驱动程序。我的排序看起来像这样:
cursor.SetSortOrder(SortBy.Ascending("Location", "BusinessLine", "Manager", "TeamLead", "AgentName", "EventDate"));
它收集了 32,201 条记录,运行良好。除此之外,我得到这个错误。我已经在任何和我的排序变量上尝试了索引,但没有任何改变结果。有任何想法吗?
问题在于批量大小。在遍历游标之前,您必须设置批量大小。在这种情况下,我将其设置为 cursor.BatchSize = 30000; 它工作得很好。