Hi,
I am trying to add locations to existing campaign using batch job. I am running batches of 30K locations in each iteration (we have total of 600K locations that needs to be added in total). Its working fine sometimes and most of the times it failing with BatchJobProcessingError.INTERNAL_ERROR.
I observed the batch job is getting cancelled after running 300K + locations.
Not sure if its limit issues but that should throw DISK_QUOTA_EXCEEDED or DEADLINE_EXCEEDED error, not Internal error.
Error:
Batch Job not ready, wait for 164.6 seconds.
{
'status': 'CANCELED',
'progressStats': {
'numOperationsExecuted': 70000,
'numOperationsSucceeded': 70000,
'estimatedPercentExecuted': 69,
'numResultsWritten': 70000
},
'uploadUrl': None,
'downloadUrl': {
'url': 'masked',
'expiration': '20191218 172346 America/Phoenix'
},
'processingErrors': [
{
'fieldPath': None,
'fieldPathElements': [],
'trigger': None,
'errorString': 'BatchJobProcessingError.INTERNAL_ERROR',
'ApiError.Type': 'BatchJobProcessingError',
'reason': 'INTERNAL_ERROR'
}
],
'diskUsageQuotaBalance': None
}
one more:
Batch Job not ready, wait for 40.235 seconds.
{
'status': 'CANCELED',
'progressStats': {
'numOperationsExecuted': 10000,
'numOperationsSucceeded': 10000,
'estimatedPercentExecuted': 10,
'numResultsWritten': 10000
},
'uploadUrl': None,
'downloadUrl': {
'url': 'masked',
'expiration': '20191218 172859 America/Phoenix'
},
'processingErrors': [
{
'fieldPath': None,
'fieldPathElements': [],
'trigger': None,
'errorString': 'BatchJobProcessingError.INTERNAL_ERROR',
'ApiError.Type': 'BatchJobProcessingError',
'reason': 'INTERNAL_ERROR'
}
],
'diskUsageQuotaBalance': None
I am using test account to do this development and ran in to this issue before production push. Any help would be highly appreciated .
Thanks
Chakri