我是德鲁伊的新手。我的问题是如何使用Java交互在Druid中存储和查询HashMap。
我有network table
如下:
Network f1 f1 f3 .... fn
value 1 3 2 ..... 2
另外,我有
range-time table
time impression
2016-08-10-00 1000
2016-08-10-00 3000
2016-08-10-00 4000
2016-08-10-00 2000
2016-08-10-00 8000
在Druid中,我可以将
range-time
表存储为HashMap
并使用以下语句查询上述两个表:Filter f1 = 1 and f2 = 1 and range-time between [t1, t2].
谁能帮我 ?非常感谢。
最佳答案
@VanThaoNguye,
是的,您可以将哈希图存储在druid中,并且可以使用绑定过滤器进行查询。
您可以在此处阅读有关绑定过滤器的更多信息:http://druid.io/docs/latest/querying/filters.html#bound-filter
关于java - 将数据存储在Druid中的数据结构,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38911793/