

{"id":1172,"date":"2016-11-05T06:42:45","date_gmt":"2016-11-05T01:12:45","guid":{"rendered":"http:\/\/data-flair.training\/blogs\/?p=1172"},"modified":"2021-08-25T22:33:49","modified_gmt":"2021-08-25T17:03:49","slug":"features-of-hadoop-and-design-principles","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/","title":{"rendered":"10 Features Of Hadoop That Made It The Most Popular"},"content":{"rendered":"<p><strong>Have you ever thought why companies adopt Hadoop as a solution to Big Data Problems?<\/strong><\/p>\n<p>In this article, we are going to study the essential features of Hadoop that make Hadoop so popular. The article enlists various Hadoop features like open source, scalability, fault tolerance, high availability, etc. that make Hadoop the <strong>most popular big data tool<\/strong>.<\/p>\n<p>Let us first begin with a short introduction to Hadoop.<\/p>\n<h3>What is Hadoop?<\/h3>\n<p>Hadoop is a software framework developed by the Apache Software Foundation for distributed storage and processing of huge amounts of datasets. <a href=\"https:\/\/data-flair.training\/blogs\/hadoop-tutorial\/\"><strong>Hadoop<\/strong><\/a> consists of 3 core components :<\/p>\n<h4>1. HDFS (High Distributed File System)<\/h4>\n<p>It is the<strong> storage layer of Hadoop<\/strong>. Files in HDFS are broken into block-sized chunks. HDFS consists of two types of nodes that is, NameNode and DataNodes.<\/p>\n<ul>\n<li>NameNode stores metadata about blocks location.<\/li>\n<li>DataNodes stores the block and sends block reports to NameNode in a definite time interval.<\/li>\n<\/ul>\n<h4>2. MapReduce<\/h4>\n<p><strong><a href=\"https:\/\/data-flair.training\/blogs\/hadoop-mapreduce-tutorial\/\">MapReduce<\/a><\/strong> is the <strong>processing layer in Hadoop<\/strong>. It is a software framework for writing an application that performs distributed processing.<\/p>\n<h4>3. YARN<\/h4>\n<p>It is the <strong>resource management layer<\/strong>. <strong>YARN<\/strong> is responsible for resource allocation and job scheduling.<\/p>\n<p>To study in detail Hadoop and its component, go through the <a href=\"https:\/\/data-flair.training\/blogs\/hadoop-architecture\/\"><strong>Hadoop architecture<\/strong><\/a> article.<\/p>\n<p>Let us now begin with the Features of Hadoop.<\/p>\n<h2>Features of Hadoop<\/h2>\n<p>Apache Hadoop is the most popular and powerful big data tool, Hadoop provides the world&#8217;s most reliable storage layer. In this section of the features of Hadoop, let us discuss various key features of Hadoop.<\/p>\n<p><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop.jpg\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-76438\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop.jpg\" alt=\"features of hadoop\" width=\"802\" height=\"420\" srcset=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop.jpg 802w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop-150x79.jpg 150w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop-300x157.jpg 300w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop-768x402.jpg 768w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop-520x272.jpg 520w\" sizes=\"auto, (max-width: 802px) 100vw, 802px\" \/><\/a><\/p>\n<h3>1. Hadoop is Open Source<\/h3>\n<p>Hadoop is an open-source project, which means its source code is available free of cost for inspection, modification, and analyses that allows enterprises to modify the code as per their requirements.<\/p>\n<h3>2. Hadoop cluster is Highly Scalable<\/h3>\n<p>Hadoop cluster is scalable means we can add any number of nodes (<strong>horizontal scalable<\/strong>) or increase the hardware capacity of nodes (<strong>vertical scalable<\/strong>) to achieve high computation power. This provides horizontal as well as vertical scalability to the Hadoop framework.<\/p>\n<h3>3. Hadoop provides Fault Tolerance<\/h3>\n<p>Fault tolerance is the most important feature of Hadoop. <a href=\"https:\/\/hadoop.apache.org\/docs\/r1.2.1\/hdfs_design.html\">HDFS<\/a> in Hadoop 2 uses a <strong>replication mechanism<\/strong> to provide fault tolerance.<\/p>\n<p>It creates a replica of each block on the different machines depending on the replication factor (by default, it is 3). So if any machine in a cluster goes down, data can be accessed from the other machines containing a replica of the same data.<\/p>\n<p>Hadoop 3 has replaced this replication mechanism by <strong>erasure coding<\/strong>. Erasure coding provides the same level of fault tolerance with less space. With Erasure coding, the storage overhead is not more than 50%.<\/p>\n<p>Read <a href=\"https:\/\/data-flair.training\/blogs\/hadoop-hdfs-erasure-coding\/\"><strong>Erasure coding<\/strong><\/a> article to learn the erasure coding algorithm.<\/p>\n<h3>4. Hadoop provides High Availability<\/h3>\n<p>This feature of Hadoop ensures the high availability of the data, even in unfavorable conditions.<\/p>\n<p>Due to the fault tolerance feature of Hadoop, if any of the DataNodes goes down, the data is available to the user from different DataNodes containing a copy of the same data.<\/p>\n<p>Also, the high availability Hadoop cluster consists of 2 or more running NameNodes (active and passive) in a hot standby configuration. The active node is the NameNode, which is active. Passive node is the standby node that reads edit logs modification of active NameNode and applies them to its own namespace.<\/p>\n<p>If an active node fails, the passive node takes over the responsibility of the active node. Thus even if the NameNode goes down, files are available and accessible to users.<\/p>\n<h3>5. Hadoop is very Cost-Effective<\/h3>\n<p>Since the Hadoop cluster consists of nodes of commodity hardware that are inexpensive, thus provides a cost-effective solution for storing and processing big data. Being an open-source product, Hadoop doesn\u2019t need any license.<\/p>\n<h3>6. Hadoop is Faster in Data Processing<\/h3>\n<p>Hadoop stores data in a distributed fashion, which allows data to be processed distributedly on a cluster of nodes. Thus it provides lightning-fast processing capability to the Hadoop framework.<\/p>\n<h3>7. Hadoop is based on Data Locality concept<\/h3>\n<p>Hadoop is popularly known for its data locality feature means moving computation logic to the data, rather than moving data to the computation logic. This features of Hadoop reduces the bandwidth utilization in a system.<\/p>\n<p>To install and configure Hadoop follow this <a href=\"https:\/\/data-flair.training\/blogs\/installation-of-hadoop-3-on-ubuntu\/\"><strong>installation guide<\/strong><\/a>.<\/p>\n<h3>8. Hadoop provides Feasibility<\/h3>\n<p>Unlike the traditional system, Hadoop can process unstructured data. Thus provide feasibility to the users to analyze data of any formats and size.<\/p>\n<h3>9. Hadoop is Easy to use<\/h3>\n<p>Hadoop is easy to use as the clients don\u2019t have to worry about distributing computing. The processing is handled by the framework itself.<\/p>\n<h3>10. Hadoop ensures Data Reliability<\/h3>\n<p>In Hadoop due to the replication of data in the cluster, data is stored reliably on the cluster machines despite machine failures.<\/p>\n<p>The framework itself provides a mechanism to ensure data reliability by Block Scanner, Volume Scanner, Disk Checker, and Directory Scanner. If your machine goes down or data gets corrupted, then also your data is stored reliably in the cluster and is accessible from the other machine containing a copy of data.<\/p>\n<p><strong>Also, explore\u00a0<a href=\"https:\/\/data-flair.training\/blogs\/what-is-new-in-hadoop-3\/\">10 changes in Hadoop 3<\/a>\u00a0that makes it unique and fast.<\/strong><\/p>\n<h2>Summary<\/h2>\n<p>In short, we can say that Hadoop is an open-source framework. Hadoop is best known for its fault tolerance and high availability feature. Hadoop clusters are scalable. The Hadoop framework is easy to use.<\/p>\n<p>It ensures fast data processing due to distributed processing. Hadoop is cost-effective. Hadoop data locality feature reduces the bandwidth utilization of the system.<span hidden class=\"__iawmlf-post-loop-links\" data-iawmlf-links=\"[{&quot;id&quot;:2324,&quot;href&quot;:&quot;https:\\\/\\\/hadoop.apache.org\\\/docs\\\/r1.2.1\\\/hdfs_design.html&quot;,&quot;archived_href&quot;:&quot;http:\\\/\\\/web-wp.archive.org\\\/web\\\/20251004005724\\\/https:\\\/\\\/hadoop.apache.org\\\/docs\\\/r1.2.1\\\/hdfs_design.html&quot;,&quot;redirect_href&quot;:&quot;&quot;,&quot;checks&quot;:[{&quot;date&quot;:&quot;2025-12-11 03:56:23&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-14 09:53:08&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-17 12:20:57&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-20 15:28:27&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-23 15:31:00&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-27 07:03:50&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2025-12-30 07:03:59&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-02 08:16:19&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-05 09:48:00&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-08 13:08:28&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-11 13:53:21&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-14 18:46:44&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-17 23:13:23&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-21 02:11:09&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-24 03:50:32&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-27 04:47:32&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-01-30 05:44:37&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-02 06:39:48&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-05 07:42:36&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-08 11:08:20&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-11 13:16:33&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-14 14:41:19&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-17 17:07:04&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-20 18:54:13&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-24 07:43:58&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-02-27 12:00:15&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-02 13:35:05&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-05 13:50:35&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-09 02:43:14&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-12 23:35:20&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-16 01:39:23&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-19 15:11:57&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-23 04:19:36&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-26 04:52:31&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-03-29 13:58:44&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-01 15:49:29&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-04 17:03:01&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-08 05:34:46&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-11 06:40:00&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-14 10:12:16&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-17 13:15:34&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-20 16:19:16&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-23 17:33:22&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-27 06:17:27&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-04-30 06:23:47&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-03 10:14:11&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-06 16:08:00&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-10 08:28:08&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-13 11:44:24&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-17 06:06:54&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-20 08:02:43&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-23 10:14:23&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-26 10:17:26&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-05-29 12:21:21&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-01 13:42:21&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-04 17:49:02&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-08 03:17:13&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-11 06:58:21&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-14 10:13:41&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-17 11:43:34&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-21 02:33:48&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-24 08:21:36&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-06-27 10:49:33&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-01 07:43:09&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-04 08:16:55&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-07 12:14:14&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-10 17:51:00&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-14 10:04:35&quot;,&quot;http_code&quot;:206},{&quot;date&quot;:&quot;2026-07-18 01:15:20&quot;,&quot;http_code&quot;:206}],&quot;broken&quot;:false,&quot;last_checked&quot;:{&quot;date&quot;:&quot;2026-07-18 01:15:20&quot;,&quot;http_code&quot;:206},&quot;process&quot;:&quot;done&quot;}]\"><\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Have you ever thought why companies adopt Hadoop as a solution to Big Data Problems? In this article, we are going to study the essential features of Hadoop that make Hadoop so popular. The&#46;&#46;&#46;<\/p>\n","protected":false},"author":7,"featured_media":76438,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[22],"tags":[3326,4550,18900,21879,21858,16842,5262,5342,22003],"class_list":["post-1172","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-hadoop","tag-data-locality-in-hadoop","tag-fault-tolerance-in-hadoop","tag-features-of-hadoop","tag-features-of-hadoop-distributed-file-system","tag-features-of-hdfs","tag-hadoop-3-features","tag-hadoop-high-availability","tag-hadoop-tutorial","tag-mapreduce-features"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>10 Features Of Hadoop That Made It The Most Popular - DataFlair<\/title>\n<meta name=\"description\" content=\"Features of Hadoop- Characteristics of Hadoop, scalability, reliability, fault tolerance, high availability, data locality, speculative execution, distributed process\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"10 Features Of Hadoop That Made It The Most Popular - DataFlair\" \/>\n<meta property=\"og:description\" content=\"Features of Hadoop- Characteristics of Hadoop, scalability, reliability, fault tolerance, high availability, data locality, speculative execution, distributed process\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2016-11-05T01:12:45+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-08-25T17:03:49+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"802\" \/>\n\t<meta property=\"og:image:height\" content=\"420\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"10 Features Of Hadoop That Made It The Most Popular - DataFlair","description":"Features of Hadoop- Characteristics of Hadoop, scalability, reliability, fault tolerance, high availability, data locality, speculative execution, distributed process","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/","og_locale":"en_US","og_type":"article","og_title":"10 Features Of Hadoop That Made It The Most Popular - DataFlair","og_description":"Features of Hadoop- Characteristics of Hadoop, scalability, reliability, fault tolerance, high availability, data locality, speculative execution, distributed process","og_url":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2016-11-05T01:12:45+00:00","article_modified_time":"2021-08-25T17:03:49+00:00","og_image":[{"width":802,"height":420,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop.jpg","type":"image\/jpeg"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/beb0cab24b7aa54423a3b50e669a9dcd"},"headline":"10 Features Of Hadoop That Made It The Most Popular","datePublished":"2016-11-05T01:12:45+00:00","dateModified":"2021-08-25T17:03:49+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/"},"wordCount":902,"commentCount":12,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop.jpg","keywords":["Data Locality in hadoop","Fault Tolerance in Hadoop","Features of hadoop","features of hadoop distributed file system","features of HDFS","Hadoop 3 Features","Hadoop High Availability","hadoop tutorial","mapreduce features"],"articleSection":["Hadoop Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/","url":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/","name":"10 Features Of Hadoop That Made It The Most Popular - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop.jpg","datePublished":"2016-11-05T01:12:45+00:00","dateModified":"2021-08-25T17:03:49+00:00","description":"Features of Hadoop- Characteristics of Hadoop, scalability, reliability, fault tolerance, high availability, data locality, speculative execution, distributed process","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop.jpg","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/11\/features-of-hadoop.jpg","width":802,"height":420,"caption":"features of hadoop"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/features-of-hadoop-and-design-principles\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"Hadoop Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/hadoop\/"},{"@type":"ListItem","position":3,"name":"10 Features Of Hadoop That Made It The Most Popular"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/beb0cab24b7aa54423a3b50e669a9dcd","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c322416204232f4dd97ef3901b0a499a5d34d7ba7fe333f4bfe53a907873d293?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c322416204232f4dd97ef3901b0a499a5d34d7ba7fe333f4bfe53a907873d293?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c322416204232f4dd97ef3901b0a499a5d34d7ba7fe333f4bfe53a907873d293?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"DataFlair Team specializes in creating clear, actionable content on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Backed by industry expertise, we make learning easy and career-oriented for beginners and pros alike.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam3\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/1172","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=1172"}],"version-history":[{"count":10,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/1172\/revisions"}],"predecessor-version":[{"id":86546,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/1172\/revisions\/86546"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/76438"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=1172"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=1172"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=1172"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}