Re: MutateJobService Slow

2015-07-22 Thread Umesh Dengale
Hi Subhash, I'm not aware of any current issues with Google AdWords services that would be causing above error. Please check on your end for the above error. Regards, Umesh, AdWords API Team. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://

MutateJobService Slow

2015-07-22 Thread Subash NG
Hello, We have been using json to import our campaigns, adgroups, ads, keywords and we doing to all based on per-defined templates. Our issue right now is when we run upto 5-20 campaigns the process is fast and all completed in less than 5 minutes includ all ads, adgroup..etc inserted but whe

Re: MutateJobService - slow response

2015-05-11 Thread GDZ
Josh, I ended up forming and submitting SOAP requests directly. Super fast and works like a charm. Thank you, GDZ On Monday, May 11, 2015 at 3:14:07 PM UTC-4, Josh Radcliff (AdWords API Team) wrote: > > Hi, > > You will encounter this issue whether you submit a large number of > operations

Re: MutateJobService - slow response

2015-05-11 Thread Josh Radcliff (AdWords API Team)
Hi, You will encounter this issue whether you submit a large number of operations via *MutateJobService* or via the type-specific services such as *AdGroupCriterionService*, since the bottleneck is in how suds handles marshalling and unmarshalling large requests and responses. I'm not aware of

Re: MutateJobService - slow response

2015-05-11 Thread GDZ
Yes I realize that there's not much WE can do to resolve this. But will this be fixed on your side in the next version? Such slow processing kinda defeats the whole idea of quickly submitting bulk jobs... Thank you. On Friday, May 8, 2015 at 5:15:53 PM UTC-4, Josh Radcliff (AdWords API Team) w

Re: MutateJobService - slow response

2015-05-08 Thread Josh Radcliff (AdWords API Team)
Hi, I spoke with our Python library guru, and he informed me that this is a known performance issue with the library. Specifically, suds (the SOAP library used by our Python client library) can take a significant amount of time to prepare large reques

Re: MutateJobService - slow response

2015-05-08 Thread GDZ
Hope not a double post: another message I found in the log: *DEBUG:suds.metrics:message for 'mutate' created: 30.551 (seconds)* Emailed you full log also. Thank you! On Thursday, May 7, 2015 at 10:32:29 AM UTC-4, Josh Radcliff (AdWords API Team) wrote: > > Hi, > > Thanks for getting the lo

Re: MutateJobService - slow response

2015-05-07 Thread Josh Radcliff (AdWords API Team)
Hi, Thanks for getting the log message. That clearly shows that out of the 20 seconds it took to: 1. Prepare the request (including converting it to SOAP XML) 2. Send the request 3. Process the response only 1.167 seconds was actually spent on step 2. This means that something else be

Re: MutateJobService - slow response

2015-05-06 Thread GDZ
Submitting job of 237 keywords, took around 20 sec. Output: *DEBUG:suds.metrics:method 'mutate' invoked: 1.167 (seconds)* On Wednesday, May 6, 2015 at 11:34:50 AM UTC-4, Josh Radcliff (AdWords API Team) wrote: > > Hi, > > I retrieved the XML response for your request, and that also claims that

Re: MutateJobService - slow response

2015-05-06 Thread Josh Radcliff (AdWords API Team)
Hi, I retrieved the XML response for your request, and that also claims that the request only took 844 milliseconds, so I suspect the delay is in the preparation of the request, most likely within the client library itself or (less likely) in your code that constructs the objects. Could you en

Re: MutateJobService - slow response

2015-05-05 Thread GDZ
Using this example here: https://github.com/googleads/googleads-python-lib/blob/master/examples/adwords/v201502/campaign_management/add_keywords_in_bulk.py And yes, I measure time before and after "response = mutate_job_service.mutate(operations, policy)" On Tuesday, May 5, 2015 at 4:22:31 PM

Re: MutateJobService - slow response

2015-05-05 Thread Josh Radcliff (AdWords API Team)
Hi GDZ, Thanks for sending over the request ID. According to our records, the response was returned in 844 *milli*seconds. I'm wondering if there's either a bottleneck in the library you're using or your code that's actually causing the delay. Could you let me know which client library you're

Re: MutateJobService - slow response

2015-05-05 Thread GDZ
Here's the requestId: 00051557bc394c380aecb348e200683b Thank you. On Monday, May 4, 2015 at 4:07:47 PM UTC-4, Josh Radcliff (AdWords API Team) wrote: > > Hi GDZ, > > Do you have the *requestId* from the response of one of your > *MutateJobService* requests that took 50 seconds? I'd like to

Re: MutateJobService - slow response

2015-05-04 Thread Josh Radcliff (AdWords API Team)
Hi GDZ, Do you have the *requestId* from the response of one of your *MutateJobService* requests that took 50 seconds? I'd like to take a look at it from our side. One thing to keep in mind is that the benefits of *MutateJobService* go beyond just quickly submitting large requests. Although it

MutateJobService - slow response

2015-05-03 Thread GDZ
When creating a mutate call submitting ~1000 keywords via MutateJobService, response time is always around 50 sec. Wasn't the idea of this service to just submit operations in bulk quickly, and only after that periodically check for job status and result? 50 sec for just submitting (not actual p