You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/environment-variables.md
+11-7Lines changed: 11 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -290,11 +290,15 @@ those.
290
290
-`GRAPH_STORE_ACCOUNT_LIKE_SCAN_INTERVAL_HOURS`: If set, enables an experimental job that
291
291
periodically scans for entity tables that may benefit from an [account-like optimization](https://thegraph.com/docs/en/indexing/tooling/graph-node/#account-like-optimisation) and marks them with an
292
292
account-like flag. The value is the interval in hours at which the job
293
-
should run. The job reads data from the `info.table_stats` materialized view, which refreshes every six hours. Expects an integer value, e.g., 24. Requires also setting
293
+
should run. The job reads data from the `info.table_stats` materialized view, which refreshes every six hours.
294
+
Expects an integer value, e.g., 24. Requires also setting
294
295
`GRAPH_STORE_ACCOUNT_LIKE_MIN_VERSIONS_COUNT` and `GRAPH_STORE_ACCOUNT_LIKE_MAX_UNIQUE_RATIO`.
295
-
-`GRAPH_STORE_ACCOUNT_LIKE_MIN_VERSIONS_COUNT`: Sets the minimum total number of versions a table must have to be considered for account-like flagging. Expects a positive integer value. No default value.
296
-
-`GRAPH_STORE_ACCOUNT_LIKE_MAX_UNIQUE_RATIO`: Sets the maximum unique entities to version ratio (e.g., 0.01 ≈ 1:100 entity-to-version ratio).
297
-
-`GRAPH_STORE_DISABLE_CALL_CACHE`: Disables the store call cache entirely. Graph node will skip writing and reading from the
298
-
call cache. The buffered block call cache will still be enabled. This option may be useful
299
-
for indexers who are running their own RPC nodes. Disabling the store call cache may have
300
-
significant performance impact. (default: false)
296
+
-`GRAPH_STORE_ACCOUNT_LIKE_MIN_VERSIONS_COUNT`: Sets the minimum total number of versions a table must have
297
+
to be considered for account-like flagging. Expects a positive integer value. No default value.
298
+
-`GRAPH_STORE_ACCOUNT_LIKE_MAX_UNIQUE_RATIO`: Sets the maximum unique entities to version ratio
299
+
(e.g., 0.01 ≈ 1:100 entity-to-version ratio).
300
+
-`GRAPH_STORE_DISABLE_CALL_CACHE`: Disables storing or reading `eth_call` results from the store call cache.
301
+
This option may be useful for indexers who are running their own RPC nodes.
302
+
Disabling the store call cache may significantly impact performance; the actual impact depends on
303
+
the average execution time of an `eth_call` compared to the cost of a database lookup for a cached result.
0 commit comments