In the last couple of days HackerNews became super slow to access from AWS (~5 min average to load a page).
Any idea what's going on? is it intentional?
Sigh...My "Hacker News Reader" Android app, with 7,000 active installs, depended on a piece of Sinatra/Heroku code to do the screen-scraping. My app is dead for now. I'm going to port the code to Java and get rid of the idea of having an intermediary. I thought it was safer if the screen scraping was centralized so that I could fix it once and for all when things changed, but it worked out that it was a single point of failure.
Yeah, I'm also porting all of my scraping code to the device itself. It's a bitch, but HN is so ban happy and unreliable that it's becoming a requirement.
5 comments
[ 3.1 ms ] story [ 22.1 ms ] threadIt works, but has its own problems, specifically intermittent 500 failures. So I wrap all my requests in something that can retry them: https://github.com/leknarf/hn-notify/blob/master/hn.py