我们对使用高基数索引感兴趣。(众所周知,这对 Elastic Search 来说是个问题)
我们已经从您那里得知,对于
select count(distinct high_cardinality_field) from my_table
你已经有一些优化来计算它。有朝一日是否有可能写出类似的东西:
select count_via_hyperloglog(high_cardinality_field) from my_table
将 count_via_hyperloglog 作为 UDF 或其他东西,因为现在可以通过 ES 插件在 ES 中使用?