julioasotodv / spark-df-profiling

Create HTML profiling reports from Apache Spark DataFrames
MIT License
195 stars 77 forks source link

HTML profiling reports from Apache Spark DataFrames

Generates profile reports from an Apache Spark DataFrame. It is based on pandas_profiling, but for Spark's DataFrames instead of pandas'.

For each column the following statistics - if relevant for the column type - are presented in an interactive HTML report:

All operations are done efficiently, which means that no Python UDFs or .map() transformations are used at all; only Spark SQL's Catalyst (and the Tungsten execution engine) is used for the retrieval of all statistics.

Demo

Available here.

Installation

If you are using Anaconda, you already have all the needed dependencies. So you just have to pip install the package without dependencies (just in case pip tries to overwrite your current dependencies):

pip install --no-deps spark-df-profiling

If you don't have pandas and/or matplotlib installed:

pip install spark-df-profiling

Usage

The profile report is written in HTML5 and CSS3, which means that you may require a modern browser.

Keep in mind that you need a working Spark cluster (or a local Spark installation). The report must be created from pyspark. To point pyspark driver to your Python environment, you must set the environment variable PYSPARK_DRIVER_PYTHON to your python environment where spark-df-profiling is installed. For example, for Anaconda:

export PYSPARK_DRIVER_PYTHON=/path/to/your/anaconda/bin/python

And then you can execute /path/to/your/bin/pyspark to enter pyspark's CLI.

Jupyter Notebook (formerly IPython)

We recommend generating reports interactively by using the Jupyter notebook.

To use pyspark with Jupyter, you must also set PYSPARK_DRIVER_PYTHON:

export PYSPARK_DRIVER_PYTHON=/path/to/your/anaconda/bin/python

And then:

IPYTHON_OPTS="notebook" /path/to/your/bin/pyspark

In spark 2.0.X IPYTHON_OPTS is removed: the environment variable you want to set is PYSPARK_DRIVER_PYTHON_OPTS:

PYSPARK_DRIVER_PYTHON_OPTS="notebook" /path/to/your/bin/pyspark

Now you can create a new notebook, which will run pyspark.

To use spark-df-profiling, start by loading in your Spark DataFrame, e.g. by using

# sqlContext is probably already created for you.
# To load a parquet file as a Spark Dataframe, you can:
df = sqlContext.read.parquet("/path/to/your/file.parquet")
# And you probably want to cache it, since a lot of 
# operations will be done while the report is being generated:
df_spark = df.cache()

To display the report in a Jupyter notebook, run:

import spark_df_profiling
spark_df_profiling.ProfileReport(df_spark)

If you want to generate a HTML report file, save the ProfileReport to an object and use the .to_file() method:

profile = spark_df_profiling.ProfileReport(df_spark)
profile.to_file(outputfile="/tmp/myoutputfile.html")

Dependencies