From 6c7f6de0f375f12732ddd9151ae5cc1e26d0b0df Mon Sep 17 00:00:00 2001 From: alickzhang <40373100+alick-at-looker@users.noreply.github.com> Date: Mon, 25 Oct 2021 15:51:27 -0700 Subject: [PATCH] Create README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..c2811b5 --- /dev/null +++ b/README.md @@ -0,0 +1,15 @@ +# looker_bq_writeback + +cloud function to write back to Looker + + +This cloud function leverage [Looker's Actions](https://looker.com/platform/actions/) as the starting point to write back to our table in BigQuery to update records. + +At a high level, the script is: + +1. Takes in row level data in JSON format passed from Looker's actions. +2. Reads and parses the relevant values to populate our SQL query which will INSERT into our specified table + + +Additional resources: +[Cloud Function](https://cloud.google.com/functions)