Crea ed esegui il deployment di una funzione Cloud Run HTTP con Python (1ª generazione.)

Questa guida illustra il processo di scrittura di una funzione Cloud Run utilizzando il runtime Python. Esistono due tipi di funzioni di Cloud Run:

  • Una funzione HTTP, che richiami dalle richieste HTTP standard.
  • Una funzione basata su eventi che utilizzi per gestire gli eventi della tua infrastruttura Cloud, ad esempio i messaggi in un argomento Pub/Sub o le modifiche in un bucket Cloud Storage.

L'esempio mostra come creare una semplice funzione HTTP.

Prima di iniziare

  1. 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.
  2. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  3. Make sure that billing is enabled for your Google Cloud project.

  4. Enable the Cloud Functions and Cloud Build APIs.

    Enable the APIs

  5. In the Google Cloud console, on the project selector page, select or create a Google Cloud project.

    Go to project selector

  6. Make sure that billing is enabled for your Google Cloud project.

  7. Enable the Cloud Functions and Cloud Build APIs.

    Enable the APIs

  8. Installa e inizializza l'interfaccia a riga di comando gcloud.
  9. Aggiorna e installa i componenti di gcloud:
    gcloud components update
  10. Prepara l'ambiente di sviluppo.

    Vai alla guida alla configurazione di Python

Crea una funzione

  1. Crea una directory sul sistema locale per il codice della funzione:

    Linux o Mac OS X

    mkdir ~/helloworld
    cd ~/helloworld
    

    Windows

    mkdir %HOMEPATH%\helloworld
    cd %HOMEPATH%\helloworld
    
  2. Crea un file main.py nella directory helloworld con seguenti contenuti:

    
    import functions_framework
    
    
    from markupsafe import escape
    
    @functions_framework.http
    def hello_http(request):
        """HTTP Cloud Function.
        Args:
            request (flask.Request): The request object.
            <https://flask.palletsprojects.com/en/1.1.x/api/#incoming-request-data>
        Returns:
            The response text, or any set of values that can be turned into a
            Response object using `make_response`
            <https://flask.palletsprojects.com/en/1.1.x/api/#flask.make_response>.
        """
        request_json = request.get_json(silent=True)
        request_args = request.args
    
        if request_json and "name" in request_json:
            name = request_json["name"]
        elif request_args and "name" in request_args:
            name = request_args["name"]
        else:
            name = "World"
        return f"Hello {escape(name)}!"
    
    

    Questa funzione di esempio prende un nome fornito nella richiesta HTTP e restituisce un saluto o "Hello World!" se non viene specificato alcun nome.

Specifica delle dipendenze

Le dipendenze in Python sono gestite con pip ed espressi in un file di metadati denominato requirements.txt Questo file deve trovarsi nella stessa directory del file main.py che contiene il codice della funzione.

Non devi creare un valore requirements.txt per eseguire questo particolare esempio, ma supponiamo che tu voglia aggiungere le tue dipendenze. Ecco come fare:

  1. Crea un file requirements.txt nella directory helloworld.

  2. Aggiungi la dipendenza della funzione al file requirements.txt, ad esempio:

    # An example requirements file, add your dependencies below
    sampleproject==2.0.0
    

esegui il deployment della funzione

Per eseguire il deployment della funzione con un trigger HTTP, esegui questo comando nella directory helloworld:

gcloud functions deploy hello_http --no-gen2 --runtime python312 --trigger-http --allow-unauthenticated

Il flag --allow-unauthenticated ti consente di raggiungere la funzione senza autenticazione. Per richiedere authentication, ometti flag.

testa la funzione

  1. Al termine del deployment della funzione, prendi nota del httpsTrigger.url o trovarla con il comando seguente:

    gcloud functions describe hello_http
    

    Dovrebbe avere il seguente aspetto:

    https://GCP_REGION-PROJECT_ID.cloudfunctions.net/hello_http
  2. Accedi all'URL dal browser. Dovresti vedere il messaggio "Hello World!".

    Prova a trasmettere un nome nella richiesta HTTP, ad esempio utilizzando il seguente codice URL:

    https://GCP_REGION-PROJECT_ID.cloudfunctions.net/hello_http?name=NAME

    Dovresti visualizzare il messaggio "Ciao NAME!".

Visualizza i log

I log per le funzioni Cloud Run sono visualizzabili utilizzando Google Cloud CLI e UI di Cloud Logging.

Utilizzare lo strumento a riga di comando

Per visualizzare i log per la tua funzione con gcloud CLI, utilizza il metodo Comando logs read seguito da il nome della funzione:

gcloud functions logs read hello_http

L'output dovrebbe essere simile al seguente:

LEVEL  NAME        EXECUTION_ID  TIME_UTC                 LOG
D      hello_http  pdb5ys2t022n  2019-09-18 23:29:09.791  Function execution started
D      hello_http  pdb5ys2t022n  2019-09-18 23:29:09.798  Function execution took 7 ms, finished with status code: 200

Utilizzare la dashboard di Log

Puoi anche visualizzare i log per le funzioni di Cloud Run dal Console Google Cloud.