Re: upload Offline conversions in parallel commands

2016-08-03 Thread 'Joyce Lava' via AdWords API Forum
Hello,

Please see below responses per question:

a) if i uploading one file at once it takes ~5 hours and uploads all the 
> data. why it take so long ? 

The possible reason why you are experiencing a slow speed in the upload is 
that you *might* be hitting the rate limit 
. 
Additionally, this page 
 might 
be able to help in considering limits.

b) if I split file to two or three and uploading them parallel, then not 
> all data will show up on ad words. why ? 

There are two things which I *think* can help us clarify this. First, the 
data should be shown in AdWords account after 3 hours 
.
 
Could you please confirm if it passed 3 hours already after the upload? 
Second is, you can use the partialFailure 
 set 
to *true* to commit valid operations and return the error for failed ones 
as you seemed to be doing already. Could you please *reply privately to 
author* the code snippet and the SOAP request and response (including 
request ID)?

Does it mean, that when i run script in parallel commands at once, some 
> operations fails? 

We suggest to limit the concurrent threads 

 to 
avoid RateExceededError.

Thanks and Regards,
Joyce, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
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/fa5d7058-7153-4473-b643-209a0122d0f4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


upload Offline conversions in parallel commands

2016-08-03 Thread Magija
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 adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 adwords-api+unsubscr...@googlegroups.com.
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.