Hi team, I’m interesting in a standard serverless ...
# dagster-plus
n
Hi team, I’m interesting in a standard serverless package. I tried calculating the price but I’m not sure if I did it right, here is my calculation: 30 jobs: each job takes 1 minute to finish So, It will cost me (per month) -> 30*1*30*0.04 = $36. Am I right? Or are there any charges that I missed?
d
Hi Nichapol - the important calculation is the amount of time that each step takes in the job. if the steps run one after the other, then that's probably about the same amount of time as the job, so your calculation is probably roughly correct (although you could leave out time it takes to spin up the job before any ops start). But if you have, say, 5 ops running in parallel, you'd need to add up their times individually
❤️ 1
n
Got it, Thanks Daniel.