Skip to content

Commit

Permalink
Merge pull request #32 from dqops/1.5.0
Browse files Browse the repository at this point in the history
1.5.0
  • Loading branch information
dqops authored Jul 3, 2024
2 parents ecd2f99 + d767509 commit cef4901
Show file tree
Hide file tree
Showing 3,800 changed files with 209,288 additions and 57,238 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion .run/dqo run.run.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<option name="region" />
<option name="useCurrentConnection" value="false" />
</extension>
<option name="JAR_PATH" value="$PROJECT_DIR$/dqops/target/dqo-dqops-1.4.1.jar" />
<option name="JAR_PATH" value="$PROJECT_DIR$/dqops/target/dqo-dqops-1.5.0.jar" />
<option name="VM_PARAMETERS" value="-XX:MaxRAMPercentage=60.0 --add-opens java.base/java.nio=ALL-UNNAMED --add-opens java.base/java.util.concurrent=ALL-UNNAMED" />
<option name="PROGRAM_PARAMETERS" value="--server.port=8888" />
<option name="WORKING_DIRECTORY" value="C:\dev\dqoado" />
Expand Down
13 changes: 7 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 1.4.1
* Small fixes to the code that calculates the current data quality status of tables and columns
* Fixed permalinks to screens
* Small changes to handling empty tables in column level data quality checks
* Incident generation fixed for monitoring checks (full table scan checks)

# 1.5.0
* Error sampling
* DuckDB 1.0.0 upgrade
* Global incident management screen
* Support for analyzing flat files on GCP
* Freshness anomaly check
* Filtering tables by name on the table import screen
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.4.1
1.5.0
2 changes: 1 addition & 1 deletion distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<groupId>com.dqops</groupId>
<artifactId>dqo-distribution</artifactId>
<version>1.4.1</version> <!-- DQOps Version, do not touch (changed automatically) -->
<version>1.5.0</version> <!-- DQOps Version, do not touch (changed automatically) -->
<name>dqo-distribution</name>
<description>DQOps Data Quality Operations Center final assembly</description>
<packaging>pom</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class DqopsCollectStatisticsOperator(BaseOperator):
def __init__(
self,
*,
connection: (Union[Unset, str]) = UNSET,
connection: Union[Unset, str] = UNSET,
full_table_name: Union[Unset, str] = UNSET,
enabled: Union[Unset, bool] = UNSET,
labels: Union[Unset, List[str]] = UNSET,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,9 @@ def execute(self, context):
self.retries = 0
raise DqopsJobFailedException(context["ti"], job_result.to_dict())

run_check_result: Union[
RunChecksResult, None
] = job_result.parameters.run_checks_parameters.run_checks_result
run_check_result: Union[RunChecksResult, None] = (
job_result.parameters.run_checks_parameters.run_checks_result
)

if (
job_result.job_type == DqoJobType.RUN_CHECKS
Expand Down
1 change: 1 addition & 0 deletions distribution/python/dqops/client/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" A client library for accessing DQOps """

from .client import AuthenticatedClient, Client

__all__ = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ def _get_kwargs(
table_comparison: Union[Unset, None, str] = UNSET,
max_results_per_check: Union[Unset, None, int] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ def _get_kwargs(
table_comparison: Union[Unset, None, str] = UNSET,
max_results_per_check: Union[Unset, None, int] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ def _get_kwargs(
table_comparison: Union[Unset, None, str] = UNSET,
max_results_per_check: Union[Unset, None, int] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ def _get_kwargs(
table_comparison: Union[Unset, None, str] = UNSET,
quality_dimension: Union[Unset, None, str] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def _get_kwargs(
table_comparison: Union[Unset, None, str] = UNSET,
max_results_per_check: Union[Unset, None, int] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ def _get_kwargs(
table_comparison: Union[Unset, None, str] = UNSET,
max_results_per_check: Union[Unset, None, int] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ def _get_kwargs(
table_comparison: Union[Unset, None, str] = UNSET,
max_results_per_check: Union[Unset, None, int] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ def _get_kwargs(
category: Union[Unset, None, str] = UNSET,
check_name: Union[Unset, None, str] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ def _get_kwargs(
category: Union[Unset, None, str] = UNSET,
check_name: Union[Unset, None, str] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def _get_kwargs(
category: Union[Unset, None, str] = UNSET,
check_name: Union[Unset, None, str] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def _get_kwargs(
category: Union[Unset, None, str] = UNSET,
check_name: Union[Unset, None, str] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def _get_kwargs(
category: Union[Unset, None, str] = UNSET,
check_name: Union[Unset, None, str] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def _get_kwargs(
category: Union[Unset, None, str] = UNSET,
check_name: Union[Unset, None, str] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ def _get_kwargs(
*,
json_body: CheckDefinitionModel,
) -> Dict[str, Any]:

pass

json_json_body = json_body.to_dict()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
def _get_kwargs(
full_check_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@


def _get_kwargs() -> Dict[str, Any]:

pass

return {
Expand Down
1 change: 1 addition & 0 deletions distribution/python/dqops/client/api/checks/get_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
def _get_kwargs(
full_check_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@


def _get_kwargs() -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ def _get_kwargs(
*,
json_body: CheckDefinitionModel,
) -> Dict[str, Any]:

pass

json_json_body = json_body.to_dict()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def _get_kwargs(
*,
json_body: ColumnSpec,
) -> Dict[str, Any]:

pass

json_json_body = json_body.to_dict()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
1 change: 1 addition & 0 deletions distribution/python/dqops/client/api/columns/get_column.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def _get_kwargs(
column_name: str,
time_scale: CheckTimeScale,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def _get_kwargs(
column_name: str,
time_scale: CheckTimeScale,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def _get_kwargs(
check_category: str,
check_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def _get_kwargs(
column_name: str,
time_scale: CheckTimeScale,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def _get_kwargs(
column_name: str,
time_scale: CheckTimeScale,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def _get_kwargs(
check_category: str,
check_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ def _get_kwargs(
check_category: str,
check_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ def _get_kwargs(
table_name: str,
column_name: str,
) -> Dict[str, Any]:

pass

return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def _get_kwargs(
data_quality_status: Union[Unset, None, bool] = UNSET,
check_type: Union[Unset, None, CheckType] = UNSET,
) -> Dict[str, Any]:

pass

params: Dict[str, Any] = {}
Expand Down
Loading

0 comments on commit cef4901

Please sign in to comment.