Skip to content

Latest commit

 

History

History

hello-pubsub

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Java: Cloud Functions - hello-pubsub

A Pub/Sub triggered Java Cloud Functions template.

Test locally

Compile:

mvn compile

Run the function:

mvn function:run

...
INFO: Serving function...
Feb 22, 2023 3:18:30 PM com.google.cloud.functions.invoker.runner.Invoker logServerInfo
INFO: Function: functions.Function
Feb 22, 2023 3:18:30 PM com.google.cloud.functions.invoker.runner.Invoker logServerInfo
INFO: URL: http://localhost:8081/

Inside the scripts folder, run test_local.sh to test the function locally:

./test_local.sh

< HTTP/1.1 200 OK
< Date: Wed, 22 Feb 2023 13:20:00 GMT
< Content-Length: 0
< Server: Jetty(9.4.45.v20220203)

You should see the following in service logs:

INFO: CloudEvent information:
Feb 22, 2023 3:20:57 PM functions.Function accept
INFO:  ID: 6308619096677818
Feb 22, 2023 3:20:57 PM functions.Function accept
INFO:   Source: //pubsub.googleapis.com/projects/MY-PROJECT/topics/MY-TOPIC
Feb 22, 2023 3:20:57 PM functions.Function accept
INFO:   Type: google.cloud.pubsub.topic.v1.messagePublished
Feb 22, 2023 3:20:57 PM functions.Function accept
INFO: Message published data:
Feb 22, 2023 3:20:57 PM functions.Function accept
INFO:   Message: com.google.events.cloud.pubsub.v1.Message@31560ece
Feb 22, 2023 3:20:57 PM functions.Function accept
INFO:   TextData: Hello World
Feb 22, 2023 3:20:57 PM functions.Function accept
INFO:   Subscription: projects/MY-PROJECT/subscriptions/MY-SUB

Before deploying to Google Cloud

Run setup.sh to enable required services:

./setup.sh

Deploy to Google Cloud

Run deploy.sh to deploy to Google Cloud:

./deploy.sh

Test in Google Cloud

You can test with Invoke function via HTTP in Cloud Code or with gcloud.

Run test_cloud.sh to test the function in Google Cloud:

./test_cloud.sh

Cleanup

When you're done, you can cleanup created resources:

./cleanup.sh