Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

🗂️ Cloudflare queue consumer that submits blocks to gendex to build block indexes

License

Notifications You must be signed in to change notification settings

web3-storage/gendex-consumer

Repository files navigation

gendex-consumer

GitHub Workflow Status License: Apache-2.0 OR MIT

Cloudlfare queue consumer that submits blocks to gendex in order to build block indexes for uploaded DAGs.

Usage

Send a message to the queue with the format:

interface Message {
  /**
   * Base encoded string CIDs of CAR shards the block (and it's descendents)
   * can be found.
   */
  shards: string[]
}

Passing shard CIDs allows gendex to not require a root CID and thus allows it to not require a DUDEWHERE index (to lookup shard CIDs). It also removes the hard dependency on SATNAV, in the event that there are no indexes in SATNAV for the passed shards, they can be materialized from the source data as needed.

In current NFT.Storage and web3.storage APIs we know the shards because linkdex returns them (and we'll only submit to gendex when linkdex says that a DAG is "Complete" in structure). In the new w3up APIs our upload/add invocation includes root and shards allowing us to submit to gendex when this call is made.

Setting recursive: false allows individual blocks requested by bitswap that are not yet indexed in blockly to be added from information available in the current Elastic IPFS DynamoDB.

Manually add a message to the queue

e.g.

curl --header "Content-Type: application/json" \
  --request POST \
  --data '{"block":"bafybeigwaxpc64gtjs25brjozyktwhdnr3hirrbnjyq746gd26mhe7jllm","shards":["bagbaierarysgidzym55qcdud66parpzxo6jb2wj3vpzax6lhtw7vaxmy224a"],"root":"bafybeigwaxpc64gtjs25brjozyktwhdnr3hirrbnjyq746gd26mhe7jllm","recursive":true}' \
  https://gendex-consumer-env.org.workers.dev/send

Contributing

Feel free to join in. All welcome. Please open an issue!

License

Dual-licensed under MIT + Apache 2.0

About

🗂️ Cloudflare queue consumer that submits blocks to gendex to build block indexes

Resources

License

Stars

Watchers

Forks

Packages

No packages published