Comparisons
Create a Comparison
Step-by-step guide to configuring and running a comparison between two datasets.
Navigate to Comparisons in the left sidebar and click New Comparison to open the creation wizard.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Step-by-step guide to configuring and running a comparison between two datasets.
| Type | When to use |
|---|---|
| Deep | When you need a complete diff — all differences identified and reported. |
| Shallow | When you only need to know if differences exist, not where. Stops at the first mismatch. |
| Schema | When you only need to compare structure (columns, types, constraints) without examining data. |
| Method | Description |
|---|---|
| Table | Compare data directly from a database table. Select a dataset and optionally apply a SQL filter clause (e.g. product.price > 100). |
| Query | Compare datasets using custom SQL queries. Useful when the comparison scope doesn’t map to a single table. |
| Setting | Description |
|---|---|
| Model | The text analysis model to use. |
| Pre-processing | Functions applied before comparison — lowercasing, punctuation removal, etc. |
| Similarity function | The algorithm used to score similarity (e.g. Levenshtein Distance). |
| Match threshold | A score between 0 and 1. Values above this are treated as matches. |
| Parameter | Description |
|---|---|
| Bisection Threshold | Minimum record count above which the dataset is split into smaller segments for processing. |
| Bisection Factor | The division factor used when breaking down large datasets. |
| Max Threadpool Size | Maximum number of parallel threads used during comparison. |
| Egress Limit | Maximum number of differing rows before the comparison automatically stops. |
| Per Column Diff Limit | Maximum number of differences detected per column. |
| Timeout Limit | Maximum allowed duration in minutes for the comparison job. |