Live data from Hacker News

Ask HN: What is the most amount of people you have had on your site at one time?

news.ycombinator.com

21–30 of 46 posts

Re: Ask HN: What is the most amount of people you have had on your site at one time?

#21
Over a hundred thousand. I was the Senior Web Producer (head geek) at Bravo, the cable channel, and we did live voting during "Project Runway" first-run episode commercial breaks, where viewers would respond to on-air questions either through our site or through SMS. Vote tallies were displayed during later commercial breaks, after a competitor had been eliminated. People who voted would also be entered in contests to get prizes and their names splashed on screen during the live broadcasts.

Then we'd do it all again, live, for the West Coast airing of the episode, the same night.

Season finale episodes brought roughly a bajillion people to our site simultaneously, because everyone wanted to "participate" in telling the world which contestant they wanted to win the season.

Thank God for Akamai...

Re: Ask HN: What is the most amount of people you have had on your site at one time?

#22

Our company (www.radfan.com) was featured on BBC News Look North for 90 seconds (no web address mentioned so pure google searches) and I watched our google analytics real time climb to 1200 people simultaneous. We were on BBC Radio 2 Drive Time the Friday before (web address mentioned this time) and we got about the same. Shopify did an amazing job dealing with the traffic spike. Good job getting on Click, that's awe…

Thanks very much. And neat site - I actually have used this before!

Re: Ask HN: What is the most amount of people you have had on your site at one time?

#23

When one of my articles made it to the #2 spot on Hacker News, I was watching my Google Analytics Real-Time stats pretty closely. It got as high as ~700 people on at one point. (Here's the submission: https://news.ycombinator.com/item?id=5062761 )

Our recent post on the Webpop blog about a/b testing a puppy photo (http://www.webpop.com/blog/2013/04/16/can-a-puppy-sell-a-cms) got to #2 as well.

Sat at a pretty constant 250 online visitors for hours. Pretty sure the brief peak must have been close to 700 as well.

Fortunately Webpop is built to handle that kind of traffic, so we never had to worry about the site crumbling under the load...

Re: Ask HN: What is the most amount of people you have had on your site at one time?

#24
I'm curious about what you mean by 'most amount of people you have had on your site at one time'. This can mean a few different things...

1) For monitoring applications like Chartbeat, IIRC they count a user as concurrent if they are on the site anytime within the past 30 seconds. 2) I've seen real-time monitoring systems count a concurrent user as any visitor in the last 5 seconds. 3) Lastly, the only real raw numbers that I've seen are the traffic hits through an F5 load balancer to a set of backend servers, and that is the only number that will give you an unbiased # hits per second in real-time. Unfortunately, this amounts to requests (HTML) to the server and may not be a 1:1 ratio with users.

So in terms of what I've seen, it depends on the type of calls and the application. For the EA forums (forums.ea.com) which I was in charge of up until March 2013...

For #1, forums would regularly reach 15,000 on the launch of a new game. We would sustain that for ~12 hours [1]. On just an average normal non-event day, it pushes 3000 concurrents. For #2, I've seen something north of 3000 for EA forums. For #3, the F5 would report peaks of 200 requests per second.

When I built the Campus Wide Login (http://www.cwl.ubc.ca) SSO auth system for UBC about 11 years ago (still in use today) we would have almost 50-75% of the full campus using it at once, which is about 30k concurrents (unfortunately I didn't have access to the numbers over the F5 LB). However, most of these calls were for the HTML which then went through an SOA (XML-RPC, ugh) architecture, so I'm sure the req/s was much higher on the XML-RPC backend.

[1] this is a feat in itself because most of the forum data is not cached because the business wanted the data in real-time, so the read databases would receive a lot of traffic when the web servers spiked.

Edit: formatting

Re: Ask HN: What is the most amount of people you have had on your site at one time?

#25
post #23

When one of my articles made it to the #2 spot on Hacker News, I was watching my Google Analytics Real-Time stats pretty closely. It got as high as ~700 people on at one point. (Here's the submission: https://news.ycombinator.com/item?id=5062761 )

Our recent post on the Webpop blog about a/b testing a puppy photo ( http://www.webpop.com/blog/2013/04/16/can-a-puppy-sell-a-cms ) got to #2 as well. Sat at a pretty constant 250 online visitors for hours. Pretty sure the brief peak must have been close to 700 as well. Fortunately Webpop is built to handle that kind of traffic, so we never had to worry about the site crumbling under the load...

Yeah, I'd be curious to see traffic data from people who got to various spots on the front page and see what trends emerge.

Though, now I'm remembering that the post was also on /r/webdev and /r/web_design, so that skews things a bit.

Re: Ask HN: What is the most amount of people you have had on your site at one time?

#26
post #22

Our company (www.radfan.com) was featured on BBC News Look North for 90 seconds (no web address mentioned so pure google searches) and I watched our google analytics real time climb to 1200 people simultaneous. We were on BBC Radio 2 Drive Time the Friday before (web address mentioned this time) and we got about the same. Shopify did an amazing job dealing with the traffic spike. Good job getting on Click, that's awe…

Thanks very much. And neat site - I actually have used this before!

No probs, good to hear!

For those interested in how an ecommerce site stacks up with traffic spikes, Shopify did a great job, the weak link was paypal. We had a good number of (potential) customers email to us to say that paypal locked up during payment, we were taking several orders a minute for a while there but still annoying that some were dropped.

One of our mailing lists also grew by 1200 names in 3 hours and Mail Chimp coped fine.

Re: Ask HN: What is the most amount of people you have had on your site at one time?

#28
My site made it to #1 on hacker news last wednesday for a couple of hours. It peaked at 287 concurrents. Unfortunately, I wasn't expecting that kind of surge and only had it on a small linode, so it couldn't handle the traffic. Since then, I've moved it to an S3 bucket with cloudfront as a cdn. http://www.appraptor.com

Re: Ask HN: What is the most amount of people you have had on your site at one time?

#29
I used to be the tech lead for the UI and much of the infrastructure behind ovidsp.ovid.com. We regularly had 20000-50000 concurrent user sessions active. Each one had a dedicated backend process, so we had an exact count of active users. The UI served over 1 billion http requests per year... using a custom http server I wrote in Perl :)
Post reply on HN