Skip to content

Apache Spark build compatible with AWS Glue Data Catalog.

Notifications You must be signed in to change notification settings

pang-wu/spark-glue-data-catalog

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spark-glue-data-catalog

This project builds Apache Spark in way it is compatible with AWS Glue Data Catalog.

It was mostly inspired by awslabs' Github project awslabs/aws-glue-data-catalog-client-for-apache-hive-metastore and its various issues and user feedbacks.

⚠️ this is neither official, nor officially supported: use at your own risks!

Usage prerequisites

AWS credentials

You must provide AWS credentials via environment variables to the master/executor nodes for spark to be able to access AWS APIs: AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY and AWS_DEFAULT_REGION.

IAM permissions

Here is an exemple set of Glue permissions to allow Spark to access an hypothetic db1.table1 table in Glue Data Catalog:

{
  "Effect": "Allow",
  "Action": [
    "glue:*Database*",
    "glue:*Table*",
    "glue:*Partition*"
  ],
  "Resource": [
    "arn:aws:glue:us-west-2:123456789012:catalog",      

    "arn:aws:glue:us-west-2:123456789012:database/db1",
    "arn:aws:glue:us-west-2:123456789012:table/db1/table1",

    "arn:aws:glue:eu-west-1:645543648911:database/default",
    "arn:aws:glue:eu-west-1:645543648911:database/global_temp",
    "arn:aws:glue:eu-west-1:645543648911:database/parquet"
  ]
}

Note the last 3 resources are mandatory for the the glue-compatible hive connector.

Don't forget to also add S3 IAM permissions for Spark to be able to fetch table data!

GCP Bigquery/GCS credentials

You must provide a valid path to a GCP service account file using environment variable GOOGLE_APPLICATION_CREDENTIALS. Otherwise you have to set manually an Access Token after the Spark Context is created using

spark.conf.set("gcpAccessToken", "<access-token>")

Current release

Miscellaneous

Build spark-glue-data-catalog locally

You need Docker and Docker Compose.

Just run make build. Spark bundle artifact is produced in dist/ directory.

Use in Jupyter notebook

To use this version of pyspark in Jupyter, you need to declare a new dedicated kernel.

We suppose you installed Spark in /opt directory and symlinked it with /opt/spark.

Create a kernel.json file somewhere with following content:

{
  "display_name": "PySpark",
  "language": "python",
  "argv": [
    "/opt/conda/bin/python",
    "-m",
    "ipykernel",
    "-f",
    "{connection_file}"
  ],
  "env": {
    "SPARK_HOME": "/opt/spark",
    "PYTHONPATH": "/opt/spark/python/:/opt/spark/python/lib/py4j-0.10.7-src.zip",
    "PYTHONSTARTUP": "/opt/spark/python/pyspark/shell.py",
    "PYSPARK_PYTHON": "/opt/conda/bin/python"
  }
}

Then, run jupyter kernelspec install {path to kernel.json's directory}.

References

About

Apache Spark build compatible with AWS Glue Data Catalog.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 78.6%
  • Dockerfile 19.2%
  • Makefile 2.2%