Skip to main content

Library for data checks and data quality monitoring based on duckdb.

Project description

Koality Logo

Data Quality Monitoring powered by DuckDB

Tests Release Pages Deployment Codecov PyPI version PyPI status Python versions PyPI downloads License


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!

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

defaults:
  result_table: my_project.dqm.results
  persist_results: true
  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: my_project.dataset.orders
      lower_threshold: 0
      upper_threshold: 0.05
    checks:
      - check_column: customer_id
      - check_column: order_date
      - check_column: total_amount

2. Run checks via CLI

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:

  1. defaults: Base settings for all checks (result table, persistence, filters)
  2. check_bundles.defaults: Bundle-level defaults (check type, table, thresholds)
  3. 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

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)
offset Days offset for date parsing (e.g., -1 for yesterday)

Date Parsing

Koality automatically parses date values when type: date is set:

  • Relative dates: today, yesterday, tomorrow
  • ISO dates: 2024-01-15, 20240115
  • With offset: Use offset: -2 to go back 2 additional days

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

koality-0.2.0.tar.gz (25.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

koality-0.2.0-py3-none-any.whl (27.5 kB view details)

Uploaded Python 3

File details

Details for the file koality-0.2.0.tar.gz.

File metadata

  • Download URL: koality-0.2.0.tar.gz
  • Upload date:
  • Size: 25.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","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

Hashes for koality-0.2.0.tar.gz
Algorithm Hash digest
SHA256 eabe363f8d9656be2c75e12e6583dfbf59825863fe51908b89c62c4ab2154a15
MD5 97e663f94e5459f4c35b9d2d3b2fca3e
BLAKE2b-256 aff5a87544adf8d78d35ef7c3f0251f7b7ac4bf596f172e6caef170ba4abd780

See more details on using hashes here.

File details

Details for the file koality-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: koality-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 27.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.18 {"installer":{"name":"uv","version":"0.9.18","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

Hashes for koality-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 64b2602226bfc13ac9ec67d220e95d879655eaa5d78a4d7d8a068863b24b0050
MD5 025c807032968e863961f1666cbc7031
BLAKE2b-256 3d25682851c45ec8e6f9416e0f414e88a67fa9daf76765eb7fc1e2480759d9d8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page