我尝试使用Stack Exchange资源管理器简单查询获取信誉大于5的用户列表:
select id
from users
where reputation > 5
我只获得了50,000行。我希望得到数百万。有没有门槛?有什么方法可以把它们全部搞定吗?
答案 0 :(得分:2)
这是"Why can't I pull in all the SO users from Data Explorer?" on Meta Stack Exchange的跨站点副本。
数据资源管理器(SEDE)限制为50K行。
优化查询或下载并使用the Data Dump代替。这就是数据转储的用途。
或者,您可以access the Data Dump via Google's BigQuery - 也有API。