tags:

views:

166

answers:

2

Is there any way (other than having to add custom code) to check if my application has exceeded the YQL limits that are allowed? (Not sure if per application limit or the per IP limit applies in my case) I assume that all queries would fail after the limit is reached, but I'd like to be proactive in adding measures to prevent this from happening.

I am using YQL in a critical piece in the application and since a query is issued every few seconds, I suspect I might be nearing the limit.

+1  A: 

If you exceed the hourly allowance of 10k hits you will get back an error with the code 999 - write your code accordingly to avoid being blocked.

Chris Heilmann