Hello!
Not really a question but an observation.
Situation: 5 AdGroups, ~500 keywords each. Keywords ADD operations are "batched" into one mutate job for each AdGroup. So naturally 5 mutate jobs total ready for execution.
Scenario 1. Mutate jobs are executed one after another, i.e. next job starts only after the previous one was finished.
Scenario 2. Mutate jobs are executed in parallel, 5 threads are running at the same time, each modifying its own AdGroup to avoid CONCURRENT_MODIFICATION error.
Naturally, we expected Scenario 2 to be much faster than Scenario 1, reality is its only ~6% faster. Now trying to figure out how to speed this up a bit :)
Thank you,
GDZ