我有数十亿行的 phonorgraph 对象,我们正在通过对象集服务查询它,例如,我想从某个城市获取所有 DriverLicences。
@Function()
public getDriverLicences(city: string): ObjectSet<DriverLicences> {
let drivers = Objects.search().DriverLicences().filter(row => row.city.exactMatch(city));
return drivers ;
}
当我尝试从 slate 查询它时,我遇到了这个错误:
ERROR 400: {"errorCode":"INVALID_ARGUMENT","errorName":"ObjectSet:PagingAboveConfiguredLimitNotAllowed","errorInstanceId":"0000-000","parameters":{}}
我知道我可能要检索超过 100 000 个结果,但我需要所有结果,因为前面实现的逻辑是由另一个团队构建的复杂板岩仪表板,我们无法重构。