├── .gitignore ├── Install.md ├── LICENSE ├── README.md ├── code ├── misc │ ├── MeanComponent.py │ ├── header.py │ ├── header_sql.py │ ├── parse_news.py │ └── people_to_json.py ├── sales │ ├── sales_app.py │ ├── sales_app_with_objects.py │ ├── sales_datatable.py │ ├── sales_samples.py │ ├── sales_schema.py │ ├── sample_command.sh │ └── sample_with_objects.py └── simple │ ├── data_tables.py │ ├── joins.py │ ├── mapAndReduce.py │ ├── person.py │ ├── purePython.py │ ├── reduceByKey.py │ ├── reduceByKeyWithObjects.py │ └── simpleExample.py ├── data ├── people.json ├── people.txt └── sales │ ├── products.txt │ ├── readme.md │ ├── sales_2014-01-01.txt │ ├── sales_2014-01-02.txt │ └── stores.txt └── scripts ├── install_ubuntu.sh └── log4j.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/.gitignore -------------------------------------------------------------------------------- /Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/Install.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/README.md -------------------------------------------------------------------------------- /code/misc/MeanComponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/misc/MeanComponent.py -------------------------------------------------------------------------------- /code/misc/header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/misc/header.py -------------------------------------------------------------------------------- /code/misc/header_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/misc/header_sql.py -------------------------------------------------------------------------------- /code/misc/parse_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/misc/parse_news.py -------------------------------------------------------------------------------- /code/misc/people_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/misc/people_to_json.py -------------------------------------------------------------------------------- /code/sales/sales_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/sales/sales_app.py -------------------------------------------------------------------------------- /code/sales/sales_app_with_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/sales/sales_app_with_objects.py -------------------------------------------------------------------------------- /code/sales/sales_datatable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/sales/sales_datatable.py -------------------------------------------------------------------------------- /code/sales/sales_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/sales/sales_samples.py -------------------------------------------------------------------------------- /code/sales/sales_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/sales/sales_schema.py -------------------------------------------------------------------------------- /code/sales/sample_command.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/sales/sample_command.sh -------------------------------------------------------------------------------- /code/sales/sample_with_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/sales/sample_with_objects.py -------------------------------------------------------------------------------- /code/simple/data_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/simple/data_tables.py -------------------------------------------------------------------------------- /code/simple/joins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/simple/joins.py -------------------------------------------------------------------------------- /code/simple/mapAndReduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/simple/mapAndReduce.py -------------------------------------------------------------------------------- /code/simple/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/simple/person.py -------------------------------------------------------------------------------- /code/simple/purePython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/simple/purePython.py -------------------------------------------------------------------------------- /code/simple/reduceByKey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/simple/reduceByKey.py -------------------------------------------------------------------------------- /code/simple/reduceByKeyWithObjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/simple/reduceByKeyWithObjects.py -------------------------------------------------------------------------------- /code/simple/simpleExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/code/simple/simpleExample.py -------------------------------------------------------------------------------- /data/people.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/data/people.json -------------------------------------------------------------------------------- /data/people.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/data/people.txt -------------------------------------------------------------------------------- /data/sales/products.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/data/sales/products.txt -------------------------------------------------------------------------------- /data/sales/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/data/sales/readme.md -------------------------------------------------------------------------------- /data/sales/sales_2014-01-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/data/sales/sales_2014-01-01.txt -------------------------------------------------------------------------------- /data/sales/sales_2014-01-02.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/data/sales/sales_2014-01-02.txt -------------------------------------------------------------------------------- /data/sales/stores.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/data/sales/stores.txt -------------------------------------------------------------------------------- /scripts/install_ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/scripts/install_ubuntu.sh -------------------------------------------------------------------------------- /scripts/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/okaram/spark-pycon15/HEAD/scripts/log4j.properties --------------------------------------------------------------------------------