Deequ
Data Quality Plane · Testing & Validation
Library from AWS Labs for defining unit tests for data on Apache Spark.
- Open source
Data Quality Plane · Testing & Validation
Statistical data validation for DataFrames in Python.
Pandera validates dataframes, and it does it by treating a schema as a type rather than as a test suite. That is what separates it from everything else in this category.
Schemas are written in Python two ways, an object-style dataframe schema or a class-based model with pydantic-style syntax, where each column is an annotated attribute with field constraints.
The typing integration is the real draw. A decorator validates function signatures typed as a dataframe of a given schema, and mypy integration is documented, so data contracts live in the same place as your type hints.
Data synthesis is its second distinctive feature. A schema can generate example data through hypothesis, so the same definition that validates your data also produces test fixtures for it.
Backend reach is unusually wide: define a schema once and apply it to pandas, polars, pyspark, dask, modin, ibis, pyarrow, geopandas or xarray, with narwhals as a unified opt-in layer.
Validation always runs in process, in the dataframe engine. Nothing is pushed to a warehouse as SQL, which is the clearest functional difference from Soda and Great Expectations.
Failure handling is well judged. By default it raises on the first problem; with lazy validation it collects everything and hands back failure cases as a dataframe you can inspect programmatically.
For production there are two environment switches worth knowing: validation depth can drop to schema-only in hot paths, and validation can be disabled wholesale.
Read one published performance hazard if you use Spark: each count command triggers a fresh Spark action, so a dataframe can be reprocessed repeatedly unless you enable the documented caching flags.
It is MIT licensed, the most permissive here, and free with no commercial edition. Note it is still pre-1.0 at 0.33.1 with over 450 open issues, though releases and commits are frequent.
The same headings are used for every testing & validation entry, so two tools can be read side by side.
Open sourceFree, MIT licensed
Free and open source under the MIT licence, the most permissive in this category. There are no tiers, no free-tier limits, no trial, no quote-only plan and no licence keys. Union.ai sells a separate production AI runtime that integrates with Pandera, but Pandera itself is not gated by it and no paid edition exists. One point of confusion worth knowing: the Union.ai page footer links to a community licence, which governs Union.ai's own product rather than Pandera.
Pandera is a Union.ai open-source project, created and led by Niels Bantilan, who works at Union.ai, with the repository in the unionai-oss organisation. It is MIT licensed with around 215 contributors and an unusually distributed commit base for its size, and carries a pyOpenSci peer-review credential, the only formal quality signal published. Union.ai's paid product is a production AI runtime that integrates with Pandera and Flyte; there is no paid Pandera tier, no cloud edition and no enterprise version. Union.ai's own founding details are not published on the Pandera pages.
Founded 2018 · pandera.readthedocs.io
Data Quality Plane · Testing & Validation
Library from AWS Labs for defining unit tests for data on Apache Spark.
Data Quality Plane · Testing & Validation
Data validation framework for defining, running and documenting expectations about data. GX Core is Apache 2.0 and now stewarded by Fivetran; GX Cloud was acquired by FICO and withdrawn from public sale in June 2026.
Data Quality Plane · Testing & Validation
Data quality and data contract verification with checks written in YAML, plus a cloud platform. Soda Core moved from Apache 2.0 to the Elastic License 2.0 with version 4 in January 2026, so the engine is source-available.
Drafted with AI assistance and checked against the vendor’s own documentation.