https://dagster.io/ logo
#dagster-support
Title
# dagster-support
l

Lindsay S

01/16/2023, 12:06 AM
Hi, I am having some trouble with everything timing out or being very sluggish including the dagit ui opening showing any logs. Any idea how I can solve this? Here is the error. Using version 1.1.10 deployed in docker containers on ec2.
p

prha

01/18/2023, 12:37 AM
Hi Lindsay. Can you share what storage you’re using? Is it Postgres storage? Or the default sqlite storage?
One thing that comes to mind is to check what schema version you’re using. You can do this on postgres by running the following:
Copy code
select * from alembic_version;
If you haven’t run
dagster instance migrate
in a while, that could help a good deal, as we’ve made a bunch of query optimizations (adding db indexes, etc).
The other thing I would look at is to check the capacity of the DB you’re using. If you’re running out of space, you may need to do some cleanup, like deleting old runs, to reclaim some space
2 Views