https://dagster.io/ logo
Title
p

Phil Sheard

05/17/2023, 2:49 PM
Hi everyone. First post so go easy on me. We're using Dagster Cloud in hybrid mode - Dagster Cloud for our UI and scheduling, but with code running via an agent process on a private VM. This is functional but needs manual intervention to redeploy code. We haven't setup CI/CD yet so if there's a serverless option that automatically deploys that would be a shortcut for us. Does anyone have good experience of using any Docker or serverless hosting for agents? We've tried Digital Ocean's App platform but that doesn't support
multiprocessing
required by Dagster.
z

Zach

05/17/2023, 3:48 PM
For my hybrid deployment I use an agent and user code images deployed in ECS - it costs next to nothing, and I basically never touch it except to restart it once in a while so it can update versions. You could also look into Dagster Serverless if you don't want to manage any of the infra
You can also use the Dagster Cloud Github Action for seamless deployment of your code on push
p

Phil Sheard

05/17/2023, 3:53 PM
Thanks @Zach, these are great options to look into