Embarrassingly parallel jobs are tasks that can be executed independently without any dependency requirement between the tasks. This enables each task to have its process and computing space and in turn, scale parallely to complete the given job faster:
Let's take a simple example, where we are counting, number of a topic from Twitter stream every 10 minutes. The key words to look in this example is the PARTITION BY PartitionId. Stream Analytics job takes advantage of partitions in the input or output. PARTITION BY PartitionId let's divide the data ...