Hi,
This is two totally separate things --
- the web server does rate limiting. This is grouped by IP address, and it limits to 5 requests/second per URL, and 50 requests per 10 seconds across the whole site. Depending on the network setup, many users may be coming from the same IP. I think you should now get an HTTP error code 429 to indicate rate limiting.
- once an image is submitted, it goes into a queue to be solved. Currently there seems to be a large backlog -- 1700 images from 170 distinct users.
(I think I caused some of this, because I was running a process to compress our database backups, but it looks like that took a huge amount of memory and caused things to grind to a halt for a couple of hours...)
The backlog should clear over the next few hours. The rate limiting is here to stay.
What exactly are you doing? You're batch processing some big data set? Using some script to submit things via the API? Images? xy-lists?
cheers,
dustin