In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/03 Report--
The aggregation of ES is one of its major features. However, for performance reasons, the aggregation of ES is in units of fragmented Shard, not Index, so
The accuracy of some aggregations needs to be noted. For example: TermAggregations.
The cardinality aggregation of es uses the hyperloglog algorithm. Out of curiosity, I got to know it.
In massive data scenarios, we usually encounter two problems:
Data weighting. For example, in the push message scenario, repeated messages disturb the user, and when the user issues coupons, it is a loss.
Pv/uv statistics. In such scenarios, there is no need to haggle over pennies for accuracy.
How to solve these two kinds of problems efficiently?
For data weighting, we can use a Bloom filter. The java sample column code is as follows:
BloomFilter bloomFilter = BloomFilter.create (new Funnel () {private static final long serialVersionUID = 1L; @ Override public void funnel (String arg0, PrimitiveSink arg1) {arg1.putString (arg0, Charsets.UTF_8);}, 1024 / 1024 / 32); bloomFilter.put ("asdf"); bloomFilter.mightContain ("asdf")
For counting, we can use the HyperLogLog algorithm, which is already implemented in ES.
In fact, the Bloom filter can also directly achieve the function of the HyperLogLog algorithm.
Here are a few questions left over, which can be added after careful consideration:
What are the applicable scenarios for the efficiency and memory consumption of BloomFilter and HyperLogLog algorithms under the same order of data?
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.