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
CGrpcService class uses std::lock_guard in order to lock the processing of a single request per partition. If request processing hangs then all subsequent requests of the same partition will not be processed.
One can implement a try_lock with a timeout. A request timeout can be used. If the request can't be processed an error must be returned.
The text was updated successfully, but these errors were encountered:
CGrpcService
class usesstd::lock_guard
in order to lock the processing of a single request per partition. If request processing hangs then all subsequent requests of the same partition will not be processed.One can implement a
try_lock
with a timeout. A request timeout can be used. If the request can't be processed an error must be returned.The text was updated successfully, but these errors were encountered: