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
{{ message }}
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.
Currently, in a real network, when querying the signatures from the network, this process takes a lot of time, more than 10 minutes to get all the confirms from the network. We need to investigate how to speed up this process.
The text was updated successfully, but these errors were encountered:
Apparently, when querying the DHT using the current query signers commands, we make a new P2P connection and therefore we need to wait for the peer table to populate. Then, when querying for values, it needs to establish more connections to work efficiently.
We can see this behavior when running multiple queries. The first one takes ~7min to get a set of values, while the one after takes less than a minute.
Thus, we should update the query commands and maybe implement them as RPC endpoints for orchestrator/relayer. This way we would be able to have faster queries.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently, in a real network, when querying the signatures from the network, this process takes a lot of time, more than 10 minutes to get all the confirms from the network. We need to investigate how to speed up this process.
The text was updated successfully, but these errors were encountered: