Hello,
I m uploading offline conversions to ad words. its ~500k values each day. I use mutate with 2000 operations at once.
source:
a) if i uploading one file at once it takes ~5 hours and uploads all the data. why it take so long ?
b) if I split file to two or three and uploading them parallel, then not all data will show up on ad words. why ?
I don't like this sentence: "This bulk operation does not have any transactional guarantees. Some operations can succeed while others fail."
Does it mean, that when i run script in parallel commands at once, some operations fails ?
i am trying to handle partial failures, but i get only few warnings, which is not important at all.
$result = $conversionService->mutate($conversionOperations);
if (isset($result->partialFailureErrors)) { .....