I am running an IPFS cluster in the cloud and I would like to pin about 100k hashes of objects from the network.
I'm currently iterating through the list using the ipfs pin add <hash>
, but it's taking forever (as some hashes can't be found immediately or take long time to be found)
Is there a way to request a IPFS node/cluster to pin add
hashes in batches? A best effort approach would suffice as I know some hashes may have disappeared or not be reacheable anymore.
Is there a way to achieve this quickly?