You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the gRPC service and multiple clients connecting at the same time , there are exceptions thrown from time to time. I.e. it's currently not reliable for multi-threading.
One quick fix is to disable multithreading for gRPC globally, so only one request at a time could be served. One can achieve that by executing the following when executing the gRPC main loop:
When running the gRPC service and multiple clients connecting at the same time , there are exceptions thrown from time to time. I.e. it's currently not reliable for multi-threading.
One quick fix is to disable multithreading for gRPC globally, so only one request at a time could be served. One can achieve that by executing the following when executing the gRPC main loop:
But of course, enabling multi-threaded work-loads would be best.
The text was updated successfully, but these errors were encountered: