Dataflow Template Cloud Pub/Sub Topic vs Subscription to BigQuery
问题 I'm setting up a simple Proof of Concept to learn some of the concepts in Google Cloud, specifically PubSub and Dataflow. I have a PubSub topic greeting I've created a simple cloud function that sends publishes a message to that topic: const escapeHtml = require('escape-html'); const { Buffer } = require('safe-buffer'); const { PubSub } = require('@google-cloud/pubsub'); exports.publishGreetingHTTP = async (req, res) => { let name = 'no name provided'; if (req.query && req.query.name) { name