Source code for airflow.providers.apache.hive.operators.hive_stats
## 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.from__future__importannotationsimportjsonfromcollections.abcimportSequencefromtypingimportTYPE_CHECKING,Any,Callablefromairflow.exceptionsimportAirflowExceptionfromairflow.modelsimportBaseOperatorfromairflow.providers.apache.hive.hooks.hiveimportHiveMetastoreHookfromairflow.providers.mysql.hooks.mysqlimportMySqlHookfromairflow.providers.presto.hooks.prestoimportPrestoHookifTYPE_CHECKING:fromairflow.utils.contextimportContext
[docs]classHiveStatsCollectionOperator(BaseOperator):""" Gather partition statistics and insert them into MySQL. Statistics are gathered with a dynamically generated Presto query and inserted with this format. Stats overwrite themselves if you rerun the same date/partition. .. code-block:: sql CREATE TABLE hive_stats ( ds VARCHAR(16), table_name VARCHAR(500), metric VARCHAR(200), value BIGINT ); :param metastore_conn_id: Reference to the :ref:`Hive Metastore connection id <howto/connection:hive_metastore>`. :param table: the source table, in the format ``database.table_name``. (templated) :param partition: the source partition. (templated) :param extra_exprs: dict of expression to run against the table where keys are metric names and values are Presto compatible expressions :param excluded_columns: list of columns to exclude, consider excluding blobs, large json columns, ... :param assignment_func: a function that receives a column name and a type, and returns a dict of metric names and an Presto expressions. If None is returned, the global defaults are applied. If an empty dictionary is returned, no stats are computed for that column. """
[docs]defget_default_exprs(self,col:str,col_type:str)->dict[Any,Any]:"""Get default expressions."""ifcolinself.excluded_columns:return{}exp={(col,"non_null"):f"COUNT({col})"}ifcol_typein{"double","int","bigint","float"}:exp[(col,"sum")]=f"SUM({col})"exp[(col,"min")]=f"MIN({col})"exp[(col,"max")]=f"MAX({col})"exp[(col,"avg")]=f"AVG({col})"elifcol_type=="boolean":exp[(col,"true")]=f"SUM(CASE WHEN {col} THEN 1 ELSE 0 END)"exp[(col,"false")]=f"SUM(CASE WHEN NOT {col} THEN 1 ELSE 0 END)"elifcol_type=="string":exp[(col,"len")]=f"SUM(CAST(LENGTH({col}) AS BIGINT))"exp[(col,"approx_distinct")]=f"APPROX_DISTINCT({col})"returnexp
[docs]defexecute(self,context:Context)->None:metastore=HiveMetastoreHook(metastore_conn_id=self.metastore_conn_id)table=metastore.get_table(table_name=self.table)field_types={col.name:col.typeforcolintable.sd.cols}exprs:Any={("","count"):"COUNT(*)"}forcol,col_typeinlist(field_types.items()):ifself.assignment_func:assign_exprs=self.assignment_func(col,col_type)ifassign_exprsisNone:assign_exprs=self.get_default_exprs(col,col_type)else:assign_exprs=self.get_default_exprs(col,col_type)exprs.update(assign_exprs)exprs.update(self.extra_exprs)exprs_str=",\n ".join(f"{v} AS {k[0]}__{k[1]}"fork,vinexprs.items())where_clause_=[f"{k} = '{v}'"fork,vinself.partition.items()]where_clause=" AND\n ".join(where_clause_)sql=f"SELECT {exprs_str} FROM {self.table} WHERE {where_clause};"presto=PrestoHook(presto_conn_id=self.presto_conn_id)self.log.info("Executing SQL check: %s",sql)row=presto.get_first(sql)self.log.info("Record: %s",row)ifnotrow:raiseAirflowException("The query returned None")part_json=json.dumps(self.partition,sort_keys=True)self.log.info("Deleting rows from previous runs if they exist")mysql=MySqlHook(self.mysql_conn_id)sql=f""" SELECT 1 FROM hive_stats WHERE table_name='{self.table}' AND partition_repr='{part_json}' AND dttm='{self.dttm}' LIMIT 1; """ifmysql.get_records(sql):sql=f""" DELETE FROM hive_stats WHERE table_name='{self.table}' AND partition_repr='{part_json}' AND dttm='{self.dttm}'; """mysql.run(sql)self.log.info("Pivoting and loading cells into the Airflow db")rows=[(self.ds,self.dttm,self.table,part_json)+(r[0][0],r[0][1],r[1])forrinzip(exprs,row)]mysql.insert_rows(table="hive_stats",rows=rows,target_fields=["ds","dttm","table_name","partition_repr","col","metric","value",],)