The data quality task is used to check the data accuracy during the integration and processing of data. Data quality tasks in this release include single-table checking, single-table custom SQL checking, multi-table accuracy, and two-table value comparisons. The running environment of the data quality task is Spark 2.4.0, and other versions have not been verified, and users can verify by themselves.
The execution logic of the data quality task is as follows:
TaskParam
.Master
will parse TaskParam
, encapsulate the parameters required by DataQualityTask
and send it to Worker
.t_ds_dq_execute_result
table of dolphinscheduler
Worker
sends the task result to Master
, after Master
receives TaskResponse
, it will judge whether the task type is DataQualityTask
, if so, it will read the corresponding result from t_ds_dq_execute_result
according to taskInstanceId
, and then The result is judged according to the check mode, operator and threshold configured by the user.<server-name>/conf/common.properties
# Change to specific version if you not use dev branch
data-quality.jar.name=dolphinscheduler-data-quality-dev-SNAPSHOT.jar
data-quality.jar.name
according to the actual package name.data-quality
separately, remember to modify the package name to be consistent with data-quality.jar.name
.sql
update script to initialize the database before running.MySQL
data, you need to comment out the scope
of MySQL
in pom.xml
.MySQL
, PostgreSQL
and HIVE
data sources have been tested, other data sources have not been tested yet.Spark
needs to be configured to read Hive
metadata, Spark
does not use jdbc
to read Hive
.Parameter | Description |
---|---|
CheckMethod | [CheckFormula][Operator][Threshold], if the result is true, it indicates that the data does not meet expectations, and the failure strategy is executed. |
CheckFormula |
|
Operator | =, >, >=, <, <=, != |
ExpectedValue |
|
Example |
|
In the example, assuming that the actual value is 10, the operator is >, and the expected value is 9, then the result 10 -9 > 0 is true, which means that the row data in the empty column has exceeded the threshold, and the task is judged to fail.
The goal of the null value check is to check the number of empty rows in the specified column. The number of empty rows can be compared with the total number of rows or a specified threshold. If it is greater than a certain threshold, it will be judged as failure.
The SQL statement that calculates the null of the specified column is as follows:
SELECT COUNT(*) AS miss FROM ${src_table} WHERE (${src_field} is null or ${src_field} = '') AND (${src_filter})
The SQL to calculate the total number of rows in the table is as follows:
SELECT COUNT(*) AS total FROM ${src_table} WHERE (${src_filter})
Parameter | Description |
---|---|
Source data type | Select MySQL, PostgreSQL, etc. |
Source data source | The corresponding data source under the source data type. |
Source data table | Drop-down to select the table where the validation data is located. |
Src filter conditions | Such as the title, it will also be used when counting the total number of rows in the table, optional. |
Src table check column | Drop-down to select the check column name. |
Check method |
|
Check operators | =, >, >=, <, <=, ! = |
Threshold | The value used in the formula for comparison. |
Failure strategy |
|
Expected value type | Select the desired type from the drop-down menu. |
The timeliness check is used to check whether the data is processed within the expected time. The start time and end time can be specified to define the time range. If the amount of data within the time range does not reach the set threshold, the check task will be judged as fail.
Parameter | Description |
---|---|
Source data type | Select MySQL, PostgreSQL, etc. |
Source data source | The corresponding data source under the source data type. |
Source data table | Drop-down to select the table where the validation data is located. |
Src filter conditions | Such as the title, it will also be used when counting the total number of rows in the table, optional. |
Src table check column | Drop-down to select check column name. |
Start time | The start time of a time range. |
end time | The end time of a time range. |
Time Format | Set the corresponding time format. |
Check method |
|
Check operators | =, >, >=, <, <=, ! = |
Threshold | The value used in the formula for comparison. |
Failure strategy |
|
Expected value type | Select the desired type from the drop-down menu. |
The goal of field length verification is to check whether the length of the selected field meets the expectations. If there is data that does not meet the requirements, and the number of rows exceeds the threshold, the task will be judged to fail.
Parameter | Description |
---|---|
Source data type | Select MySQL, PostgreSQL, etc. |
Source data source | The corresponding data source under the source data type. |
Source data table | Drop-down to select the table where the validation data is located. |
Src filter conditions | Such as the title, it will also be used when counting the total number of rows in the table, optional. |
Src table check column | Drop-down to select the check column name. |
Logical operators | =, >, >=, <, <=, ! = |
Field length limit | Like the title. |
Check method |
|
Check operators | =, >, >=, <, <=, ! = |
Threshold | The value used in the formula for comparison. |
Failure strategy |
|
Expected value type | Select the desired type from the drop-down menu. |
The goal of the uniqueness check is to check whether the fields are duplicated. It is generally used to check whether the primary key is duplicated. If there are duplicates and the threshold is reached, the check task will be judged to be failed.
Parameter | Description |
---|---|
Source data type | Select MySQL, PostgreSQL, etc. |
Source data source | The corresponding data source under the source data type. |
Source data table | Drop-down to select the table where the validation data is located. |
Src filter conditions | Such as the title, it will also be used when counting the total number of rows in the table, optional. |
Src table check column | Drop-down to select the check column name. |
Check method |
|
Check operators | =, >, >=, <, <=, ! = |
Threshold | The value used in the formula for comparison. |
Failure strategy |
|
Expected value type | Select the desired type from the drop-down menu. |
The goal of regular expression verification is to check whether the format of the value of a field meets the requirements, such as time format, email format, ID card format, etc. If there is data that does not meet the format and exceeds the threshold, the task will be judged as failed.
Parameter | Description |
---|---|
Source data type | Select MySQL, PostgreSQL, etc. |
Source data source | The corresponding data source under the source data type. |
Source data table | Drop-down to select the table where the validation data is located. |
Src filter conditions | Such as the title, it will also be used when counting the total number of rows in the table, optional. |
Src table check column | Drop-down to select check column name. |
Regular expression | As title. |
Check method |
|
Check operators | =, >, >=, <, <=, ! = |
Threshold | The value used in the formula for comparison. |
Failure strategy |
|
Expected value type | Select the desired type from the drop-down menu. |
The goal of enumeration value verification is to check whether the value of a field is within the range of the enumeration value. If there is data that is not in the range of the enumeration value and exceeds the threshold, the task will be judged to fail.
Parameter | Description |
---|---|
Source data type | Select MySQL, PostgreSQL, etc. |
Source data source | The corresponding data source under the source data type. |
Source data table | Drop-down to select the table where the validation data is located. |
Src table filter conditions | Such as title, also used when counting the total number of rows in the table, optional. |
Src table check column | Drop-down to select the check column name. |
List of enumeration values | Separated by commas. |
Check method |
|
Check operators | =, >, >=, <, <=, ! = |
Threshold | The value used in the formula for comparison. |
Failure strategy |
|
Expected value type | Select the desired type from the drop-down menu. |
The goal of table row number verification is to check whether the number of rows in the table reaches the expected value. If the number of rows does not meet the standard, the task will be judged as failed.
Parameter | Description |
---|---|
Source data type | Select MySQL, PostgreSQL, etc. |
Source data source | The corresponding data source under the source data type. |
Source data table | Drop-down to select the table where the validation data is located. |
Src filter conditions | Such as the title, it will also be used when counting the total number of rows in the table, optional. |
Src table check column | Drop-down to select the check column name. |
Check method |
|
Check operators | =, >, >=, <, <=, ! = |
Threshold | The value used in the formula for comparison. |
Failure strategy |
|
Expected value type | Select the desired type from the drop-down menu. |
Parameter | Description |
---|---|
Source data type | Select MySQL, PostgreSQL, etc. |
Source data source | The corresponding data source under the source data type. |
Source data table | Drop-down to select the table where the data to be verified is located. |
Actual value name | Alias in SQL for statistical value calculation, such as max_num. |
Actual value calculation SQL | SQL for outputting actual values. Note:
|
Src filter conditions | Such as the title, it will also be used when counting the total number of rows in the table, optional. |
Check method |
|
Check operators | =, >, >=, <, <=, ! = |
Threshold | The value used in the formula for comparison. |
Failure strategy |
|
Expected value type | Select the desired type from the drop-down menu. |
Accuracy checks are performed by comparing the accuracy differences of data records for selected fields between two tables, examples are as follows
c1 | c2 |
---|---|
a | 1 |
b | 2 |
c21 | c22 |
---|---|
a | 1 |
b | 3 |
If you compare the data in c1 and c21, the tables test1 and test2 are exactly the same. If you compare c2 and c22, the data in table test1 and table test2 are inconsistent.
Parameter | Description |
---|---|
Source data type | Select MySQL, PostgreSQL, etc. |
Source data source | The corresponding data source under the source data type. |
Source data table | Drop-down to select the table where the data to be verified is located. |
Src filter conditions | Such as the title, it will also be used when counting the total number of rows in the table, optional. |
Target data type | Choose MySQL, PostgreSQL, etc. |
Target data source | The corresponding data source under the source data type. |
Target data table | Drop-down to select the table where the data to be verified is located. |
Target filter conditions | Such as the title, it will also be used when counting the total number of rows in the table, optional. |
Check column | Fill in the source data column, operator and target data column respectively. |
Verification method | Select the desired verification method. |
Operators | =, >, >=, <, <=, ! = |
Failure strategy |
|
Expected value type | Select the desired type in the drop-down menu, only SrcTableTotalRow , TargetTableTotalRow and fixed value are suitable for selection here. |
Two-table value comparison allows users to customize different SQL statistics for two tables and compare the corresponding values. For example, for the source table A, the total amount of a certain column is calculated, and for the target table, the total amount of a certain column is calculated. value sum2, compare sum1 and sum2 to determine the check result.
Parameter | Description |
---|---|
Source data type | Select MySQL, PostgreSQL, etc. |
Source data source | The corresponding data source under the source data type. |
Source data table | The table where the data is to be verified. |
Actual value name | Calculate the alias in SQL for the actual value, such as max_age1. |
Actual value calculation SQL | SQL for outputting actual values. Note:
|
Target data type | Choose MySQL, PostgreSQL, etc. |
Target data source | The corresponding data source under the source data type. |
Target data table | The table where the data is to be verified. |
Expected value name | Calculate the alias in SQL for the expected value, such as max_age2. |
Expected value calculation SQL | SQL for outputting expected value. Note:
|
Verification method | Select the desired verification method. |
Operators | =, >, >=, <, <=, ! = |
Failure strategy |
|