Hello, I m uploading offline conversions to ad words. its ~500k values each day. I use mutate with 2000 operations at once.
source: https://github.com/googleads/googleads-php-lib/blob/master/examples/AdWords/v201605/Remarketing/UploadOfflineConversions.php 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."* https://developers.google.com/adwords/api/docs/reference/v201607/OfflineConversionFeedService#mutate 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)) { ..... -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. Visit this group at https://groups.google.com/group/adwords-api. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/7c1a793c-325f-49b1-81ed-03012f611706%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
