Druid

Druid-Druid中schema设计技巧

2020-03-07  本文已影响0人  李小李的路

Druid的数据模型

类比关系性模型

日志聚合模型

提示

Rollup

Partitioning and sorting

高基数维度列

字符串与数字维度

Secondary timestamps

嵌套维度

{"foo":{"bar": 3}}
{"foo_bar": 3}

计算抽取数据的条数

...
"metricsSpec" : [
      {
        "type" : "count",
        "name" : "count"
      },
...
* 应该采用以下方式进行查询:
```json
...
"aggregations": [
    { "type": "longSum", "name": "numIngestedEvents", "fieldName": "count" },
...
上一篇下一篇

猜你喜欢

热点阅读