Hi @wangdao1
The error only happens some % of the time, correct?
I general, when using our API you should build in retry mechanisms AND backoff mechanisms. If your system is calling in parallel, the # of retries could be too high because you are not backing off. All of our endpoints have basic rate limiting but the jobs POST one you should not be calling it so frequently that you are hitting this error very often.
When you implement backoff please implement exponential backoff so that the job POSTs do not continue to try to retry over and over when you get the errors. Please see posts like https://stackoverflow.com/questions/23013220/max-retries-exceeded-with-url for example of how to catch exceptions.
Only if the error is happening persistently and very often would I think it’s a problem with connection layer, and even then I would first suspect something is wrong with the libraries being used.
Thanks,
John