Hello Folks, Need to handle the following error fo...
# community-help
s
Hello Folks, Need to handle the following error for Python client,
Copy code
elif http_code == 503:
     return ServiceUnavailable
Any suggestions?
k
Handle meaning? If the server is under heavy write load, and writes are lagging behind indexing queue then it returns 503. You backoff and retry reads and ingest writes more slowly.
s
Understood
j