Performance issues with DagsterGraphQL API #18018
Replies: 1 comment
-
The timeout error here occurring is a DB statement timeout the webserver uses. You can control the DB statement timeout of your webserver using the The data volume that will cause this query to timeout is a function of the resources that your DB has, so its hard to cite any specific numbers.
The best way to understand why it is not performing well is to run an If this is a Dagster deployment that you have been using over a number of versions, you may need to run Its also viable to add your own custom indexes that are suited to specific queries you want to be more performant. |
Beta Was this translation helpful? Give feedback.
-
Hi,
I use DagsterGraphQL to query run data from dagster API, and when I use tags in my query. query times out. Below is my query:
And this errors out timeout in GraphiQL UI and in my code. See the error below.
my_tag
but may not be tagged withmy_tag2
dagster==1.5.6
My questions and suggestions are:
run_tags
tableBeta Was this translation helpful? Give feedback.
All reactions