Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
经过几次试验,我能够将超级账本资源管理器连接到我的区块链网络,但是在将事务插入 postgre SQL DB 时该过程失败,这是日志
这里是db.log
你能帮我解决这个问题吗?
错误是:
[2018-07-15 15:19:44.140] [错误] pgservice - [插入错误] - 索引行需要 291056 字节,最大大小为 8191
我可以通过删除表事务上的索引 (transaction_chaincode_proposal_input_idx) 来解决这个问题当你有一个有点大的 JSON 事务时,就会出现这个问题。
我删除的索引的脚本:
CREATE INDEX transaction_chaincode_proposal_input_idx ON transactions USING btree (chaincode_proposal_input COLLATE pg_catalog."default");