i Josh 


Our app definitely mutates trees in parallel - but it never mutates trees 
in parallel belonging to the same campaigns. The requests that I sent 
before were reproduced in a single-threaded sandbox. The requests you 
mention are requests that our app tries to send once a day exactly because 
of this issue (it’s a follow up error on our side). The first occurrence 
(the one that should be this issue) must have been somewhere around 
2015-10-30 16:35:32 (+/- a few minutes) - maybe this helps. We currently 
resolve this on our side by reacting to the error - we will just query the 
external id of the existing partition. This is released on our system 
tomorrow - so it will definitely get harder for me to find the underlying 
requests since no special logging is done on our side due to the fact that 
this case gets business as usual … sorry.


Here is some additional info from our side: We've got other code that 
creates many product partitions - and we’ve never seen this before. The 
difference is that this code (the one working w/o any problems) never 
creates product partitions for more than one ad group at a time. The code 
where the issues arises sends stuff in batches to the API and mutates a 
maximum of 2 ad groups at a time (since this is the maximum allowed by the 
API).


Thanks!

Peter

Am Montag, 2. November 2015 19:56:56 UTC+1 schrieb Josh Radcliff (AdWords 
API Team):
>
> Hi Peter,
>
> Are you running multiple threads that are mutating the trees in question? 
> I ask because I looked at two of your requests from today that failed 
> with PRODUCT_PARTITION_ALREADY_EXISTS followed 
> by PRODUCT_PARTITION_DOES_NOT_EXIST, and in both cases the partition in 
> question *does* already exist in the ad group.
>
> The requests I checked were for ad group IDs 21637072081 and 21637229281, 
> both under campaign ID 345581401.
>
> Thanks,
> Josh, AdWords API Team
>
> On Monday, November 2, 2015 at 12:30:38 AM UTC-5, peter... wrote:
>>
>> Hi Josh
>>
>> Could the usage of not using distinct temporary IDs cause this problem ? 
>> As stated above, 99% of my requests succeed (and we've actually sent 
>> millions of them until now). 
>>
>> The tree is correct for our purposes. It will be changed by other 
>> requests later on. The problem doesn't seem to be related to the actual 
>> tree anyhow. We also see this error when we are trying to add child 
>> partitions to already existing ones. This, however, is very hard to 
>> reproduce for me since I cannot just add logs for every SOAP request to our 
>> live application and wait for a few days for this to happen. Even this 
>> simple case required hammering against the API with a local test script for 
>> a few hours. 
>>
>> Thanks! 
>> Peter
>>
>> Am Freitag, 30. Oktober 2015 20:43:58 UTC+1 schrieb Josh Radcliff 
>> (AdWords API Team):
>>>
>>> Hi,
>>>
>>> I noticed that your request is operating on two ad groups but you are 
>>> reusing the same temporary ID for both. I would recommend using distinct 
>>> temporary IDs for distinct *Biddable/NegativeAdGroupCriterion* within a 
>>> single request.
>>>
>>> Also, in each case you are constructing what looks like an invalid 
>>> product partition tree 
>>> <https://developers.google.com/adwords/api/docs/guides/shopping#partitioning>,
>>>  
>>> consisting of:
>>>
>>>      ROOT (-1 biddable SUBDIVISION)
>>>     /
>>>   ProductOfferId (negative UNIT)
>>>
>>> It looks like you are trying to create a 2nd level of the tree that 
>>> excludes *everything*, since you don't have other UNIT nodes at that 
>>> level and the object is a *NegativeAdGroupCriterion*. If you subdivide 
>>> the tree by a dimension (offer ID in this case), you must have at least 
>>> *two* UNIT nodes: one for "Everything else" (*ProductOfferId* with a 
>>> null value) and at least one for a specific *ProductOfferId* with a 
>>> non-null value. Otherwise, the subdivision does not serve any purpose.
>>>
>>> Thanks,
>>> Josh, AdWords API Team
>>>
>>> On Friday, October 30, 2015 at 6:35:58 AM UTC-4, peter... wrote:
>>>>
>>>> It looks like that we have the same problem. 
>>>>
>>>> We create a brand new AdGroup, then send the following request:
>>>>
>>>>     <soapenv:Body>
>>>>        <mutate xmlns="https://adwords.google.com/api/adwords/cm/v201506
>>>> ">
>>>>             <operations>
>>>>                <operator>ADD</operator>
>>>>             <operand xmlns:ns2="
>>>> https://adwords.google.com/api/adwords/cm/v201506"; 
>>>> xsi:type="ns2:BiddableAdGroupCriterion">
>>>>                    <ns2:adGroupId>22340202143</ns2:adGroupId>
>>>>                    <ns2:criterion xsi:type="ns2:ProductPartition">
>>>>                        <ns2:id>-1</ns2:id>
>>>>                       
>>>>  <ns2:partitionType>SUBDIVISION</ns2:partitionType>
>>>>                    </ns2:criterion>
>>>>                  </operand>
>>>>             </operations>
>>>>             <operations>
>>>>                <operator>ADD</operator>
>>>>             <operand xmlns:ns3="
>>>> https://adwords.google.com/api/adwords/cm/v201506"; 
>>>> xsi:type="ns3:NegativeAdGroupCriterion">
>>>>                    <ns3:adGroupId>22340202143</ns3:adGroupId>
>>>>                    <ns3:criterion xsi:type="ns3:ProductPartition">
>>>>                        <ns3:partitionType>UNIT</ns3:partitionType>
>>>>                        <ns3:parentCriterionId>-1</ns3:parentCriterionId>
>>>>                        <ns3:caseValue xsi:type="ns3:ProductOfferId"/>
>>>>                    </ns3:criterion>
>>>>                 </operand>
>>>>             </operations>
>>>>             <operations>
>>>>                <operator>ADD</operator>
>>>>                 <operand xmlns:ns4="
>>>> https://adwords.google.com/api/adwords/cm/v201506"; 
>>>> xsi:type="ns4:BiddableAdGroupCriterion">
>>>>                    <ns4:adGroupId>22340202263</ns4:adGroupId>
>>>>                    <ns4:criterion xsi:type="ns4:ProductPartition">
>>>>                        <ns4:id>-1</ns4:id>
>>>>                       
>>>>  <ns4:partitionType>SUBDIVISION</ns4:partitionType>
>>>>                    </ns4:criterion>
>>>>                 </operand>
>>>>             </operations>
>>>>             <operations>
>>>>                <operator>ADD</operator>
>>>>                 <operand xmlns:ns5="
>>>> https://adwords.google.com/api/adwords/cm/v201506"; 
>>>> xsi:type="ns5:NegativeAdGroupCriterion">
>>>>                    <ns5:adGroupId>22340202263</ns5:adGroupId>
>>>>                    <ns5:criterion xsi:type="ns5:ProductPartition">
>>>>                        <ns5:partitionType>UNIT</ns5:partitionType>
>>>>                        <ns5:parentCriterionId>-1</ns5:parentCriterionId>
>>>>                        <ns5:caseValue xsi:type="ns5:ProductOfferId"/>
>>>>                    </ns5:criterion>
>>>>                 </operand>
>>>>             </operations>
>>>>         </mutate>
>>>>     </soapenv:Body>
>>>>
>>>> and *sporadically* get back
>>>>
>>>> <soap:Body>
>>>>     <soap:Fault>
>>>>        <faultcode>soap:Server</faultcode>
>>>>             
>>>> <faultstring>[AdGroupCriterionError.PRODUCT_PARTITION_ALREADY_EXISTS @ 
>>>> operations[2].operand.criterion, 
>>>> AdGroupCriterionError.PRODUCT_PARTITION_DOES_NOT_EXIST @ 
>>>> operations[3].operand.criterion.parentCriterionId; 
>>>> trigger:'TempCriterionId{id=1}']</faultstring>
>>>>         <detail>
>>>>            <ApiExceptionFault xmlns="
>>>> https://adwords.google.com/api/adwords/cm/v201506";>
>>>>                     
>>>> <message>[AdGroupCriterionError.PRODUCT_PARTITION_ALREADY_EXISTS @ 
>>>> operations[2].operand.criterion, 
>>>> AdGroupCriterionError.PRODUCT_PARTITION_DOES_NOT_EXIST @ 
>>>> operations[3].operand.criterion.parentCriterionId; 
>>>> trigger:'TempCriterionId{id=1}']</message>
>>>>               
>>>>  <ApplicationException.Type>ApiException</ApplicationException.Type>
>>>>                <errors xmlns:xsi="
>>>> http://www.w3.org/2001/XMLSchema-instance"; 
>>>> xsi:type="AdGroupCriterionError">
>>>>                   
>>>>  <fieldPath>operations[2].operand.criterion</fieldPath>
>>>>                    <trigger/>
>>>>                   
>>>>  
>>>> <errorString>AdGroupCriterionError.PRODUCT_PARTITION_ALREADY_EXISTS</errorString>
>>>>                    <ApiError.Type>AdGroupCriterionError</ApiError.Type>
>>>>                    <reason>PRODUCT_PARTITION_ALREADY_EXISTS</reason>
>>>>                 </errors>
>>>>                <errors xmlns:xsi="
>>>> http://www.w3.org/2001/XMLSchema-instance"; 
>>>> xsi:type="AdGroupCriterionError">
>>>>                   
>>>>  <fieldPath>operations[3].operand.criterion.parentCriterionId</fieldPath>
>>>>                    <trigger>TempCriterionId{id=1}</trigger>
>>>>                   
>>>>  
>>>> <errorString>AdGroupCriterionError.PRODUCT_PARTITION_DOES_NOT_EXIST</errorString>
>>>>                    <ApiError.Type>AdGroupCriterionError</ApiError.Type>
>>>>                    <reason>PRODUCT_PARTITION_DOES_NOT_EXIST</reason>
>>>>                 </errors>
>>>>            </ApiExceptionFault>
>>>>         </detail>
>>>>     </soap:Fault>
>>>> </soap:Body>
>>>>
>>>> (request id of this particular response was 
>>>> 00052343fe9006900a0ddbd10203b361 - if this helps).
>>>>
>>>> We also see this error when creating concrete product partitions with 
>>>> case values. It succeeds in 99% of all cases, but we sporadically get back 
>>>> this error. We've seen this only for product partitions so far. Our code 
>>>> is 
>>>> single-threaded.
>>>>
>>>> Am Dienstag, 6. Oktober 2015 16:06:53 UTC+2 schrieb Anthony Madrigal:
>>>>>
>>>>> Hi, 
>>>>>
>>>>> Since you are using the AdGroupCriterionService, do you mean AdGroup 
>>>>> instead of campaign? Could you please send me both your SOAP request and 
>>>>> response for the successful and failed operations through *Reply 
>>>>> privately to author*? This will help me see why it is working for one 
>>>>> and not the other.
>>>>>
>>>>> Thanks,
>>>>> Anthony
>>>>> 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 http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/39423379-58f5-4263-8424-030942e48cbe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • Re: Error during ... peter . rietzler
    • Re: Error du... Josh Radcliff (AdWords API Team)
      • Re: Erro... peter . rietzler
        • Re: ... Josh Radcliff (AdWords API Team)
          • ... peter . rietzler
          • ... peter . rietzler
            • ... Josh Radcliff (AdWords API Team)
              • ... peter . rietzler
                • ... Josh Radcliff (AdWords API Team)
                • ... peter . rietzler
                • ... Josh Radcliff (AdWords API Team)
                • ... peter . rietzler
                • ... Josh Radcliff (AdWords API Team)
                • ... 'Josh Radcliff (AdWords API Team)' via AdWords API Forum

Reply via email to