Skip to content

Commit

Permalink
docs: subgraph freshness
Browse files Browse the repository at this point in the history
  • Loading branch information
tilacog committed Oct 10, 2023
1 parent 2e23f93 commit ff611d1
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions docs/subgraph-freshness.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Subgraph Freshness Checker Feature

## Overview

The `SubgraphFreshnessChecker` class is introduced to enhance the reliability and timeliness of subgraph queries in environments where the subgraph might lag significantly behind the most recent block on the blockchain. It primarily operates by validating subgraph freshness and issuing warnings if the subgraph is not sufficiently synchronized with the latest blockchain state.

## Key Concepts

- **Subgraph Freshness:** A metric to determine how synchronized a subgraph is with the main blockchain. It's gauged by comparing the latest indexed block in the subgraph with the most recent block on the network.

## Feature Details

### 1. Continuous Retry Mechanism
The `SubgraphFreshnessChecker` perpetually retries subgraph queries under circumstances where the subgraph is notably behind the most recent block on the blockchain. A warning, including the current block distance from the chain head, is issued if this condition is detected.

### 2. Configuration
Configuration options have been expanded to allow control over the subgraph freshness checking mechanism via network specification files and Command Line Interface (CLI) parameters:

- **maxBlockDistance:** An integer defining the acceptable distance (in blocks) between the latest indexed block in the subgraph and the most recent block on the network. If the distance exceeds this value, the subgraph is considered "stale," prompting a retry mechanism and possibly a warning.

- **freshnessSleepMilliseconds:** An integer dictating the waiting duration (in milliseconds) before a query is retried when the subgraph is deemed stale.

### Example Configuration

Here is a snippet of an Arbitrum network specification file with the suggested options for Arbitrum One and Arbitrum Goerli:

```yaml
subgraphs:
maxBlockDistance: 60
freshnessSleepMilliseconds: 10000
```
## Practical Implications
Upon investigating testnets for block distances, we observed that the block distances for Arbitrum-Goerli typically fall under a 50-block threshold. Conversely, no significant distances were recorded in Goerli.
The following default values have been established based on **Ethereum** observations:
- **maxBlockDistance:** 0 blocks
- **freshnessSleepMilliseconds:** 5000 (5 seconds)
The recommended settings for **Arbitrum** networks are:
- **maxBlockDistance:** 60 blocks
- **freshnessSleepMilliseconds:** 10000 (10 seconds)
### Potential Risk Warning
Suppose the Agent or Service utilizes the default (Ethereum) settings on Arbitrum networks. In that case, a warning will inform users about the risk that queries may forever be considered non-fresh.
Adjust the `maxBlockDistance` and `freshnessSleepMilliseconds` according to each network condition.

## Disabling this feature

This feature can be virtually turned off by setting a very high value for the **maxBlockDistance** option, which will effectively cause the freshness check always to pass.

0 comments on commit ff611d1

Please sign in to comment.