You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+73-27Lines changed: 73 additions & 27 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,20 +3,22 @@
3
3
`dbqctl` is a free, open-source data quality CLI checker that provides a set of tools to profile, validate and test data in your data warehouse or databases.
4
4
It is designed to be flexible, fast, easy to use and integrate seamlessly into your existing workflow.
5
5
6
-
## Features
6
+
---
7
7
8
-
data profiling
8
+
## Features
9
9
10
-
v1 supported checks
11
-
---
12
-
row_count > 10
13
-
null_count(col) == 0
14
-
avg(col) <= 24.2
15
-
max(col) < 1000
16
-
min(col) == 0
17
-
sum(col) > 0
18
-
stddevPop(col) between 1 and 100_000_000
19
-
custom
10
+
- Effortless dataset import: pull in datasets (e.g. tables) from your chosen DWH with filters
11
+
- Comprehensive data profiling: gain instant insights into your data with automatic profiling, including:
12
+
- Data Types
13
+
- Null & Blank Counts
14
+
- Min/Max/Avg Values
15
+
- Standard Deviation
16
+
- Most Frequent Values
17
+
- Data quality checks with built-in support for:
18
+
- Row Count
19
+
- Null Count
20
+
- Average, Max, Min, Sum
21
+
- Flexible custom SQL checks: you can define and run your own SQL-based quality rules to meet unique business requirements.
20
22
21
23
## Supported databases
22
24
-[ClickHouse](https://clickhouse.com/)
@@ -25,11 +27,11 @@ custom
25
27
26
28
### Installation
27
29
28
-
Download the latest binaries from [GitHub Releases](https://github.com/DataBridgeTech/dbq/releases).
30
+
Download the latest binaries from [GitHub Releases](https://github.com/DataBridgeTech/dbqctl/releases).
29
31
30
32
### Configuration
31
33
32
-
Create dbq configuration file (default lookup directory is $HOME/.dbq.yaml or ./dbq.yaml). Alternatively,
34
+
Create `dbqctl` configuration file (default lookup directory is $HOME/.dbq.yaml or ./dbq.yaml). Alternatively,
33
35
you can specify configuration during the launch via `--config` parameter:
0 commit comments