Tutorial | Data quality and SQL metrics#

Let’s learn how to evaluate the quality of SQL datasets using SQL metrics and data quality rules.

Get started#

Objectives#

In this tutorial, you will learn how to create a data quality rule that warns if a foreign key does not have a valid primary key match. In other words, you’ll check for referential integrity.

To do so, you will:

  • Build a metric that uses the output of an SQL query.

  • Create a data quality rule that verifies the validity of the metric.

  • Examine the source of data quality warnings.

Prerequisites#

To reproduce the steps in this tutorial, you’ll need:

  • Dataiku 12.6 or newer.

  • An SQL connection configured in Dataiku.

  • Knowledge of relational databases and SQL queries.

Create the project#

  1. From the Dataiku Design homepage, click + New Project > DSS tutorials > Advanced Designer > Data Quality and SQL Metrics.

  2. From the project homepage, click Go to Flow.

Note

You can also download the starter project from this website and import it as a zip file.

Change connections#

To get this data into your SQL database, let’s change the dataset connections.

  1. Select the orders_filtered, customers_prepared, and orders_joined datasets.

  2. Near the bottom of the right sidebar, select Change connection.

  3. For the new connection, select an available SQL connection.

  4. Click Save.

You’ll next want to build the Flow.

  1. Click Flow Actions at the bottom right of the Flow.

  2. Click Build all.

  3. Keep the default settings and click Build.

Use case#

Let’s examine the orders_filtered and customers_prepared datasets in the Flow. The orders_filtered dataset tracks t-shirt orders, while customers_prepared contains customer information.

For this tutorial, one main requirement is that every customer in orders_filtered should have a corresponding entry in the customers_prepared dataset.

In other words, we need to ensure that all foreign keys in orders_filtered have matching primary keys in customers_prepared.

A diagram showing the relationship between with customers and orders datasets.

Note

This project comes with a data quality rule on orders_joined that validates this requirement. However, using an SQL metric can help you identify issues earlier in the data pipeline.

Test an SQL query#

Our goal is to write an SQL query that returns the number of orders made by customers that are not accounted for in the customer dataset. Before creating an SQL metric, let’s test to make sure that the SQL query returns a correct response.

  1. Select the orders_filtered dataset.

  2. In the right sidebar, open the Lab tab.

  3. In the Code Notebooks section, select New.

  4. Select SQL and name it orders_metric.

  5. Click Create.

The steps to create an SQL notebook.

The way you reference tables in your query will depend on the schema of your SQL database, your project key, and whether you are on Dataiku Cloud or a self-managed instance.

Testing in the notebook should help you determine the correct way to format your query.

  1. Click + Query.

  2. Paste this query into the code editor:

    SELECT COUNT(*) AS missing_key_count
    FROM "{ORDERS_FILTERED_TABLE}" o
    LEFT JOIN "{CUSTOMERS_PREPARED_TABLE}" c ON o."customer_id" = c."customerID"
    WHERE c."customerID" IS NULL;
    
  3. Replace "{ORDERS_FILTERED_TABLE}" and "{CUSTOMERS_PREPARED_TABLE}" with the correct table names.

    Tip

    You can paste the correct names in the code editor by switching to the Tables tab, and clicking the plus sign next to the relevant table.

  4. Click Run to execute the query.

  5. Verify that the query returns 1. This means that there is one customer in orders_filtered who is not in customers_prepared.

The steps to write and run a SQL query, including the output result.

Create an SQL metric#

Once you have validated that your query works, let’s use it to create an SQL metric.

  1. Copy your SQL query.

  2. Return to the Flow and open the orders_filtered dataset.

  3. Navigate to the Metrics tab.

  4. Select Edit Metrics.

  5. At the bottom of the page, click New SQL Query Probe and toggle your metric On.

  6. Paste your SQL query in the code editor.

  7. Save your changes.

  8. Click the back arrow to return to the Metrics page.

The steps to add a SQL metric.

Compute the metric#

To use this new metric for a data quality rule, you’ll have to compute it first.

  1. Select X/Y Metrics.

  2. Click on your SQL metric to add it to the Metrics to display column.

  3. Click Save.

  4. Select Compute All to compute all metrics.

You should see a new tile that displays the value of your metric.

The steps to view and compute the new SQL metric.

Add a data quality rule#

Now, you’ll add a new rule that returns a warning if the value of your metric is greater than zero.

  1. Open the Data Quality tab.

  2. Select Edit Rules.

  3. Click Metric value in range.

  4. In the Metric dropdown, select your custom SQL metric.

  5. Toggle on the Soft max option and ensure that the value is 0.

  6. Click Run Test to quickly view the result of the rule.

  7. Save your work.

The steps to create a data quality rule that validates the metric value.

The result is a warning that not every foreign key (a customer ID in the orders_filtered dataset) references an existing primary key (a customer ID in the customers_prepared dataset).

Investigate the warning#

In most real-world cases, you would want to investigate and resolve the source of the warning.

  1. Return to your orders_metric SQL notebook.

  2. Click the Duplicate query icon.

  3. Replace SELECT COUNT(*) AS missing_key_count with SELECT "customer_id".

  4. Click Run to execute the query.

The query should return the customer that is missing from customers_prepared.

The steps to return the missing customer ID using a SQL query.

Tip

One way to apply your data quality rule is to use a Verify rules or run checks step in a scenario.

If the data quality rule returns a warning, you can block the rebuilding of a data pipeline during a scenario run. In this case, you can prevent the build of the orders_joined dataset if there is a customer missing from customers_prepared dataset. Further, you could add scenario steps to execute SQL and report the missing customer.

What’s next?#

In this tutorial, you learned that using data quality checks can help you maintain referential integrity by identifying and potentially handling invalid foreign key references.

Next, try to create different metrics and data quality rules to validate your SQL datasets!

See also

Find more information on Data Quality Rules in the reference documentation.