input-output-hk / mithril

Stake-based threshold multi-signatures protocol
https://mithril.network
Apache License 2.0
123 stars 39 forks source link

Cardano transactions import blocks aggregator and signer #1797

Closed jpraynaud closed 3 months ago

jpraynaud commented 3 months ago

Why

The database insertions of the Cardano transactions are blocking the aggregator and signer nodes: the state machine stops operating and the REST API is down.

After investigation it appears that the database operations are sync and thus block the async executor.

What

Investigate and fix the blocking of the nodes during the import of the Cardano transactions.

How