批量插入Hyperledger Fabric可以防止超时

ang*_*okh 7 couchdb hyperledger hyperledger-fabric

我们将记录批量插入Hyperledger Fabric.但是,我们正在努力解决问题.即使我们不断增加超时,我们也会在稍后发生此错误.

每个事务PutState在循环中使用所有这些记录插入1000条记录(盲插入,读取集中没有任何内容).我们还将BatchTimeout增加到3s,将MaxMessageCount增加到100,这样我们就可以获得更大的块(我们看到每个块有4个事务,因此每个块将4000个[每个事务4x1000个记录]记录插入到分类帐中).

当bulk_update为CouchDB失败并且对等方必须分别为每个(每个事务的1000个记录)记录重试时,查询花费的时间太长并超出了超时.但这是我们的假设.我们也发现了这个:https://jira.hyperledger.org/browse/FAB-10558,但它说已经修复了v1.2.0,这是我们正在使用的版本.

我们得到的错误net/http: request canceled (Client.Timeout exceeded while reading body)来自以下日志:

我们尝试在对等容器中设置以下环境变量:

CORE_CHAINCODE_EXECUTETIMEOUT=120s

并且req.setProposalWaitTime(120 * 1000)在使用Java SDK时也是如此.

但是,我们稍后会得到相同的超时错误.因此,我们可以将超时变量增加到更大的数字,但我们相信它会在稍后再次发生.插入CouchDB所需的时间是否与CouchDB中的记录数成比例?当文档数量增加时,更新索引会花费更多时间吗?


我们得到的运行时错误日志(插入2-4百万条记录后)如下:

    October 5th 2018, 04:36:38.646  github.com/hyperledger/fabric/core/committer.(*LedgerCommitter).CommitWithPvtData(0xc4222db8c0, 0xc451e4f470, 0xc4312ddd40, 0xdf8475800)
    October 5th 2018, 04:36:38.646  github.com/hyperledger/fabric/gossip/state.(*GossipStateProviderImpl).deliverPayloads(0xc4220c5a00)
    October 5th 2018, 04:36:38.646  goroutine 283 [running]:
    October 5th 2018, 04:36:38.646      /opt/gopath/src/github.com/hyperledger/fabric/core/committer/committer_impl.go:105 +0x6b
    October 5th 2018, 04:36:38.646      /opt/gopath/src/github.com/hyperledger/fabric/gossip/privdata/coordinator.go:236 +0xc3b
    October 5th 2018, 04:36:38.646      /opt/gopath/src/github.com/hyperledger/fabric/gossip/state/state.go:771 +0x6c
    October 5th 2018, 04:36:38.646  
    October 5th 2018, 04:36:38.646  github.com/hyperledger/fabric/core/ledger/kvledger.(*kvLedger).CommitWithPvtData(0xc421fb1860, 0xc451e4f470, 0x0, 0x0)
    October 5th 2018, 04:36:38.646  github.com/hyperledger/fabric/gossip/privdata.(*coordinator).StoreBlock(0xc422286e60, 0xc42462cd80, 0x0, 0x0, 0x0, 0xc4312dde78, 0x7329db)
    October 5th 2018, 04:36:38.646  github.com/hyperledger/fabric/gossip/state.(*GossipStateProviderImpl).commitBlock(0xc4220c5a00, 0xc42462cd80, 0x0, 0x0, 0x0, 0x0, 0x0)
    October 5th 2018, 04:36:38.646  panic: Error during commit to txmgr:net/http: request canceled (Client.Timeout exceeded while reading body)
    October 5th 2018, 04:36:38.646      /opt/gopath/src/github.com/hyperledger/fabric/core/ledger/kvledger/kv_ledger.go:273 +0x870
    October 5th 2018, 04:36:38.646      /opt/gopath/src/github.com/hyperledger/fabric/gossip/state/state.go:558 +0x3c5
    October 5th 2018, 04:36:38.646      /opt/gopath/src/github.com/hyperledger/fabric/gossip/state/state.go:239 +0x681
    October 5th 2018, 04:36:38.646  created by github.com/hyperledger/fabric/gossip/state.NewGossipStateProvider
    October 5th 2018, 04:36:03.645  2018-10-04 20:36:00.783 UTC [kvledger] CommitWithPvtData -> INFO 466e[0m Channel [mychannel]: Committed block [1719] with 4 transaction(s)
    October 5th 2018, 04:35:56.644  [33m2018-10-04 20:35:55.807 UTC [statecouchdb] commitUpdates -> WARN 465c[0m CouchDB batch document update encountered an problem. Retrying update for document ID:32216027-da66-4ecd-91a1-a37bdf47f07d
    October 5th 2018, 04:35:56.644  [33m2018-10-04 20:35:55.866 UTC [statecouchdb] commitUpdates -> WARN 4663[0m CouchDB batch document update encountered an problem. Retrying update for document ID:6eaed2ae-e5c4-48b1-b063-20eb3009969b
    October 5th 2018, 04:35:56.644  [33m2018-10-04 20:35:55.870 UTC [statecouchdb] commitUpdates -> WARN 4664[0m CouchDB batch document update encountered an problem. Retrying update for document ID:2ca2fbcc-e78f-4ed0-be70-2c4d7ecbee69
    October 5th 2018, 04:35:56.644  [33m2018-10-04 20:35:55.904 UTC [statecouchdb] commitUpdates -> WARN 4667[0m CouchDB batch document update encountered an problem. ... and so on
Run Code Online (Sandbox Code Playgroud)

Vis*_*han 4

[33m2018-10-04 20:35:55.870 UTC [statecouchdb] commitUpdates -> WARN 4664[0m CouchDB batch document update encountered an problem. Retrying update for document ID:2ca2fbcc-e78f-4ed0-be70-2c4d7ecbee69

上述表明POST http://localhost:5984/db/_bulk_docks失败,因此单独尝试了各个文件。

查看可配置的不同参数,在分类帐部分requestTimeout下增加可能值得一试。

这可以通过在 docker-compose 中为对等容器设置以下环境变量来完成:

CORE_LEDGER_STATE_COUCHDBCONFIG_REQUESTTIMEOUT=100s

与配置参数关联的环境变量的名称可以通过查看答案来得出。

配置CORE_CHAINCODE_EXECUTETIMEOUTproposalWaitime可能不会产生影响,因为下游的某些其他连接(这里是Peercouchdb之间的 http 连接)超时,然后超时异常被传播。