Relational databases are great at processing transactions, but they’re not designed to run analytics at scale. If you’re a data engineer or a data analyst, you may want to continuously replicate your operational data into a data warehouse in real time, so you can make timely, data driven business decisions.

In this blog,  we will show you a step by step tutorial on how to replicate and process operational data from an Oracle database into Google Cloud’s BigQuery so that you can keep multiple systems in sync – minus the need for bulk load updating and inconvenient batch windows.

1 Oracle data in bg.jpg

The operational flow shown in the preceding diagram is as follows:

  • Incoming data from an Oracle source is captured and replicated into Cloud Storage through Datastream.
  • This data is processed and enriched by Dataflow templates, and is then sent to BigQuery for analytics and visualization

Google does not provide licenses for Oracle workloads. You are responsible for procuring licenses for the Oracle workloads that you choose to run on Google Cloud, and you are responsible for complying with the terms of these licenses. 

Costs

This tutorial uses the following billable components of Google Cloud:

To generate a cost estimate based on your projected usage, use the pricing calculator.

When you finish this tutorial, you can avoid continued billing by deleting the resources you created. For more information, see Clean up.

Before you begin

1. In the Google Cloud Console, on the project selector page, select or create a Google Cloud project.

Note: If you don’t plan to keep the resources that you create in this procedure, create a project instead of selecting an existing project. After you finish these steps, you can delete the project, removing all resources associated with the project.

2. Make sure that billing is enabled for your Cloud project. Learn how to check if billing is enabled on a project.

3. Enable the Compute Engine, Datastream, Dataflow, and Pub/Sub APIs. 

4. You must also have the role of Project owner or Editor.

Step 1: Prepare your environment

1. In Cloud Shell, define the following environment variables:

  export PROJECT_NAME="YOUR_PROJECT_NAME"
export PROJECT_ID="YOUR_PROJECT_ID"
export PROJECT_NUMBER="YOUR_PROJECT_NUMBER"
export BUCKET_NAME="${PROJECT_ID}-oracle_retail"

Replace the following:

  • YOUR_PROJECT_NAME: The name of your project
  • YOUR_PROJECT_ID: The ID of your project
  • YOUR_PROJECT_NUMBER: The number of your project

2. Enter the following:

  gcloud config set project ${PROJECT_ID}

3. Clone the GitHub tutorial repository which contains the scripts and utilities that you use in this tutorial:

  git clone \
https://github.com/caugusto/datastream-bqml-looker-tutorial.git

4. Extract the comma-delimited file containing sample transactions to be loaded into Oracle:

  bunzip2 \
datastream-bqml-looker-tutorial/sample_data/oracle_data.csv.bz2

5. Create a sample Oracle XE 11g docker instance on Compute Engine by doing the following:

a. In Cloud Shell, change the directory to build_docker:

  cd datastream-bqml-looker-tutorial/build_docker

b. Run the following build_orcl.sh script:

  ./build_orcl.sh \
-p <YOUR_PROJECT_ID> \
-z <GCP_ZONE> \
-n <GCP_NETWORK_NAME> \
-s <GCP_SUBNET_NAME> \
-f Y \
-d Y

Replace the following:

  • YOUR_PROJECT_ID: Your Cloud project ID
  • GCP_ZONE: The zone where the compute instance will be created
  • GCP_NETWORK_NAME= The network name where VM and firewall entries will be created
  • GCP_SUBNET_NAME= The network subnet where VM and firewall entries will be created
  • Y or N= A choice to create the FastFresh schema and ORDERS table (Y or N). Use Y for this tutorial.
  • Y or N= A choice to configure the Oracle database for Datastream usage (Y or N). Use Y for this tutorial.

The script does the following:

  • Creates a new Google Cloud Compute instance.
  • Configures an Oracle 11g XE docker container.
  • Pre-loads the FastFresh schema and the Datastream prerequisites.
  • After the script executes, the build_orcl.sh script gives you a summary of the connection details and credentials (DB Host, DB Port, and SID). Make a copy of these details because you use them later in this tutorial.

After the script executes, the build_orcl.sh script gives you a summary of the connection details and credentials (DB Host, DB Port, and SID). Make a copy of these details because you use them later in this tutorial. 

6. Create a Cloud Storage bucket to store your replicated data:

  gsutil mb gs://${BUCKET_NAME}

Make a copy of the bucket name because you use it in a later step.

7. Configure your bucket to send notifications about object changes to a Pub/Sub topic. This configuration is required by the Dataflow template. Do the following:

a. Create a new topic called oracle_retail:

  gsutil notification create -t projects/${PROJECT_ID}/topics/oracle_retail -f \
json gs://${BUCKET_NAME}

b. Create a Pub/Sub subscription to receive messages which are sent to the oracle_retail topic:

  gcloud pubsub subscriptions create oracle_retail_sub \
--topic=projects/${PROJECT_ID}/topics/oracle_retail

8. Create a BigQuery dataset named retail:

  bq mk --dataset ${PROJECT_ID}:retail

