Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Counting distinct visitors is not an easy task. In web analytics for example, a visitor can visit on Monday and Thursday, but when counting unique visitors over that week, I'd expect to count that visitor only once.

count (distinct userid) for 10M visits over a month can't run too fast as aggregations can't be applied (because count distinct is not an "addable" measure).

My question is: How do Google Analytics and other web analytics platforms return unique visitors so fast? I assume statistical estimations are used. What kind? How?

share|improve this question

1 Answer

They set a cookie with a reasonable expiration. If you have the cookie already, you've come back.

share|improve this answer
the question is not specifically about cookies, it is more general - how to estimate count distinct for a high cardinality column ? – Anonymous May 10 '09 at 7:44
"How do Google Analytics and other web analytics platforms return unique visitors so fast?" They don't count distinct. – great_llama May 10 '09 at 12:24
... rather, they don't do it at reporting time. – great_llama May 10 '09 at 12:25
I assume they have a batch operation that pre-calculate everything needed for the report to run fast. What is that pre-calculate operation? – Anonymous May 10 '09 at 12:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.