hyperledger-archives / iroha

Iroha - A simple, decentralized ledger

Home Page:http://iroha.tech

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

StorageImpl prepared block are not enabled

aleksandrovych opened this issue · comments

What should I do to fix this warning, also what does this warning mean?

commented

Most of the postgresql queries to the WSV are prepared statement. And afaik postgresql by default doesn't enable it support. You need to specify postgres parameter max_prepared_transactions=100, or if you're using docker: docker run -d postgres:9.5 -c 'max_prepared_transactions=100'.
You may check, that it was properly set by executing SHOW max_prepared_transactions; sql query.