Library for data checks and data quality monitoring based on duckdb.
Project description
Data Quality Monitoring powered by DuckDB
Koality is a Python library for data quality monitoring (DQM) using DuckDB. It provides configurable checks that validate data in tables and can persist results to database tables for monitoring and alerting.
We would like to thank Norbert Maager who is the original inventor of Koality.
Warning
This library is a work in progress!
Breaking changes should be expected until a 1.0 release, so version pinning is recommended.
Documentation
For comprehensive documentation, visit the Koality Documentation.
Core Features
- Configurable Checks: Define data quality checks via simple YAML configuration files
- DuckDB-Powered: Fast, in-process analytics with DuckDB's in-memory engine
- External Database Support: Currently supports Google Cloud BigQuery via DuckDB extensions
- Multiple Check Types: Null ratios, regex matching, value sets, duplicates, counts, match rates, outlier detection, and more
- Flexible Filtering: Dynamic filtering system with column/value pairs for targeted checks
- Result Persistence: Store check results in database tables for historical tracking
- CLI Tool: Easy-to-use command-line interface for running checks
- Threshold Validation: Compare check results against configurable lower/upper bounds
Supported Databases
| Database | Status |
|---|---|
| DuckDB (in-memory) | ✅ Fully supported |
| Google Cloud BigQuery | ✅ Fully supported |
Koality uses DuckDB as its query engine. External databases are accessed through DuckDB extensions (e.g., the BigQuery extension for Google Cloud).
External databases may need custom handling in execute_query!
Note on missing tables/datasets
Koality maps provider-specific "not found" errors (e.g., BigQuery Binder "Not found: Dataset ..." or DuckDB "does not exist") to a unified table_exists metric. When a check's query fails because the target table or dataset is missing, Koality records a table_exists failure for the affected table instead of a generic error to make missing-data diagnostics consistent across providers.
Available Checks
| Check Type | Description |
|---|---|
NullRatioCheck |
Share of NULL values in a column |
RegexMatchCheck |
Share of values matching a regex pattern |
ValuesInSetCheck |
Share of values matching a predefined set |
RollingValuesInSetCheck |
Values in set over a rolling time window |
DuplicateCheck |
Number of duplicate values in a column |
CountCheck |
Row count or distinct value count |
AverageCheck |
Average of a column |
MaxCheck |
Maximum of a column |
MinCheck |
Minimum of a column |
MatchRateCheck |
Match rate between two tables after joining |
RelCountChangeCheck |
Relative count change vs. historical average |
IqrOutlierCheck |
Detect outliers using interquartile range |
OccurrenceCheck |
Check value occurrence frequency |
Installation
pip install koality
Or add to your pyproject.toml:
[project]
dependencies = [
"koality>=0.1.0",
]
Quick Start
1. Create a configuration file
# koality_config.yaml
name: My Data Quality Checks
# Database connection setup - executed before running checks
database_setup: |
INSTALL bigquery;
LOAD bigquery;
ATTACH 'project=${PROJECT_ID}' AS bq (TYPE bigquery, READ_ONLY);
# Prefix for table references (use attached database name)
database_accessor: bq
defaults:
result_table: bq.dqm.results
log_path: dqm_failures.txt
filters:
partition_date:
column: date
value: yesterday
type: date
check_bundles:
- name: null_ratio_checks
defaults:
check_type: NullRatioCheck
table: bq.dataset.orders
lower_threshold: 0
upper_threshold: 0.05
checks:
- check_column: customer_id
- check_column: order_date
- check_column: total_amount
For in-memory DuckDB (local testing or CSV/Parquet files):
database_setup: |
CREATE TABLE orders AS SELECT * FROM 'data/orders.parquet';
CREATE TABLE results (check_name VARCHAR, result DOUBLE, timestamp TIMESTAMP);
database_accessor: ""
2. Run checks via CLI
# Pass database setup variables via CLI
koality run --config_path koality_config.yaml -dsv PROJECT_ID=my-gcp-project
# Or via environment variable
DATABASE_SETUP_VARIABLES="PROJECT_ID=my-gcp-project" koality run --config_path koality_config.yaml
3. Review results
Results are persisted to your configured result table and failures are logged to the specified log path.
Configuration Hierarchy
Koality uses a hierarchical configuration system where more specific settings override general ones:
defaults: Base settings for all checks (result table, persistence, filters)check_bundles.defaults: Bundle-level defaults (check type, table, thresholds)checks: Individual check configurations (specific columns, custom thresholds)
Filter System
Apply dynamic filters to check specific data subsets using the structured filters syntax:
defaults:
filters:
partition_date:
column: created_at
value: yesterday
type: date # Required for rolling checks; auto-parses date values
shop_id:
column: shop_id
value: SHOP01
type: identifier # Marks this as the identifier filter for result grouping
revenue:
column: total_revenue
value: 1000
operator: ">=" # Supports =, !=, >, >=, <, <=, IN, NOT IN, LIKE, NOT LIKE
Identifier filters and naming
Koality supports an identifier filter type which can be used to mark the field that identifies data partitions (e.g., shop, tenant). Use the global identifier_format setting in defaults to control how the identifier appears in result rows:
identifier(default): result columnIDENTIFIERcontainscolumn=value(e.g.,shop_code=EC0601).filter_name: result column uses the filter name (e.g.,SHOP_ID) and contains the value only.column_name: result column uses the database column name (e.g.,SHOP_CODE) and contains the value only.
If an identifier-type filter is defined without a concrete column or value (for example in global defaults), it is treated as a naming-only hint and will not be turned into a WHERE clause; this is useful when you only want to control the result identifier column name (e.g., SHOP_ID) across checks.
Behavior for missing identifier values
When an identifier-type filter is present but its value is missing or explicitly null, Koality substitutes a configurable placeholder for logging and naming (defaults.identifier_placeholder, default: ALL) to avoid None appearing in metric messages. You can override the placeholder at bundle or check level by setting identifier_placeholder in the corresponding defaults.
Additional docs: see docs/identifier_placeholder.md for usage examples and configuration details.
Filter Properties
| Property | Description |
|---|---|
column |
Database column name to filter on (optional in defaults, required after merge) |
value |
Filter value (optional in defaults, required after merge) |
type |
date, identifier, or other (default). Only one of each type allowed |
operator |
SQL operator: =, !=, >, >=, <, <=, IN, NOT IN, LIKE |
parse_as_date |
If true, parse value as date (for non-date-type filters) |
Date Parsing
Koality automatically parses date values when type: date is set:
- Relative dates:
today,yesterday,tomorrow - ISO dates:
2024-01-15,20240115 - With inline offset:
yesterday-2(2 days before yesterday),today+1(tomorrow)
Contributing
Contributions are welcome! Please feel free to submit issues and pull requests on GitHub.
License
This project is licensed under the MIT License - see the LICENSE.md file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file koality-0.11.1.tar.gz.
File metadata
- Download URL: koality-0.11.1.tar.gz
- Upload date:
- Size: 36.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1aa8a808b58892d477d5fcc362483f03ee7a6fd5d10de52a50d6d7f71c97d530
|
|
| MD5 |
62b294901371bcc61fcbd32b7c83f4b6
|
|
| BLAKE2b-256 |
7359d8eb1f3b571ca5d94fcf9197951b5b5d54c3559ab7a68a13c2fee277b992
|
File details
Details for the file koality-0.11.1-py3-none-any.whl.
File metadata
- Download URL: koality-0.11.1-py3-none-any.whl
- Upload date:
- Size: 38.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.26 {"installer":{"name":"uv","version":"0.9.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
140c3591d18ffd28e171389c60f66a1ef0a2378690fa13b3995f4947893cdf5a
|
|
| MD5 |
1d3934e5515b2641ba9babb1d6ced03c
|
|
| BLAKE2b-256 |
066fd554d59169eb95a52efcd1f31cab0f2c01e90439834fbbe2b3628d6f9bc7
|