Skip to content

Commit

Permalink
1.3.1 reverts (#15386)
Browse files Browse the repository at this point in the history
* Revert "add migration for MongoDB supportsProfiler = true (#15254)"

This reverts commit ec3eb29.

* Revert "MINOR: Mongodb column profile (#15252)"

This reverts commit 50b2709.

* Revert "MINOR: modified nosql factory to not use pymongo (#15316)"

This reverts commit bdf2745.

* Revert "MINOR: add MongoDB sample data (#15237)"

This reverts commit ff2ecc5.

* Revert "MINOR: add test for sqla compiler (#15275)"

This reverts commit 4967e09.

* Revert "Fixes #10013: Implement first stage of NoSQL profiler (#15189)"

This reverts commit 18c22c4.

* chore: added tests back after revert
  • Loading branch information
TeddyCr authored Feb 28, 2024
1 parent 56c8dd1 commit 7456915
Show file tree
Hide file tree
Showing 30 changed files with 47 additions and 1,138 deletions.
4 changes: 0 additions & 4 deletions bootstrap/sql/migrations/native/1.4.0/mysql/schemaChanges.sql

This file was deleted.

This file was deleted.

File renamed without changes.
6 changes: 2 additions & 4 deletions docker/validate_compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,9 @@ def get_last_run_info() -> Tuple[str, str]:
while retries < max_retries:
log_ansi_encoded_string(message="Waiting for DAG Run data...")
time.sleep(5)
res = requests.get(
runs = requests.get(
"http://localhost:8080/api/v1/dags/sample_data/dagRuns", auth=BASIC_AUTH, timeout=REQUESTS_TIMEOUT
)
res.raise_for_status()
runs = res.json()
).json()
dag_runs = runs.get("dag_runs")
if dag_runs[0].get("dag_run_id"):
return dag_runs[0].get("dag_run_id"), "success"
Expand Down
1 change: 0 additions & 1 deletion ingestion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,6 @@
VERSIONS["snowflake"],
VERSIONS["elasticsearch8"],
VERSIONS["giturlparse"],
"testcontainers==3.7.1",
}

e2e_test = {
Expand Down
3 changes: 2 additions & 1 deletion ingestion/src/metadata/great_expectations/action.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def __init__(
self.config_file_path = config_file_path
self.ometa_conn = self._create_ometa_connection()

def _run( # pylint: disable=unused-argument,arguments-renamed
def _run( # pylint: disable=unused-argument
self,
validation_result_suite: ExpectationSuiteValidationResult,
validation_result_suite_identifier: Union[
Expand All @@ -124,6 +124,7 @@ def _run( # pylint: disable=unused-argument,arguments-renamed
validation_result_suite: result suite returned when checkpoint is ran
validation_result_suite_identifier: type of result suite
data_asset:
payload:
expectation_suite_identifier: type of expectation suite
checkpoint_identifier: identifier for the checkpoint
"""
Expand Down
Empty file.
Empty file.
39 changes: 0 additions & 39 deletions ingestion/src/metadata/profiler/adaptors/adaptor_factory.py

This file was deleted.

175 changes: 0 additions & 175 deletions ingestion/src/metadata/profiler/adaptors/mongodb.py

This file was deleted.

65 changes: 0 additions & 65 deletions ingestion/src/metadata/profiler/adaptors/nosql_adaptor.py

This file was deleted.

2 changes: 1 addition & 1 deletion ingestion/src/metadata/profiler/api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def __str__(self):


class ThreadPoolMetrics(ConfigModel):
"""A container for all metrics to be computed on the same thread."""
"""thread pool metric"""

metrics: Union[List[Union[Type[Metric], CustomMetric]], Type[Metric]]
metric_type: MetricTypes
Expand Down
41 changes: 0 additions & 41 deletions ingestion/src/metadata/profiler/factory.py

This file was deleted.

Loading

0 comments on commit 7456915

Please sign in to comment.