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.
我使用 wso2 das 服务器和 apache cassandra 作为外部数据源来存储接收到的事件。
当我尝试可视化我的数据(比如创建一个 Bar 小工具)时,我看不到我存储在 cassandra 中的所有数据。我想知道 DAS 从 cassandra 获取的记录是否有限制?如果是这样,我可以更改该默认设置吗?
谢谢你的帮助。
干杯。瓦伊迪
每个查询获取的最大记录数有限制。默认值是5000,但您可以使用下面给出的配置文件来更改它。
5000
<DAS_HOME>/repository/conf/datasources/analytics-datasources.xml
在<queryOptions>XML 标记内,请找到 <fetchSize>并更新它。
<queryOptions>
<fetchSize>
如果您需要有关此问题的进一步帮助,请告诉我。
谢谢,
上普尔