Set up Storage buckets, BigQuery dataset, and Pub/Sub topic.
Check my progressCreate process-invoices Cloud Function.
Check my progressCreate geocode-addresses Cloud Function.
Check my progressCheck pipeline has processed data.
Check my progress Test and share your knowledge with our community! Get access to over 700 hands-on labs, skill badges, and coursesThe Document AI API is a document understanding solution that takes unstructured data, such as documents and emails, and makes the data easier to understand, analyze, and consume.
In this lab, you'll build a document processing pipeline to automatically analyze documents uploaded to Cloud Storage. The pipeline uses a Cloud Function with a Document AI form processor to extract data and store it in BigQuery. If the form includes address fields, the address data is sent to a Pub/Sub topic. This triggers a second Cloud Function, which uses the Geocoding API to add coordinates and writes the results to BigQuery.
This simple pipeline uses a general form processor to detect basic form data, like labeled address fields. For more complex documents, Document AI offers specialized parsers (beyond the scope of this lab) that extract detailed information even without explicit labels. For instance, the Invoice parser can identify address and supplier details from an unlabeled invoice by understanding common invoice layouts.
The overall architecture that you will create looks like the following:
This example architecture uses Cloud Functions to implement a simple pipeline, but Cloud Functions are not recommended for production environments as the Document AI API calls can exceed the timeouts supported by Cloud Functions. Cloud Tasks are recommended for a more robust serverless solution.
In this lab, you will learn how to:
You'll configure a Cloud Function to:
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 will be made available to you.
This hands-on lab lets you do the lab activities yourself in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials that you use to sign in and access Google Cloud for the duration of the lab.
To complete this lab, you need:
Cloud Shell is a virtual machine that is loaded with development tools. It offers a persistent 5GB home directory and runs on the Google Cloud. Cloud Shell provides command-line access to your Google Cloud resources.
When you are connected, you are already authenticated, and the project is set to your Project_ID, . The output contains a line that declares the Project_ID for this session:
Your Cloud Platform project in this session is set to >>
gcloud is the command-line tool for Google Cloud. It comes pre-installed on Cloud Shell and supports tab-completion.
Output:
Output:
[core] project = >> Note: For full documentation of gcloud , in Google Cloud, refer to the gcloud CLI overview guide.
You must enable the APIs for Document AI, Cloud Functions, Cloud Build, and Geocoding for this lab, then create the API key that is required by the Geocoding Cloud Function.
The API key created dialog box displays your newly created key. An API key is a long string containing upper and lower case letters, numbers, and dashes. For example, a4db08b757294ea94c08f2df493465a1 .
In this task, you copy the source files into your Cloud Shell. These files include the source code for the Cloud Functions and the schemas for the BigQuery tables that you will create in the lab.
Create an instance of the generic form processor to use in the Document AI Platform using the Document AI Form Parser specialized parser. The generic form processor will process any type of document and extract all the text content it can identify in the document. It is not limited to printed text, it can handle handwritten text and text in any orientation, supports a number of languages, and understands how form data elements are related to each other so that you can extract key:value pairs for form fields that have text labels.
You will configure a Cloud Function later in this lab with the processor ID and location of this processor so that the Cloud Function will use this specific processor to process sample invoices.
Prepare your environment by creating the Google Cloud resources that are required for your document processing pipeline.
Create input, output, and archive Cloud Storage buckets for your document processing pipeline.
Create a BigQuery dataset and the three output tables required for your data processing pipeline.
You can navigate to BigQuery in the Cloud Console and inspect the schemas for the tables in the invoice_parser_results dataset using the BigQuery SQL workspace.
Initialize the Pub/Sub topic used to trigger the Geocoding API data enrichment operations in the processing pipeline.
Create the two Cloud Functions that your data processing pipeline uses to process invoices uploaded to Cloud Storage. These functions use the Document AI API to extract form data from the raw documents, then use the GeoCode API to retrieve geolocation data about the address information extracted from the documents.
You can examine the source code for the two Cloud Functions using the Code Editor or any other editor of your choice. The Cloud Functions are stored in the following folders in Cloud Shell:
The main Cloud Function, process-invoices , is triggered when files are uploaded to the input files storage bucket you created earlier.
The function folder scripts/cloud-functions/process-invoices contains the two files that are used to create the process-invoices Cloud Function.
The requirements.txt file specifies the Python libraries required by the function. This includes the Document AI client library as well as the other Google Cloud libraries required by the Python code to read the files from Cloud Storage, save data to BigQuery, and write messages to Pub/Sub that will trigger the remaining functions in the solution pipeline.
The main.py Python file contains the the Cloud Function code that creates the Document-AI, BigQuery, and Pub/Sub API clients and the following internal functions to process the documents:
The process_invoices Cloud Function only processes form data that has been detected with the following form field names:
The other Cloud Function, geocode-addresses , is triggered when a new message arrives on a Pub/Sub topic and it extracts its parameter data from the Pub/Sub message.
Create a Cloud Function that uses a Document AI form processor to parse form documents that have been uploaded to a Cloud Storage bucket.
Create the Cloud Function that accepts address data from a Pub/Sub message and uses the Geocoding API to precisely locate the address.
In this task, you finalize the configuration of the Cloud Functions by editing the environment variables for each function to reflect your lab specific parameters via the Cloud Console.
Set the Cloud Function environment variables for the process-invoices function.
Set the Cloud Function environment variables for the GeoCode data enrichment function.
Upload test data to Cloud Storage and monitor the progress of the pipeline as the documents are processed and the extracted data is enhanced.
You will see events related to the creation of the function and the updates made to configure the environment variables followed by events showing details about the file being processed, and the data detected by Document AI.
Watch the events until you see a final event indicating that the function execution finished with a status of OK . If errors are reported double check that the parameters set in the .env.yaml file in the previous section are correct. In particular make sure the Processor ID and location are valid. The event list does not automatically refresh.
At the end of the processing, your BigQuery tables will be populated with the Document AI extracted entities as well as enriched data provided by the Geocoding API if the Document AI Processor has detected address data in the uploaded document.
You've successfully used the Document AI API and other Google Cloud services to build an end-to-end invoice processing pipeline. In this lab, you enabled the Document AI API, deployed Cloud Functions that use the Document AI, BigQuery, Cloud Storage, and Pub/Sub APIs, and configured a Cloud Function to trigger when documents are uploaded to Cloud Storage. You also configured a Cloud Function to use the Document AI client library for Python and to trigger when a Pub/Sub message was created.
. helps you make the most of Google Cloud technologies. Our classes include technical skills and best practices to help you get up to speed quickly and continue your learning journey. We offer fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy schedule. Certifications help you validate and prove your skill and expertise in Google Cloud technologies.
Manual Last Updated August 23, 2024
Lab Last Tested August 23, 2024
Copyright 2024 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.
Lab instructions and tasksThis content is not currently available
We will notify you via email, when it becomes available
We will contact you via email, if it becomes available
Use Cloud Functions and Pub/Sub to create an end-to-end document processing pipeline using Document AI.
Duration: 0m setup · 60m access · 40m completion
AWS Region: []
Levels: introductory