-
I'm getting a issue after closing allocations. I'm not sure if it's related to the new operator because I've changed it
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I believe the way this works is that both indexer-agent and indexer-service will monitor the status of the
tldr; Set indexer-agent environment:
Set indexer-service environment:
Do not set |
Beta Was this translation helpful? Give feedback.
I believe the way this works is that both indexer-agent and indexer-service will monitor the status of the
INDEXER_AGENT_NETWORK_SUBGRAPH_DEPLOYMENT
deployment by checking with your index-node (defined byINDEXER_SERVICE_GRAPH_NODE_STATUS_ENDPOINT
). Until that subgraph is synced, it'll fallback toINDEXER_AGENT_NETWORK_SUBGRAPH_ENDPOINT
for queries against the network subgraph, but once it is synced, it will use the local deployment instead. The same is true for indexer-service (with the respective env variables).INDEXER_AGENT_SERVE_NETWORK_SUBGRAPH
is a legacy approach, which had indexer-agent implement the proxy and fallback for the network subgraph at /network, and then have indexer-s…