As Aerospike recently announced availability of new HyperLogLog feature in its recent release, I wonder what is the accuracy of intersecting one data-structure of quite a big cardinality and another data-structure with a really small one?
For example, one HLL represents all the women of the US, and the second one - all the astronauts of the US and we need to answer how many women of the US are astronauts.
You are describing a case where HLL intersection accuracy is poor. You can place relative error bounds on an HLL if you supply n_minhash_bits. By doing so the HLL uses HyperMinHash algorithms for calculating similarity and intersection.