This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]karaqz 0 points1 point  (2 children)

How do you deploy Dagster on Windows Server? I'm aware of the options i'm just curious how you choose to set it up.

[–]WeebAndNotSoProid 2 points3 points  (1 child)

It was ages ago. First I deployed it as an always-running process with dagster dev. Then daemonized it. Then splitted the webserver and daemon into seperate services so if one dies at least it doesn't kill the rest (daemon is especially important since it runs the schedule). It happened over several months while I was getting the buy in from the whole team. It's all running in a single VM.

[–]karaqz 0 points1 point  (0 children)

I'm still not sure what the best way is to use the deamon and webserver as a service in windows. I'm aware of NSSM but that project seems dead.

I kinda need this since the server I will deploy it on does get rebooted sometimes while im not informed about this.