Created
July 13, 2015 05:54
-
-
Save gavinwhyte/c6adb1abf57c88bd875d to your computer and use it in GitHub Desktop.
Luigi PySpark
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
# | |
# Copyright 2012-2015 Spotify AB | |
# | |
# Licensed 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. | |
# | |
import luigi | |
from luigi.s3 import S3Target | |
from luigi.contrib.spark import SparkSubmitTask, PySparkTask | |
class InlinePySparkWordCount(PySparkTask): | |
""" | |
This task runs a :py:class:`luigi.contrib.spark.PySparkTask` task | |
over the target data in :py:meth:`wordcount.input` (a file in S3) and | |
writes the result into its :py:meth:`wordcount.output` target (a file in S3). | |
This class uses :py:meth:`luigi.contrib.spark.PySparkTask.main`. | |
Example luigi configuration:: | |
[spark] | |
spark-submit: /usr/local/spark/bin/spark-submit | |
master: spark://spark.example.org:7077 | |
# py-packages: numpy, pandas | |
""" | |
driver_memory = '2g' | |
executor_memory = '3g' | |
def input(self): | |
return S3Target("s3n://bucket.example.org/wordcount.input") | |
def output(self): | |
return S3Target('s3n://bucket.example.org/wordcount.output') | |
def main(self, sc, *args): | |
sc.textFile(self.input().path) \ | |
.flatMap(lambda line: line.split()) \ | |
.map(lambda word: (word, 1)) \ | |
.reduceByKey(lambda a, b: a + b) \ | |
.saveAsTextFile(self.output().path) | |
class PySparkWordCount(SparkSubmitTask): | |
""" | |
This task is the same as :py:class:`InlinePySparkWordCount` above but uses | |
an external python driver file specified in :py:meth:`app` | |
It runs a :py:class:`luigi.contrib.spark.SparkSubmitTask` task | |
over the target data in :py:meth:`wordcount.input` (a file in S3) and | |
writes the result into its :py:meth:`wordcount.output` target (a file in S3). | |
This class uses :py:meth:`luigi.contrib.spark.SparkSubmitTask.run`. | |
Example luigi configuration:: | |
[spark] | |
spark-submit: /usr/local/spark/bin/spark-submit | |
master: spark://spark.example.org:7077 | |
deploy-mode: client | |
""" | |
driver_memory = '2g' | |
executor_memory = '3g' | |
total_executor_cores = luigi.IntParameter(default=100) | |
name = "PySpark Word Count" | |
app = 'wordcount.py' | |
def app_options(self): | |
# These are passed to the Spark main args in the defined order. | |
return [self.input().path, self.output().path] | |
def input(self): | |
return S3Target("s3n://bucket.example.org/wordcount.input") | |
def output(self): | |
return S3Target('s3n://bucket.example.org/wordcount.output') | |
''' | |
// Corresponding example Spark Job, running Word count with Spark's Python API | |
// This file would have to be saved into wordcount.py | |
import sys | |
from pyspark import SparkContext | |
if __name__ == "__main__": | |
sc = SparkContext() | |
sc.textFile(sys.argv[1]) \ | |
.flatMap(lambda line: line.split()) \ | |
.map(lambda word: (word, 1)) \ | |
.reduceByKey(lambda a, b: a + b) \ | |
.saveAsTextFile(sys.argv[2]) | |
''' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment