Chain performance improvement #17307
Unanswered
pythonberg1997
asked this question in
Q&A
Replies: 1 comment
-
Hey @pythonberg1997 thanks for opening an issue, but this is sort of a blanket critique that isn't really capturing what's going on, especially without context and raw numbers. A few things:
Perhaps you can share some profiles or numbers with us to see where exactly you're experiencing bottlenecks? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Summary
The performance of cosmos based chain is poor.
Problem Definition
The cosmos chain has low TPS. I think there are two obvious existential problems:
For example, a txn may be executed(
baseapp.runTx()
) in three different stages(PrepareProposal/ProcessProposal
,CheckTx
,DeliverTx
). So I think we could find a way to do caching.There's a global mutex in tendermint
localClient
. But some operations are read operations and can be executed concurrently like abci query.Work Breakdown
I was wondering if you guys had any thoughts on the poor performance so far.
Beta Was this translation helpful? Give feedback.
All reactions