mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-03-30 22:31:03 +00:00
We have a peerstore that keeps all data for all observed peers in memory with no eviction. This is fine when you don't discover many peers but when using the DHT you encounter a significant number of peers so our peer storage grows and grows over time. We have a persistent peer store, but it just periodically writes peers into the datastore to be read at startup, still keeping them in memory. It also means a restart doesn't give you any temporary reprieve from the memory leak as the previously observed peer data is read into memory at startup. This change refactors the peerstore to use a datastore by default, reading and writing peer info as it arrives. It can be configured with a MemoryDatastore if desired. It was necessary to change the peerstore and *book interfaces to be asynchronous since the datastore api is asynchronous. BREAKING CHANGE: `libp2p.handle`, `libp2p.registrar.register` and the peerstore methods have become async
60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
/* eslint-disable no-console */
|
|
'use strict'
|
|
|
|
const Libp2p = require('../..')
|
|
const TCP = require('libp2p-tcp')
|
|
const { NOISE } = require('@chainsafe/libp2p-noise')
|
|
const MPLEX = require('libp2p-mplex')
|
|
|
|
const pipe = require('it-pipe')
|
|
const concat = require('it-concat')
|
|
|
|
const createNode = async () => {
|
|
const node = await Libp2p.create({
|
|
addresses: {
|
|
// To signal the addresses we want to be available, we use
|
|
// the multiaddr format, a self describable address
|
|
listen: ['/ip4/0.0.0.0/tcp/0']
|
|
},
|
|
modules: {
|
|
transport: [TCP],
|
|
connEncryption: [NOISE],
|
|
streamMuxer: [MPLEX]
|
|
}
|
|
})
|
|
|
|
await node.start()
|
|
return node
|
|
}
|
|
|
|
function printAddrs (node, number) {
|
|
console.log('node %s is listening on:', number)
|
|
node.multiaddrs.forEach((ma) => console.log(`${ma.toString()}/p2p/${node.peerId.toB58String()}`))
|
|
}
|
|
|
|
;(async () => {
|
|
const [node1, node2] = await Promise.all([
|
|
createNode(),
|
|
createNode()
|
|
])
|
|
|
|
printAddrs(node1, '1')
|
|
printAddrs(node2, '2')
|
|
|
|
node2.handle('/print', async ({ stream }) => {
|
|
const result = await pipe(
|
|
stream,
|
|
concat
|
|
)
|
|
console.log(result.toString())
|
|
})
|
|
|
|
await node1.peerStore.addressBook.set(node2.peerId, node2.multiaddrs)
|
|
const { stream } = await node1.dialProtocol(node2.peerId, '/print')
|
|
|
|
await pipe(
|
|
['Hello', ' ', 'p2p', ' ', 'world', '!'],
|
|
stream
|
|
)
|
|
})();
|