Hello, a question for the community, Can I deploy ...
# ask-community
l
Hello, a question for the community, Can I deploy dagster in google cloud run? if yes, anyone could point me to a guide or documentation, please?
p
You can, but I've found that because the frontend uses websockets, it makes using cloud run not cost effective. Cloud Run counts a websocket connection as a live query and bills it accordingly. So you probably don't want to run dagit in Cloud Run. Running the dagster daemon is probably also not cost effective since it needs to run all the time. You can probably run the code location server in Cloud Run, but I haven't tried this option personally.
l
Thanks a lot for your prompt response. Your answer makes me think that, maybe dagster is not fit for my particular use case.
p
I can't say whether it is or not, but dagster is definitely runnable in Cloud Run, it's just perhaps not the most cost effective way