Edit: as a priority, the timeout should be increased. It feels like Hasura could provide a response with a larger timeout.
Some features in the transitlog-ui require data for a full day, and Hasura/Postgres does not seem to be able to handle queries with only a where clause for the oday column. Any query that is only limited to a day with no other where clauses results in a timeout. Adding limit does not help.
Not sure that the solution is. Maybe Postgres or hasura just need more RAM or the timeout needs to be increased. Indices should also be added to the columns that are queried for the most.
Edit: as a priority, the timeout should be increased. It feels like Hasura could provide a response with a larger timeout.
Some features in the transitlog-ui require data for a full day, and Hasura/Postgres does not seem to be able to handle queries with only a
where
clause for theoday
column. Any query that is only limited to a day with no other where clauses results in a timeout. Addinglimit
does not help.Example query:
Not sure that the solution is. Maybe Postgres or hasura just need more RAM or the timeout needs to be increased. Indices should also be added to the columns that are queried for the most.