I file SDF caricati non creano o aggiornano immediatamente le risorse. L'elaborazione degli SDF e l'applicazione degli aggiornamenti risultanti possono richiedere da pochi secondi a ore. È possibile caricare più file contemporaneamente purché non contengano risorse sovrapposte.
Per determinare se l'attività è terminata, recupera regolarmente l'operazione utilizzando
sdfuploadtasks.operations.get e controlla se il campo
done è True e l'attività è terminata. Questa procedura è
nota come "polling".
Se l'attività è terminata, viene impostato il campo response o error. Se il campo error è compilato, l'attività non è riuscita e i dettagli dell'errore sono disponibili nell'oggetto Status risultante. Se il campo response è compilato, al campo verrà assegnato un
SdfUploadTask. Ciò significa che
Display & Video 360 ha elaborato correttamente l'SDF caricato. Scarica i file dei risultati dalla posizione fornita nel campo SdfUploadTask.resourceName.
Un'implementazione di polling inefficiente che controlla un report a esecuzione prolungata consuma gran parte della quota di richieste API. Per limitare i tentativi e conservare la quota, utilizza il backoff esponenziale.
Ecco come eseguire il polling di un'operazione di caricamento di SDF utilizzando il backoff esponenziale:
# Import the necessary libraries import random import time # Provide the name of the sdfuploadtask operation. operation_name = operation-name # Set the following values that control retry behavior while the operation # is running. # Minimum amount of time between polling requests. Defaults to 5 seconds. min_retry_interval = 5 # Maximum amount of time between polling requests. Defaults to 5 minutes. max_retry_interval = 5 * 60 # Maximum amount of time to spend polling. Defaults to 5 hours. max_retry_elapsed_time = 5 * 60 * 60 # Configure the sdfuploadtasks.operations.get request. get_request = service.sdfuploadtasks().operations().get(operation_name) sleep = 0 start_time = time.time() while True: # Get current status of the report. operation = get_request.execute() if "done" in operation: if "error" in operation: print( f'The operation finished in error with code ' f'{operation["error"]["code"]}: {operation["error"]["message"]}') else: print( f'The operation completed successfully. The result files can be ' f'downloaded at {operation["response"]["resourceName"]}.') break elif time.time() - start_time > max_retry_elapsed_time: print("Polling deadline exceeded.") break sleep = next_sleep_interval(sleep) print( f'Operation {operation_name} is still running, sleeping for ' f'{sleep} seconds.') time.sleep(sleep) def next_sleep_interval(previous_sleep_interval): """Calculates the next sleep interval based on the previous.""" min_interval = previous_sleep_interval or min_retry_interval max_interval = previous_sleep_interval * 3 or min_retry_interval return min(max_retry_interval, random.randint(min_interval, max_interval))