Giter Club home page Giter Club logo

apache-parquet-avro's Introduction

apache-parquet-avro

Aim

Experiment with Apache Parquet and Apache Avro

Dependency

Using Spark2.1.0 binary prebuilt with Hadoop 2.7

Outcome

Learnt how to use 3rd party / external SPARK packages like spark-csv, spark-avro (parquet inbuilt)

Steps

  1. Call pyspark with Avro package

[root@chai chai]# pyspark --packages com.databricks:spark-avro_2.11:3.2.0

Without Avro package it throws error -

pyspark.sql.utils.AnalysisException: u'Failed to find data source: com.databricks.spark.avro. Please find an Avro package at http://spark.apache.org/third-party-projects.html;'

Download package. Unzip it. Put it in the directory and rename folder spark-avro_2.11:3.2.0

  1. Reading Avro file

>>> df1 = sqlContext.read.load("/usr/local/spark/examples/src/main/resources/users.avro","com.databricks.spark.avro")

  1. Reading Parquet file

>>> df = sqlContext.read.load("/usr/local/spark/examples/src/main/resources/users.parquet")

  1. Storing as Parquet file
>>> df.select("name", "favorite_color").write.save("namesAndFavColors.parquet")
  1. Storing as Avro file
>>> df.select("name", "favorite_color").write.save("namesAndFavColors.avro","com.databricks.spark.avro")

Resolved Error

 java.sql.SQLException: Unable to open a test connection to the given database. 
 JDBC url = jdbc:derby:;databaseName=metastore_db;create=true, username = APP. 
 Terminating connection pool (set lazyInit to true if you expect to start your database after your app). 

 Original Exception: 
 ------
java.sql.SQLException: 
Failed to start database 'metastore_db' with class loader org.apache.spark.sql.hive.client.IsolatedClientLoader$$anon$1@223bc09d, 
see the next exception for details. ```

Same exception consisted of following exception as -

Caused by: ERROR XSDB6: Another instance of Derby may have already booted the database /usr/local/spark/metastore_db.

All these 3 exceptions went thanks to

http://stackoverflow.com/questions/34465516/caused-by-error-xsdb6-another-instance-of-derby-may-have-already-booted-the-da

Solution -

$ ps -ef | grep spark-shell

$ kill -9 Spark-Shell-processID

Doubt -

[root@chai chai]# ps -ef | grep spark-shell
root     18382 18362  1 20:10 pts/1    00:00:48 /usr/lib/jvm/jdk1.8.0_121/bin/java -cp /usr/local/spark/conf/:/usr/local/spark/jars/* -Xmx1g org.apache.spark.deploy.SparkSubmit --name PySparkShell --packages com.databricks:spark-avro_2.11:3.2.0 pyspark-shell
root     20312 16067  0 21:08 pts/1    00:00:00 grep --color=auto spark-shell

Process 1 killed

[root@chai chai]#kill -9 18382

Process 20312 unable to be killed stating not a process why?

[root@chai chai]# kill -9 20312
bash: kill: (20312) - No such process

Unresolved

1. Warning -

WARN NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable

Possible Solution -

2. Warning -

WARN ObjectStore: Failed to get database global_temp, returning NoSuchObjectException

3. Error

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.

Possible Solutions -

  1. https://www.slf4j.org/codes.html#StaticLoggerBinder
  2. https://teamtreehouse.com/community/i-got-an-error-slf4j-failed-to-load-class-orgslf4jimplstaticloggerbinder
  3. http://sparkjava.com/documentation.html#examples

Sources -

  1. To read write Parquet files - http://www.kdnuggets.com/2015/10/ibm-seti-spark-sql-parquets.html

  2. Spark Packages - https://spark-packages.org/

  3. PySpark tutorial - https://github.com/mahmoudparsian/pyspark-tutorial/tree/master/howto

  4. Apache Parquet Documentation - https://parquet.apache.org/documentation/latest/

  5. SQL Programming - https://spark.apache.org/docs/1.6.1/sql-programming-guide.html

  6. Parquet + S3 - https://www.appsflyer.com/blog/the-bleeding-edge-spark-parquet-and-s3/

  7. https://www.svds.com/how-to-choose-a-data-format/

  8. https://groups.google.com/forum/#!topic/parquet-dev/lfWanFOc040

  9. http://apache-spark-user-list.1001560.n3.nabble.com/Write-to-Parquet-File-in-Python-td22186.html

  10. Parquet for Spark SQL - https://developer.ibm.com/hadoop/2015/12/03/parquet-for-spark-sql/

  11. Parquet - http://www.kdnuggets.com/?s=parquet

  12. Spark SQL Parquet - http://www.kdnuggets.com/2015/10/ibm-seti-spark-sql-parquets.html

  13. SparkSQL Real-time analytics - http://www.kdnuggets.com/2015/09/spark-sql-real-time-analytics.html

  14. http://spark.apache.org/docs/2.0.0/api/python/pyspark.sql.html

  15. Spark Dataframe Operations - https://www.analyticsvidhya.com/blog/2016/10/spark-dataframe-and-operations/

  16. Intro to RDDs - https://www.analyticsvidhya.com/blog/2016/09/comprehensive-introduction-to-apache-spark-rdds-dataframes-using-pyspark/

  17. PySpark TUtorial - https://www.dezyre.com/apache-spark-tutorial/pyspark-tutorial

apache-parquet-avro's People

Contributors

chaibapchya avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.