Re: Concurrent modification error

2023-12-05 Thread 'Vikrant Sandal' via Google Ads API and AdWords API Forum
Hi in continuation to above , we are even facing a situation where all of the *ads under an adGroup (**154974014046**)* fails with *Concurrent modification error * for example - here are the some failure message requestIds for each ad *ApQyfA0VBa1El8WOxU8MoA* *v2SBUEiYNgbS_6_rz-qyxA

RE: concurrent modification error google adwords api

2019-07-07 Thread Google Ads API Forum Advisor Prod
Hi Daniela, It's nice to meet you and welcome to our forum! :) Regarding the concurrent modification issue that you encountered, could you provide the request IDs or the complete SOAP request and response logs (if you're using the AdWords API) / JSON logs (if you're using the

concurrent modification error google adwords api

2019-07-05 Thread Daniela Senatore
Hello guys! It's the first time I write on this blog.. so nice to meet you all :) I've a question regarding to the concurrent modification error when I try to update keywords within a campaign. I'm not in a multi-thread process and I'm using just one user updating t

Re: Concurrent Modification on Ad Group Error.

2014-10-14 Thread Anash P. Oommen (AdWords API Team)
Hi Brett, You need to catch and retry the error after say, 30 seconds. Or, synchronize your API calls such that no two threads update the same adgroup at the same time. Cheers, Anash P. Oommen, AdWords API Advisor. On Monday, October 13, 2014 3:20:45 PM UTC-4, Brett Koenig wrote: > > Hey, > >

Concurrent Modification on Ad Group Error.

2014-10-13 Thread Brett Koenig
Hey, We have multiple services and threads that can be updating product group destination URLs at the same time. Each one is updating a different product group destination URL but sometimes the product groups are under the same Ad Group. When doing this we get a CONCURRENT_MODIFICATION error b

Re: CONCURRENT MODIFICATION Error

2014-05-15 Thread Anash P. Oommen (AdWords API Team)
Hi Luca, Your approach of batching keyword operations by adgroups is fine, but you can also try staggering the batches such that successive API calls don't go to a single adgroup. That should reduce the frequency of CONCURRENT MODIFICATION errors. Cheers, Anash P. Oommen, AdWords API Ad

CONCURRENT MODIFICATION Error

2014-05-15 Thread Luca Fiaschi
Hi all, I am getting quite often CONCURRENT MODIFICATION ERRORS when trying to upload KWs. I have a long list of operations and my strategy is to batch the requests and then call the mutate method of the service for the batch. Batch are uploaded in series therefore, there should not be any

Re: Continous failure to create Report request with CONCURRENT MODIFICATION error

2012-02-09 Thread Danial Klimkin
Hello Sudarshan, It appears you are using the v201101 ReportDefinitionService. Please correct me if I got it wrong. Please note this service is scheduled for sunset on 29 Feb 2012. You should migrate to AdHoc reporting as soon as possible. AdHoc reporting is much faster and I expect no such e

Continous failure to create Report request with CONCURRENT MODIFICATION error

2012-02-07 Thread Sudarshan Rao Vanagiri
three threads configured, each thread with different date range. We observed that, at a time only two report requests are getting completed and the third one is getting failed with CONCURRENT MODIFICATION error. We have a mechanism to catch these errors and retry automatically. But this failure rate

Re: Concurrent Modification

2010-08-02 Thread AdWords API Advisor
code sample: http://code.google.com/p/google-api-adwords-php/source/browse/trunk/examples/v201003/GetConversionOptimizerEligibility.php#93 Cheers, Anash P. Oommen, AdWords API Advisor. On Jul 30, 7:43 pm, phpguy wrote: > Here is my try/catch for a concurrent modification error...does anyone >

Concurrent Modification

2010-07-30 Thread phpguy
Here is my try/catch for a concurrent modification error...does anyone know the error code or where I can find it? try { retry: // Perform text ad operation $operations = array($textAdGroupAdOperation1, $textAdGroupAdOperation2, $textAdGroupAdOperation3, $textAdGroupAdOperation4