Azure Webjobs: One Job with several Functions, or several Jobs with 1 function each?
问题 How do I decide between creating several WebJobs with 1 function each and bundling several functions into one or only a few WebJobs? Thanks 回答1: There is no straight answer to your question. Sorry. Usually you group functions by workflow or role. For example if you have a workflow that contains a function that resizes an image, then a function that applies a watermark and another one that replicates the images then it makes sense to put all the functions together because they are related. You