Writing to Hive Dynamic Partitions with Flink SQL

Apache Flink and Apache Hive are commonly integrated in modern data pipelines to enable efficient batch and stream processing with persistent, partitioned storage. One powerful capability is writing data from Flink SQL into Hive tables using dynamic partitioning—where partition values are derived from the data itself rather than being hardcoded ...

Posted on Wed, 02 Sep 2026 16:19:30 +0000 by Twysted

Hive Window Functions for Data Transformation

Row to Column Conversion Problem Analysis Given the following employee data: 1,PK,RD,1 2,XIAOAI,RD,1 3,XIAOHONG,RD,2 4,XIAOZHANG,QA,1 5,XIAOLI,QA,2 6,XIAOFANG,QA,2 Group by department and gender to get: QA,1 XIAOZHANG QA,2 XIAOLI|XIAOFANG RD,1 PK|XIAOAI RD,2 XIAOHONG Required Functions concat: String concatenation concat_ws: Stri ...

Posted on Wed, 02 Sep 2026 16:10:10 +0000 by thefury

Building a Hadoop+Spark+Zookeeper+HBase+Hive Cluster: Complete Setup Guide

Environment Overview Cluster Architecture This cluster uses three machines configured as master-slave topology. The following table summarizes the hardware specificasions: Node Role CPU Cores RAM Disk Space master NameNode + ResourceManager 4 16GB 500GB slave1 DataNode + NodeManager 4 16GB 500GB slave2 DataNode + NodeManager 4 16GB 5 ...

Posted on Mon, 27 Jul 2026 16:51:19 +0000 by qaokpl

Configuring Hive, MySQL, and Sqoop for a Big Data Development Lab

This guide walks through setting up MySQL, Hive, and Sqoop on a single Hadoop node (Hadoop01). The steps assume a CentOS 7 environment with Hadoop 2.7.4 already deployed. All operations are performed on Hadoop01 only. 1. MySQL Installation & Configuration 1.1 Remove Existing MariaDB yum remove mysql-libs -y 1.2 Upload and Extract RPM Bund ...

Posted on Thu, 23 Jul 2026 16:43:23 +0000 by Mindwreck

Extracting Keys from JSON Data in Hive

Process Overview To extract keys from JSON data in Hive, follow these steps: Step Action 1 Create a Hive table 2 Load JSON data into the table 3 Extract keys from the JSON Step 1: Create a Hive Table Define a table to store JSON strings. Use the following SQL command: CREATE TABLE IF NOT EXISTS json_data_table ( json_content S ...

Posted on Thu, 23 Jul 2026 16:21:48 +0000 by wildcolour

Data Task Optimization Strategies in Modern Data Engineering

Entroduction to Data Processing Optimization In contemporary data engineering workflows, escalating business complexity correlates directly with intricate task logic and growing data volumes. As performance demands intensify, optimization becomes paramount. While common techniques like small file consolidation and skew handling are well-documen ...

Posted on Wed, 22 Jul 2026 16:40:11 +0000 by chocopi

Big Data Final Review Guide 2023 Beta

Chapter 3: HDFS http://master:50070 1.1 NameNode NameNode is the manager. It stores metadata, which is data about data. Files in HDFS are split into data blocks of 128 MB (originally 64 MB) for storage. Replication strategy: The default replication factor in HDFS is 3. 1.2 Secondary NameNode 1.3 DataNode 1.4 Client 1.5 File Write Process NameN ...

Posted on Wed, 01 Jul 2026 16:57:39 +0000 by james13009

Analyzing E-commerce Product Reviews with a Big Data Pipeline

Implementing a Data Pipeline for Product Review Analysis This project outlines a data pipeline for analyzing customer reviews from an e-commerce platform. The process involves collecting data via web scraping, processing it using distributed computing frameworks, and visualizing the results. The goal is to extract insights regarding user behavi ...

Posted on Sun, 28 Jun 2026 17:34:32 +0000 by kashmirekat

Understanding Hive, HBase, and HDFS in the Hadoop Ecosystem

Hive, HBase, and HDFS serve distinct but complementary roles in the Hadoop architecture—each addressing different data access patterns and storage requirements. Hive: SQL Abstraction Over Batch Processing Hive is a data warehousing infrastructure built atop Hadoop that translates declarative SQL-like queries (HiveQL) into distributed batch jobs ...

Posted on Sun, 21 Jun 2026 17:35:21 +0000 by drbigfresh

Hive Fundamentals and Core Concepts

Hive Introduction What is Hive? Hive is an open-source data warehouse solution originally developed by Facebook that operates on Hadoop infrastructure It provides SQL-like query capabilities (HQL) for structured data stored in HDFS Core functionality involves translating SQL queries into MapReduce jobs Primary use case: batch data analytics wi ...

Posted on Mon, 15 Jun 2026 18:24:52 +0000 by bobbfwed