Druid(druid监控页面)_6

  本篇文章为你整理了Druid(druid监控页面)的详细内容,包含有druid连接池配置 druid监控页面 druid是干嘛的 druid被阿里放弃原因 Druid,希望能帮助你了解 Druid。

  This module provides Apache Druid (incubating) aggregators for distinct counting based on HLL sketch from datasketches library. At ingestion time, this aggregator creates the HLL sketch objects to be stored in Druid segments. At query time, sketches are read and merged together. In the end, by default, you receive the estimate of the number of distinct values presented to the sketch. Also, you can use post aggregator to produce a union of sketch columns in the same row.

  You can use the HLL sketch aggregator on columns of any identifiers. It will return estimated cardinality of the column.

  To use this aggregator, make sure you include the extension in your config file:

  

druid.extensions.loadList=[ druid-datasketches ]

 

  

 

  Aggregators

  

{

 

   type : HLLSketchBuild ,

   name : output name ,

   fieldName : metric name ,

   lgK : size and accuracy parameter ,

   tgtHllType : target HLL type

  

{

 

   type : HLLSketchMerge ,

   name : output name ,

   fieldName : metric name ,

   lgK : size and accuracy parameter ,

   tgtHllType : target HLL type

  

 

  
log2 of K that is the number of buckets in the sketch, parameter that controls the size and the accuracy. Must be a power of 2 from 4 to 21 inclusively.

  no, defaults to 12

  
The type of the target HLL sketch. Must be HLL 4 , HLL 6 or HLL 8

  no, defaults to HLL 4

  
field : post aggregator that returns an HLL Sketch ,

   numStdDev : number of standard deviations: 1 (default), 2 or 3

  

 

 

  Union

  

{

 

   type : HLLSketchUnion ,

   name : output name ,

   fields : array of post aggregators that return HLL sketches ,

   lgK : log2 of K for the target sketch ,

   tgtHllType : target HLL type

  

 

  Sketch to string

  Human-readable sketch summary for debugging

  

{

 

   type : HLLSketchToString ,

   name : output name ,

   field : post aggregator that returns an HLL Sketch

  

 

  以上就是Druid(druid监控页面)的详细内容,想要了解更多 Druid的内容,请持续关注盛行IT软件开发工作室。

郑重声明:本文由网友发布,不代表盛行IT的观点,版权归原作者所有,仅为传播更多信息之目的,如有侵权请联系,我们将第一时间修改或删除,多谢。

留言与评论(共有 条评论)
   
验证码: