在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:application-research/autoretrieve开源软件地址:https://github.com/application-research/autoretrieve开源编程语言:Go 97.8%开源软件介绍:AutoretrieveAutoretrieve is a standalone gateway server / Bitswap provider that bridges Filecoin Graphsync content over to Bitswap clients. When a Bitswap client requests data from Autoretrieve, Autoretrieve asks either Estuary or an STI indexer which Filecoin service providers are hosting it, starts a retrieval deal with a selected SP, and streams the incoming blocks to the Bitswap client. UsageAutoretrieve uses Docker with Buildkit for build caching. Docker rebuilds are quite fast, and it is usable for local development. Check the docker-compose documentation for more help. $ DOCKER_BUILDKIT=1 docker-compose up You may optionally set By default, config files and cache are stored at Internally, the Docker volume's path on the image is ConfigurationSome CLI flags and corresponding environment variables are available for basic configuration. For more advanced configuration, Configurations are applied in the following order, from least to most important:
YAML Exampleadvertise-endpoint-url: # leave blank to disable, example https://api.estuary.tech/autoretrieve/heartbeat (must be registered)
advertise-endpoint-token: # leave blank to disable
lookup-endpoint-type: indexer # indexer | estuary
lookup-endpoint-url: https://cid.contact # for estuary endpoint-type: https://api.estuary.tech/retrieval-candidates
max-bitswap-workers: 1
routing-table-type: dht
prune-threshold: 1GiB # 1000000000, 1 GB, etc. Uses go-humanize for parsing. Table of valid byte sizes can be found here: https://github.com/dustin/go-humanize/blob/v1.0.0/bytes.go#L34-L62
pin-duration: 1h # 1h30m, etc.
log-resource-manager: false
log-retrieval-stats: false
disable-retrieval: false
cid-blacklist:
- QmCID01234
- QmCID56789
- QmCIDabcde
miner-blacklist:
- f01234
- f05678
miner-whitelist:
- f01234
default-miner-config:
retrieval-timeout: 1m
max-concurrent-retrievals: 1
miner-configs:
f01234:
retrieval-timeout: 2m30s
max-concurrent-retrievals: 2
f05678:
max-concurrent-retrievals: 10 Help$ autoretrieve --help
NAME:
autoretrieve - A new cli application
USAGE:
autoretrieve [global options] command [command options] [arguments...]
COMMANDS:
gen-config Generate a new config with default values
print-config Print detected config values as autoretrieve sees them
check-cid Takes a CID argument and tries walking the DAG using the local blockstore
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--data-dir value [$AUTORETRIEVE_DATA_DIR]
--lookup-endpoint-url value Indexer or Estuary endpoint to get retrieval candidates from [$AUTORETRIEVE_LOOKUP_ENDPOINT_URL]
--lookup-endpoint-type value Type of endpoint for finding data (valid values are "estuary" and "indexer") [$AUTORETRIEVE_LOOKUP_ENDPOINT_TYPE]
--disable-retrieval Whether to disable the retriever module, for testing provider only (default: false) [$AUTORETRIEVE_DISABLE_RETRIEVAL]
--routing-table-type value [dht|fullrt|disabled] [$AUTORETRIEVE_ROUTING_TABLE_TYPE]
--log-resource-manager Whether to present output about the current state of the libp2p resource manager (default: false) [$AUTORETRIEVE_LOG_RESOURCE_MANAGER]
--log-retrievals Whether to present periodic output about the progress of retrievals (default: false) [$AUTORETRIEVE_LOG_RETRIEVALS]
--help, -h show help (default: false) |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论