Sam Werbalowsky
01/11/2023, 7:51 PM/Users/myuser/mycompany/sample-dagster-flow/.venv/lib/python3.9/site-packages/dagster/_core/workspace/context.py:548: UserWarning: Error loading repository location sample:Exception: Timed out waiting for gRPC server to start after 180s with arguments
I have already set DAGSTER_GRPC_TIMEOUT_SECONDS
to 360 but it did not workdaniel
01/11/2023, 7:55 PMcode_servers.local_startup_timeout
Sam Werbalowsky
01/11/2023, 7:56 PMdaniel
01/11/2023, 7:59 PMdagster.yaml
file in a folder that the DAGSTER_HOME environment variable is set toSam Werbalowsky
01/11/2023, 8:02 PMdaniel
01/11/2023, 8:06 PMSam Werbalowsky
01/11/2023, 8:09 PMdaniel
01/11/2023, 8:10 PMdagit
- is there another form of configuration that you'd prefer?Sam Werbalowsky
01/11/2023, 8:16 PM__init__.py
files.
As far as getting it below 3 minutes - that’s how long the dbt cloud job takes, so not sure what we can do there.daniel
01/11/2023, 8:18 PMdagster dev
command that just looks for a dagster.yaml file in the folder where you ran it from and spins up dagit using it)Sam Werbalowsky
01/11/2023, 8:19 PMdaniel
01/19/2023, 9:30 PMdagster dev
command - you can now set that config we talked about earlier in a dagster.yaml file in the same folder that you run the command from, more info here: https://docs.dagster.io/deployment/guides/running-locallySam Werbalowsky
01/19/2023, 9:32 PMManan P
03/11/2023, 3:38 AMdaniel
03/12/2023, 9:56 PMserverProcessStartupTimeout
property here that controls that: https://artifacthub.io/packages/helm/dagster-cloud/dagster-cloud-agent?modal=values-schema&path=workspace.serverProcessStartupTimeout - before increasing that though I would suggest verifying that it's actually expected for your code to take more than 3 minutes just to load your definitions, as in my experience that can happen if there is a very large asset graph (or many asset graphs) being loaded but is somewhat unusualManan P
03/12/2023, 10:21 PMAbhishek Agrawal
03/12/2023, 10:43 PMdaniel
03/12/2023, 10:44 PMAbhishek Agrawal
03/12/2023, 10:59 PMserverProcessStartupTimeout
.
I only see 2 values, enabled
and servers
. Do I need to toggle enabled
to true as well?helm repo update
?daniel
03/12/2023, 11:11 PMAbhishek Agrawal
03/13/2023, 12:00 AMhelm upgrade \
--install user-cloud dagster-cloud/dagster-cloud-agent \
--namespace dagster-cloud \
--set workspace.serverProcessStartupTimeout=1200
I got a response that my release has been updated. But when I try to see the updated values in helm chart by running the helm show values
command, the workspace.serverProcessStartupTimeout
is still empty which makes me think that I did something wrong.daniel
03/13/2023, 1:35 AM