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
This might be relevant for you @bgillesp@naure@iliailia: We did some experiments/benchmarks with the GPRC networking and used the impl in this repository as a starting point.
In our scenarios we managed to deadlock it quite consistently, due to it holding the Dashmap Ref you get from .get over await points.
This might be relevant for you @bgillesp @naure @iliailia: We did some experiments/benchmarks with the GPRC networking and used the impl in this repository as a starting point.
In our scenarios we managed to deadlock it quite consistently, due to it holding the Dashmap
Ref
you get from.get
over await points.e.g.
iris-mpc/iris-mpc-cpu/src/network/grpc.rs
Line 56 in d11df4b
Changing it to
tokio::sync::RwLock<HashMap>
does fix it, but might not be the greatest for perf.IDK if you have hit that in your current development
The text was updated successfully, but these errors were encountered: