Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exclude inga and add FDB-backed indexers as provider backends #2011

Merged
merged 1 commit into from
Jun 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,15 @@ spec:
- name: indexstar
args:
- '--translateNonStreaming'
# Use service names local to the namespace over HTTP to avoid
# TLS handshake overhead.
- '--providersBackends=http://inga-indexer:3000/'
# Exclude inga because it is suffering from high CPU usage that then results
# in large influx of 404s due to provider info lookup failing via dhfind instances.
# - '--providersBackends=http://inga-indexer:3000/'

# New FDB-backed new indexers
- '--providersBackends=http://arya-indexer:3000/'
- '--providersBackends=http://bala-indexer:3000/'
- '--providersBackends=http://cera-indexer:3000/'

# Keeping old indexers connected as providers backends for redundancy
- '--providersBackends=http://oden-indexer:3000/'
- '--providersBackends=http://kepa-indexer:3000/'
Expand Down