Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# # Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License 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. #
"""Class to observe (named) metrics on a :class:`DataFrame`.
Metrics are aggregation expressions, which are applied to the DataFrame while is is being processed by an action.
The metrics have the following guarantees:
- It will compute the defined aggregates (metrics) on all the data that is flowing through the Dataset during the action. - It will report the value of the defined aggregate columns as soon as we reach the end of the action.
The metrics columns must either contain a literal (e.g. lit(42)), or should contain one or more aggregate functions (e.g. sum(a) or sum(a + b) + avg(c) - lit(1)). Expressions that contain references to the input Dataset's columns must always be wrapped in an aggregate function.
An Observation instance collects the metrics while the first action is executed. Subsequent actions do not modify the metrics returned by `Observation.get`. Retrieval of the metric via `Observation.get` blocks until the first action has finished and metrics become available.
.. versionadded:: 3.3.0
Notes ----- This class does not support streaming datasets.
Examples -------- >>> from pyspark.sql.functions import col, count, lit, max >>> from pyspark.sql import Observation >>> df = spark.createDataFrame([["Alice", 2], ["Bob", 5]], ["name", "age"]) >>> observation = Observation("my metrics") >>> observed_df = df.observe(observation, count(lit(1)).alias("count"), max(col("age"))) >>> observed_df.count() 2 >>> observation.get {'count': 2, 'max(age)': 5} """ """Constructs a named or unnamed Observation instance.
Parameters ---------- name : str, optional default is a random UUID string. This is the name of the Observation and the metric. """
"""Attaches this observation to the given :class:`DataFrame` to observe aggregations.
Parameters ---------- df : :class:`DataFrame` the :class:`DataFrame` to be observed exprs : list of :class:`Column` column expressions (:class:`Column`).
Returns ------- :class:`DataFrame` the observed :class:`DataFrame`. """
exprs[0]._jc, column._to_seq(df._sc, [c._jc for c in exprs[1:]]))
def get(self): """Get the observed metrics.
Waits until the observed dataset finishes its first action. Only the result of the first action is available. Subsequent actions do not modify the result.
Returns ------- dict the observed metrics """ # return a pure Python dict, not jmap which is a py4j JavaMap
sys.exit(-1)
|