9. Assign the BigQuery Admin role to your Compute Engine service account:

  gcloud projects add-iam-policy-binding ${PROJECT_ID} \
--member=serviceAccount:${PROJECT_NUMBER}[email protected] \
--role='roles/bigquery.admin'

Step 2: Replicate Oracle data to Google Cloud with Datastream

Datastream supports the synchronization of data to Google Cloud databases and storage solutions from sources such as MySQL and Oracle.

In this section, you use Datastream to backfill the Oracle FastFresh schema and to replicate updates from the Oracle database to Cloud Storage in real time.

Create a stream

1. In Cloud Console, navigate to Datastream and click Create Stream. A form appears. Fill in the form as follows, and then click Continue:

  • Stream name: oracle-cdc
  • Stream ID: oracle-cdc
  • Source type: Oracle
  • Destination type: Cloud Storage
  • All other fields: Retain the default value

2. In the Define & Test Source section, select Create new connection profile. A form appears. Fill in the form as follows, and then click Continue:

  • Connection profile name: orcl-retail-source
  • Connection profile ID: orcl-retail-source
  • Hostname: <db_host>
  • Port: 1521
  • Username: datastream
  • Password: tutorial_datastream
  • System Identifier (SID): XE
  • Connectivity method: Select IP allowlisting

3. Click Run Test to verify that the source database and Datastream can communicate with each other, and then click Create & Continue.


You see the Select Objects to Include page, which defines the objects to replicate, specific schemas, tables, and columns and be included or excluded.

If the test fails, make the necessary changes to the form parameters and then retest.

4. Select the following: FastFresh > Orders, as shown in the following image:

2 Oracle data in bg.jpg

5. To load existing records, set the Backfill mode to Automatic, and then click Continue. 

6. In the Define Destination section, select Create new connection profile. A form appears. Fill in the form as follows, and then click Create & Continue:

  • Connection Profile Name: oracle-retail-gcs
  • Connection Profile ID: oracle-retail-gcs
  • Bucket Name: The name of the bucket that you created in the Prepare your environment section.

7. Keep the Stream path prefix blank, and for Output format, select JSON. Click Continue.8. On the Create new connection profile page, click Run Validation, and then click Create.

The output is similar to the following:

3 Oracle data in bg.jpg

Step 3: Create a Dataflow job using the Datastream to BigQuery template

In this section, you deploy Dataflow’s Datastream to BigQuery streaming template to replicate the changes captured by Datastream into BigQuery.

You also extend the functionality of this template by creating and using UDFs.

Create a UDF for processing incoming data

You create a UDF to perform the following operations on both the backfilled data and all new incoming data:

  • Redact sensitive information such as the customer payment method.
  • Add the Oracle source table to BigQuery for data lineage and discovery purposes.

This logic is captured in a JavaScript file that takes the JSON files generated by Datastream as an input parameter.

1. In the Cloud Shell session, copy and save the following code to a file named retail_transform.js:

  function process(inJson) {

   var obj = JSON.parse(inJson),
   includePubsubMessage = obj.data && obj.attributes,
   data = includePubsubMessage ? obj.data : obj;

   data.PAYMENT_METHOD = data.PAYMENT_METHOD.split(':')[0].concat("XXX");

   data.ORACLE_SOURCE = data._metadata_schema.concat('.', data._metadata_table);

   return JSON.stringify(obj);
}

2. Create a Cloud Storage bucket to store the retail_transform.js file and then upload the JavaScript file to the newly created bucket:

  gsutil mb gs://js-${BUCKET_NAME}

gsutil cp retail_transform.js \
gs://js-${BUCKET_NAME}/utils/retail_transform.js

Create a Dataflow job

1. In Cloud Shell, create a dead-letter queue (DLQ) bucket to be used by Dataflow:

  gsutil mb gs://dlq-${BUCKET_NAME}

2. Create a service account for the Dataflow execution and assign the account the following roles: Dataflow Worker, Dataflow Admin, Pub/Sub Admin, BigQuery Data Editor,BigQuery Job User, Datastream Admin and Storage Admin.

  gcloud iam service-accounts create df-tutorial
  gcloud projects add-iam-policy-binding ${PROJECT_ID} \
--member="serviceAccount:df-tutorial@${PROJECT_ID}.iam.gserviceaccount.com" \
--role="roles/dataflow.admin"

gcloud projects add-iam-policy-binding ${PROJECT_ID} \
--member="serviceAccount:df-tutorial@${PROJECT_ID}.iam.gserviceaccount.com" \
--role="roles/dataflow.worker"

gcloud projects add-iam-policy-binding ${PROJECT_ID} \
--member="serviceAccount:df-tutorial@${PROJECT_ID}.iam.gserviceaccount.com" \
--role="roles/pubsub.admin"

gcloud projects add-iam-policy-binding ${PROJECT_ID} \
--member="serviceAccount:df-tutorial@${PROJECT_ID}.iam.gserviceaccount.com" \
--role="roles/bigquery.dataEditor"

gcloud projects add-iam-policy-binding ${PROJECT_ID} \
--member="serviceAccount:df-tutorial@${PROJECT_ID}.iam.gserviceaccount.com" \
--role="roles/bigquery.jobUser"

gcloud projects add-iam-policy-binding ${PROJECT_ID} \
--member="serviceAccount:df-tutorial@${PROJECT_ID}.iam.gserviceaccount.com" \
--role="roles/datastream.admin"


gcloud projects add-iam-policy-binding ${PROJECT_ID} \
--member="serviceAccount:df-tutorial@${PROJECT_ID}.iam.gserviceaccount.com" \
--role="roles/storage.admin"

3. Create a firewall egress rule to let Dataflow VMs communicate, send, and receive network traffic on TCP ports 12345 and 12346 when auto scaling is enabled:

  gcloud compute firewall-rules create fw-allow-inter-dataflow-comm \
--action=allow \
--direction=ingress \
--network=GCP_NETWORK_NAME  \
--target-tags=dataflow \
--source-tags=dataflow \
--priority=0 \
--rules tcp:12345-12346

4. Create and run a Dataflow job:

  export REGION=us-central1

gcloud dataflow flex-template run orders-cdc-template --region ${REGION} \
--template-file-gcs-location "gs://dataflow-templates/latest/flex/Cloud_Datastream_to_BigQuery" \
--service-account-email "df-tutorial@${PROJECT_ID}.iam.gserviceaccount.com" \
--parameters \
inputFilePattern="gs://${BUCKET_NAME}/",\
gcsPubSubSubscription="projects/${PROJECT_ID}/subscriptions/oracle_retail_sub",\
inputFileFormat="json",\
outputStagingDatasetTemplate="retail",\
outputDatasetTemplate="retail",\
deadLetterQueueDirectory="gs://dlq-${BUCKET_NAME}",\
autoscalingAlgorithm="THROUGHPUT_BASED",\
mergeFrequencyMinutes=1,\
javascriptTextTransformGcsPath="gs://js-${BUCKET_NAME}/utils/retail_transform.js",\
javascriptTextTransformFunctionName="process"

Check the Dataflow console to verify that a new streaming job has started.

5. In Cloud Shell, run the following command to start your Datastream stream:

  gcloud datastream streams update oracle-cdc \
--location=us-central1 --state=RUNNING --update-mask=state

6. Check the Datastream stream status:

  gcloud datastream streams list --location=us-central1

Validate that the state shows as Running. It may take a few seconds for the new state value to be reflected.

Check the Datastream console to validate the progress of the ORDERS table backfill.

The output is similar to the following:

4 Oracle data in bg.jpg

Because this task is an initial load, Datastream reads from the ORDERS object. It writes all records to the JSON files located in the Cloud Storage bucket that you specified during the stream creation. It will take about 10 minutes for the backfill task to complete.

Final step: Analyze your data in BigQuery

After a few minutes, your backfilled data replicates into BigQuery. Any new incoming data is streamed into your datasets in (near) real time. Each record is processed by the UDF logic that you defined as part of the Dataflow template.

The following two new tables in the datasets are created by the Dataflow job:

  • ORDERS: This output table is a replica of the Oracle table and includes the transformations applied to the data as part of the Dataflow template.
  • ORDERS_log: This staging table records all the changes from your Oracle source. The table is partitioned, and stores the updated record alongside some metadata change information, such as whether the change is an update, insert, or delete.

BigQuery lets you see a real-time view of the operational data. You can also run queries such as a comparison of the sales of a particular product across stores in real time, or combining sales and customer data to analyze the spending habits of customers in particular stores.

Run queries against your operational data

1. In BigQuery, run the following SQL to query the top three selling products:

  SELECT product_name, SUM(quantity) as total_sales
FROM `retail.ORDERS`
GROUP BY product_name
ORDER BY total_sales desc
LIMIT 3;

The output is similar to the following:

5 Oracle data in bg.jpg

2. In BigQuery, run the following SQL statements to query the number of rows on both the ORDERS and ORDERS_log tables:

  SELECT count(*) FROM `hackfast.retail.ORDERS_log`;
SELECT count(*) FROM `hackfast.retail.ORDERS`;

With the backfill completed, the last statement should return the number 520217.

Congratulations! Now you just completed the change data capture of Oracle data in BigQuery, real-time!

Clean up

To avoid incurring charges to your Google Cloud account for the resources used in this tutorial, either delete the project that contains the resources, or keep the project and delete the individual resources. To remove the project:

  1. In the Cloud console, go to the Manage resources page.
  2. In the project list, select the project that you want to delete, and then click Delete.
  3. In the dialog, type the project ID, and then click Shut down to delete the project.

What’s next?

If you’re looking to further build on this foundation, wonder how to forecast future demand, and how to visualize this forecast data as it arrives, explore this tutorial: Build and visualize demand forecast predictions using Datastream, Dataflow, BigQuery ML, and Looker.