1 / 5

Types of Data Formatsin Big data Hadoop

Welcome to the sixth lesson u2018Types of Data Formatsu2019 which is a part of u2018big data online trainingu2019 offered by<br>OnlineItGuru. In this lesson, we will discuss the different types of data formats.<br>

Télécharger la présentation

Types of Data Formatsin Big data Hadoop

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Downloaded from: justpaste.it/2qb9j Types of Data Formatsin Big data Hadoop In this lesson, we will discuss Types of Data Formats Tutorial Welcome to the sixth lesson ‘Types of Data Formats’ which is a part of ‘big data online training’ offered by OnlineItGuru. In this lesson, we will discuss the different types of data formats. Objectives After completing this lesson, you will be able to: Describe the different types of Hadoop file formats Explain data serialization in Hadoop Let’s look at the types of file formats in the next section. Types of Hadoop File Formats Hive and Impala table in HDFS can be created using four different file formats: Text files Sequence File Avro data files Parquet file format You can check the Course Preview of big data hadoop course Let’s learn about each file format in detail. Text files A text file is the most basic and a human-readable file. It can be read or written in any programming language and is mostly delimited by comma or tab. The text file format consumes more space when a numeric value needs to be stored as a string. It is also difficult to represent binary data such as an image. Sequence File The sequencefile format can be used to store an image in the binary format. They store key-value pairs in a binary container format and are more efficient than a text file. However, sequence files are not human- readable. Avro Data Files The Avro file format has efficient storage due to optimized binary encoding. It is widely supported both inside and outside the Hadoop ecosystem. The Avro file format is ideal for long-term storage of important data. It can read from and write in many languages like Java, Scala and so on. Schema metadata can be embedded in the file to ensure that it will always be readable. Schema evolution can accommodate changes. The Avro file format is considered the best choice for general-purpose storage in Hadoop. Parquet File Format Parquet is a columnar format developed by Cloudera and Twitter. It is supported in Spark, MapReduce, Hive, Pig, Impala, Crunch, and so on. Like Avro, schema metadata is embedded in the file.

  2. Parquet file format uses advanced optimizations described in Google’s Dremel paper. These optimizations reduce the storage space and increase performance. This Parquet file format is considered the most efficient for adding multiple records at a time. Some optimizations rely on identifying repeated patterns. We will look into what data serialization is in the next section. What is Data Serialization? Data serialization is a way to represent data in the storage memory as a series of bytes. It allows you to save data to disk or send it across the network. For example, how do you serialize the number 123456789? It can be serialized as 4 bytes when stored as a Java int and 9 bytes when stored as a Java String. Avro is an efficient data serialization framework, widely supported throughout Hadoop and its ecosystem. It also supports Remote Procedure Calls or RPC and offers compatibility with programming environment without compromising performance. Let’s take a look at the data types supported by Apache Avro and Avro Schemas. Supported Data Types in Avro Given below are the Primitive data types supported by Avro. Null: Null is an absence of a value. Boolean: Boolean refers to a binary value. Int:int refers to a 32-bit signed integer Long: long is a 64-bit signed integer. Float: Float is a single-precision floating point value. Double:Double is a double-precision floating point value. Bytes: Byte is a sequence of 8-bit unsigned bytes. String: is a sequence of Unicode characters. Let’s look at the complex data types supported in Avro schemas. Record: Record is a user-defined type composed of one or more named fields. Enum:Enum is a specified set of values. Array: Array is zero or more values of the same type. Map: Map is a set of key-value pairs. A key is a string, while the value is of a specified type. Union: Union is exactly one value matching a specified set of types. Fixed: Fixed refers to a fixed number of 8-bit unsigned bytes. Hive Table and Avro Schema Here is an example that shows the equivalent of a Hive table in an Avro schema. (id INT, name STRING, title STRING) Avro also supports setting a default value in a schema as shown in below example. {"namespace":"com.simplilearn", "type":"record", "name":"orders",

  3. "fields":[ {"name":"id", "type":"int"}, {"name":"name", "type":"string"}, {"name":"title", "type":"string"}] } Other Avro Operations {"namespace":"com.simplilearn", "type":"record", "name":"orders", "fields":[ {"name":"id", "type":"int"}, {"name":"name", "type":"string", "default":"simplilearn"}, {"name":"title", "type":"string","default":"bigdata"}] } Now, let us discuss how Avro and Parquet file format use Sqoop. Avro with Scoop Avro and Parquet file format use Sqoop which is a tool designed to transfer data between Hadoop and "Relational Database Management System" or "RDBMS" In Sqoop, you can import data to HDFS in the Avro format and export the Avro format to RDBMS. To perform the operation, add the parameter--as-avrodatafile in the Sqoop command. Hive supports all Avro types. However, Impala does not support complex or nested types with Avro, such as enum, array, fixed, map, union, and record (nested). In the next section, we will discuss how to import data in Parquet file format using Sqoop. Parquet With Sqoop You can import data to HDFS in the Parquet file format and export the Parquet file format to RDBMS using Sqoop. To perform the operation, add the parameter: -as-parquetfile in the Sqoop command. In the next section, we will discuss how to import Mysql to hdfs in Parquet File Format. Importing MySQL to HDFS in Parquet File Format We can import Mysql to hdfs in Parquet File Format either by Creating a New Table in Hive and by Reading Parquet Files. Let us look into them in detail. Creating a New Table in Hive with Parquet File Format You can create a new table in or Impala stored in the Parquet file format. In Impala, you can use LIKE PARQUET to use column metadata from an existing Parquet data file as shown in the image given below.

  4. In this example, a new table and a new order are being created to access existing Parquet file format data. Parquet files are in binary format and cannot be read easily. Reading Parquet Files To read parquet files, you can use parquet-tools as given below.

  5. Summary Now let's summarize what we learned in this lesson. Hive and Impala tables in HDFS can be created using text files. Sequence files, Avro data files, and Parquet file formats. Data serialization is a way of representing data in memory as a series of bytes. Avro is an efficient data serialization framework and is widely supported throughout Hadoop and its ecosystem. Using Sqoop, data can be imported to HDFS in Avro and Parquet file formats. Using Sqoop, Avro, and Parquet file format can be exported to RDBMS. Planning to get big data hadoop certification? Click to see our Course Preview! Conclusion This concludes the lesson ‘type of data formats.’ In the next lesson,

More Related