Aggiungere un'attività di destinazione HTTP a una coda Cloud Tasks
Questa guida rapida mostra come aggiungere attività di destinazione HTTP a un Coda di Cloud Tasks utilizzando l'API Cloud Tasks.
Prima di iniziare
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
Create or select a Google Cloud project.
-
Create a Google Cloud project:
gcloud projects create PROJECT_ID
Replace
PROJECT_ID
with a name for the Google Cloud project you are creating. -
Select the Google Cloud project that you created:
gcloud config set project PROJECT_ID
Replace
PROJECT_ID
with your Google Cloud project name.
-
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the Cloud Tasks API:
gcloud services enable tasks.googleapis.com
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
- Install the Google Cloud CLI.
-
To initialize the gcloud CLI, run the following command:
gcloud init
-
Create or select a Google Cloud project.
-
Create a Google Cloud project:
gcloud projects create PROJECT_ID
Replace
PROJECT_ID
with a name for the Google Cloud project you are creating. -
Select the Google Cloud project that you created:
gcloud config set project PROJECT_ID
Replace
PROJECT_ID
with your Google Cloud project name.
-
-
Make sure that billing is enabled for your Google Cloud project.
-
Enable the Cloud Tasks API:
gcloud services enable tasks.googleapis.com
-
If you're using a local shell, then create local authentication credentials for your user account:
gcloud auth application-default login
You don't need to do this if you're using Cloud Shell.
Crea una coda di attività Cloud Tasks
Utilizza il comando gcloud tasks queues create
per creare la coda.
Nel terminale, crea una coda che registri tutte le operazioni.
gcloud tasks queues create QUEUE_NAME \ --log-sampling-ratio=1.0 \ --location=REGION
Sostituisci quanto segue:
QUEUE_NAME
: un nome per le tue attività Cloud codaREGION
: la regione in cui hai disegnato il servizio o l'app
Attendi l'inizializzazione della coda e verifica che sia stata creata correttamente.
gcloud tasks queues describe QUEUE_NAME \ --location=REGION
L'output dovrebbe essere simile al seguente:
name: projects/PROJECT_ID/locations/LOCATION_ID/queues/QUEUE_NAME rateLimits: maxBurstSize: 100 maxConcurrentDispatches: 1000 maxDispatchesPerSecond: 500.0 retryConfig: maxAttempts: 100 maxBackoff: 3600s maxDoublings: 16 minBackoff: 0.100s state: RUNNING
Aggiungi un'attività alla coda di Cloud Tasks
Utilizza la
gcloud tasks create-http-task
per creare un'attività che abbia come target un endpoint HTTP e aggiungerla al tuo
in coda.
Crea un'attività, aggiungila alla coda che hai creato e inviala a un endpoint HTTP.
gcloud tasks create-http-task \ --queue=QUEUE_NAME \ --url=URL_PATH \ --method=GET \ --location=REGION \ --project=PROJECT_ID
Sostituisci
URL_PATH
con il percorso dell'URL completo a cui verrà inviata la richiesta. Ad esempio:https://www.google.com
Il percorso deve iniziare con
http://
ohttps://
.Verifica che l'attività sia stata eseguita correttamente leggendo i log.
gcloud logging read --limit=3
I log dovrebbero essere simili ai seguenti:
jsonPayload: '@type': type.googleapis.com/google.cloud.tasks.logging.v1.TaskActivityLog task: projects/PROJECT_ID/locations/REGION/queues/QUEUE_NAME/tasks/TASK_ID taskCreationLog: scheduleTime: '2024-07-04T19:00:27.801837Z' status: OK targetAddress: GET https://www.google.com/ targetType: HTTP
Esegui la pulizia
Per evitare che al tuo account Google Cloud vengano addebitati costi relativi alle risorse utilizzate su questa pagina, elimina il progetto Google Cloud con le risorse.
Delete a Google Cloud project:
gcloud projects delete PROJECT_ID
In alternativa, puoi eliminare la coda di Cloud Tasks:
gcloud tasks queues delete QUEUE_NAME \
--location=REGION