com.amazon.deequ.analyzers.runners.AnalyzerContext.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deequ Show documentation
Show all versions of deequ Show documentation
Deequ is a library built on top of Apache Spark for defining "unit tests for data",
which measure data quality in large datasets.
/**
* Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not
* use this file except in compliance with the License. A copy of the License
* is located at
*
* http://aws.amazon.com/apache2.0/
*
* or in the "license" file accompanying this file. This file is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*
*/
package com.amazon.deequ.analyzers.runners
import com.amazon.deequ.analyzers.{Analyzer, FilterableAnalyzer}
import com.amazon.deequ.metrics.{DoubleMetric, Metric}
import com.amazon.deequ.repository.SimpleResultSerde
import org.apache.spark.sql.{DataFrame, SparkSession}
/**
* The result returned from AnalysisRunner and Analysis
*
* @param metricMap Analyzers and their Metric results
*/
case class AnalyzerContext(metricMap: Map[Analyzer[_, Metric[_]], Metric[_]]) {
def allMetrics: Seq[Metric[_]] = {
metricMap.values.toSeq
}
def ++(other: AnalyzerContext): AnalyzerContext = {
AnalyzerContext(metricMap ++ other.metricMap)
}
def metric(analyzer: Analyzer[_, Metric[_]]): Option[Metric[_]] = {
metricMap.get(analyzer)
}
}
object AnalyzerContext {
def empty: AnalyzerContext = AnalyzerContext(Map.empty)
def successMetricsAsDataFrame(
sparkSession: SparkSession,
analyzerContext: AnalyzerContext,
forAnalyzers: Seq[Analyzer[_, Metric[_]]] = Seq.empty)
: DataFrame = {
val metricsList = getSimplifiedMetricOutputForSelectedAnalyzers(analyzerContext, forAnalyzers)
import sparkSession.implicits._
metricsList.toDF("entity", "instance", "name", "value")
}
def successMetricsAsJson(analyzerContext: AnalyzerContext,
forAnalyzers: Seq[Analyzer[_, Metric[_]]] = Seq.empty): String = {
val metricsList = getSimplifiedMetricOutputForSelectedAnalyzers(analyzerContext, forAnalyzers)
val result = metricsList.map { simplifiedMetricOutput =>
Map(
"entity" -> simplifiedMetricOutput.entity,
"instance" -> simplifiedMetricOutput.instance,
"name" -> simplifiedMetricOutput.name,
"value" -> simplifiedMetricOutput.value
)
}
SimpleResultSerde.serialize(result)
}
private[this] def getSimplifiedMetricOutputForSelectedAnalyzers(
analyzerContext: AnalyzerContext,
forAnalyzers: Seq[Analyzer[_, Metric[_]]])
: Seq[SimpleMetricOutput] = {
analyzerContext.metricMap
// Get matching analyzers
.filterKeys(analyzer => forAnalyzers.isEmpty || forAnalyzers.contains(analyzer))
// Get analyzers with successful results
.filter { case (_, metrics) => metrics.value.isSuccess }
// Get metrics as Double and replace simple name with description
.flatMap { case (analyzer, metrics) =>
metrics.flatten().map { metric =>
val description = describeMetric(analyzer, metric)
renameMetric(metric, description)
}
}
// Simplify metrics
.map(SimpleMetricOutput(_))
.toSeq
}
private[this] def renameMetric(metric: DoubleMetric, newName: String): DoubleMetric = {
metric.copy(name = newName)
}
/**
* Describe the DoubleMetric, using the name of the metric and analyzer filtering condition
* It helps us to show more readable success metrics
* (see https://github.com/awslabs/deequ/issues/177 for details)
*
* @param analyzer the Analyzer to be described
* @param metric the DoubleMetric to be described
* @return the description of the DoubleMetric
*/
private[this] def describeMetric(analyzer: Any, metric: DoubleMetric): String = {
val name = metric.name
val filterCondition: Option[String] = analyzer match {
case x : FilterableAnalyzer => x.filterCondition
case _ => None
}
filterCondition match {
case Some(x) => s"$name (where: $x)"
case _ => name
}
}
private[this] case class SimpleMetricOutput(
entity: String,
instance: String,
name: String,
value: Double)
private[this] object SimpleMetricOutput {
def apply(doubleMetric: DoubleMetric): SimpleMetricOutput = {
SimpleMetricOutput(
doubleMetric.entity.toString,
doubleMetric.instance,
doubleMetric.name,
doubleMetric.value.get
)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy