Query Timeout
Content
When running the queries that are processing vast amount of data, the query engine may timeout
How to solve
- appropriately reduce the amount of query data through filter conditions
FP Console Output
Your chart took too long
Code Example
select * from ethereum_token_transfers
can change to :
select * from ethereum_token_transfers where block_timestamp>date_add('day',-90,current_date)
Updated about 2 years ago