ipfs/kubo

Push CID to DHT when publishing a name

开放

#7,487 创建于 2020年6月17日

 (4 条评论) (1 个反应) (0 位负责人)Go (2,725 个派生)batch import
P2effort/hoursexp/intermediatehelp wantedkind/enhancementstatus/ready

仓库指标

星标
 (13,906 个星标)
PR 合并指标
 (PR 指标待抓取)

描述

I investigated a bit a performance issue - where it takes quite a long time before data behind an IPNS record can be resolved via the DHT.

It seems that the newly added content is too large, so there's a large backlog of newly added pins and MFS data on the node, that it is able to push the CID for the name record in a reasonable amount of time.

A dedicated ipfs dht provide <CID> before running ipfs name publish --key=<keyID> <CID> solved this issue for me.

So there seems to be an improvement opportunity:

If the CID which should be published as a name record is still somewhere on the queue for sending it to the DHT as provider IPFS could give this CID priority, that it will be the next CID to be published. This way ipfs makes rue that the new name record will be resolvable via DHT.

贡献者指南