Account reconciliation is one of the many mandatory business processes for a plethora of businesses in numberless industry verticals. While every business has its procedures, it follows a pretty standard process of matching transactions across ledgers and bank statements to ensure financial accuracy of accounts. Reconciliation and audit tools help teams maximize their productivity and save time in what would otherwise be a very timely process of account reconciliation.
In this lab, you will create an account table in Google Cloud Spanner and set up a monitoring pipeline with Spanner's change streams feature and Google Dataflow. The changes will be reflected in BigQuery.
What you'll learn
In this lab, you learn how to perform the following tasks:
Create an account table in Spanner
Create a change streams monitoring hook in Spanner
Configure and run change streams Dataflow job
Monitor the changes in BigQuery
Setup and requirements
Before you click the Start Lab button
Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when you click Start Lab, shows how long Google Cloud resources are made available to you.
This hands-on lab lets you do the lab activities in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials you use to sign in and access Google Cloud for the duration of the lab.
To complete this lab, you need:
Access to a standard internet browser (Chrome browser recommended).
Note: Use an Incognito (recommended) or private browser window to run this lab. This prevents conflicts between your personal account and the student account, which may cause extra charges incurred to your personal account.
Time to complete the lab—remember, once you start, you cannot pause a lab.
Note: Use only the student account for this lab. If you use a different Google Cloud account, you may incur charges to that account.
How to start your lab and sign in to the Google Cloud console
Click the Start Lab button. If you need to pay for the lab, a dialog opens for you to select your payment method.
On the left is the Lab Details pane with the following:
The Open Google Cloud console button
Time remaining
The temporary credentials that you must use for this lab
Other information, if needed, to step through this lab
Click Open Google Cloud console (or right-click and select Open Link in Incognito Window if you are running the Chrome browser).
The lab spins up resources, and then opens another tab that shows the Sign in page.
Tip: Arrange the tabs in separate windows, side-by-side.
Note: If you see the Choose an account dialog, click Use Another Account.
If necessary, copy the Username below and paste it into the Sign in dialog.
{{{user_0.username | "Username"}}}
You can also find the Username in the Lab Details pane.
Click Next.
Copy the Password below and paste it into the Welcome dialog.
{{{user_0.password | "Password"}}}
You can also find the Password in the Lab Details pane.
Click Next.
Important: You must use the credentials the lab provides you. Do not use your Google Cloud account credentials.
Note: Using your own Google Cloud account for this lab may incur extra charges.
Click through the subsequent pages:
Accept the terms and conditions.
Do not add recovery options or two-factor authentication (because this is a temporary account).
Do not sign up for free trials.
After a few moments, the Google Cloud console opens in this tab.
Note: To access Google Cloud products and services, click the Navigation menu or type the service or product name in the Search field.
Task 1. Create a database accounts and insert DDL
From the Cloud Console Navigation menu (), click View All Products and under Databases click Spanner.
Click on the bitfoon-dev instance.
From the instance details page, click Create Database.
For the database name, enter finance.
For Select database dialect select Google Standard SQL..
In the Define your schema box, copy and paste following DDL:
CREATE TABLE Account (
AccountId BYTES(16) NOT NULL,
CreationTimestamp TIMESTAMP NOT NULL OPTIONS (allow_commit_timestamp=true),
AccountStatus INT64 NOT NULL,
Balance NUMERIC NOT NULL
) PRIMARY KEY (AccountId);
Click Create. Your database should resemble the following:
Great! You have created an accounts database.
Click Check my progress to verify the objective.
Create the database accounts and insert DDL
Task 2. Insert arbitrary account data
From the finance database, click on Spanner Studio in the left menu.
On the Cloud Console Navigation menu (), click View All Products and under Analytics click Dataflow.
Verify the Dataflow job is running.
Click Check my progress to verify the objective.
Create a Dataflow change stream pipeline
Task 6. Create changes in Spanner and track them in BigQuery
From the Cloud Console Navigation menu (), click View All Products and under Databases click Spanner.
Click on the bitfoon-dev instance.
Click on database finance.
Click on Spanner Studio in the left menu.
Copy and paste following update query into the box:
UPDATE
Account
SET
CreationTimestamp=PENDING_COMMIT_TIMESTAMP(),
AccountStatus=4,
Balance=255
WHERE
AccountId=FROM_BASE64('ACCOUNTID11123');
Click Run.
Repeat the query step three times with balance values to create multiple changes. Use the following balance values:
300
500
600
On the Cloud Console Navigation menu (), click BigQuery.
Navigate to the changestream dataset and select Account_changelog and observe the changes.
Note: it may take a few minutes for the results to populate the table.
Select the Preview tab to see the results. Your table should resemble the following:
Click Check my progress to verify the objective.
Create changes in Spanner and track them in BigQuery
Congratulations!
In this lab you implemented a reconciliation and audit pipeline for an account and balances example on Google Cloud using Spanner, Dataflow, and BigQuery.
Next steps / Learn more
Check out the following resources to learn more about change streams and Spanner:
Copyright 2025 Google LLC. All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.
Labs erstellen ein Google Cloud-Projekt und Ressourcen für einen bestimmten Zeitraum
Labs haben ein Zeitlimit und keine Pausenfunktion. Wenn Sie das Lab beenden, müssen Sie von vorne beginnen.
Klicken Sie links oben auf dem Bildschirm auf Lab starten, um zu beginnen
Privates Surfen verwenden
Kopieren Sie den bereitgestellten Nutzernamen und das Passwort für das Lab
Klicken Sie im privaten Modus auf Konsole öffnen
In der Konsole anmelden
Melden Sie sich mit Ihren Lab-Anmeldedaten an. Wenn Sie andere Anmeldedaten verwenden, kann dies zu Fehlern führen oder es fallen Kosten an.
Akzeptieren Sie die Nutzungsbedingungen und überspringen Sie die Seite zur Wiederherstellung der Ressourcen
Klicken Sie erst auf Lab beenden, wenn Sie das Lab abgeschlossen haben oder es neu starten möchten. Andernfalls werden Ihre bisherige Arbeit und das Projekt gelöscht.
Diese Inhalte sind derzeit nicht verfügbar
Bei Verfügbarkeit des Labs benachrichtigen wir Sie per E-Mail
Sehr gut!
Bei Verfügbarkeit kontaktieren wir Sie per E-Mail
Es ist immer nur ein Lab möglich
Bestätigen Sie, dass Sie alle vorhandenen Labs beenden und dieses Lab starten möchten
Privates Surfen für das Lab verwenden
Nutzen Sie den privaten oder Inkognitomodus, um dieses Lab durchzuführen. So wird verhindert, dass es zu Konflikten zwischen Ihrem persönlichen Konto und dem Teilnehmerkonto kommt und zusätzliche Gebühren für Ihr persönliches Konto erhoben werden.
Learn how to perform financial account reconciliation tasks using Cloud Spanner, Dataflow, and BigQuery.