- Apache Pig 教程
- Apache Pig - 主页
- Apache Pig 简介
- Apache Pig - 概述
- Apache Pig - 架构
- Apache Pig 环境
- Apache Pig - 安装
- Apache Pig - 执行
- Apache Pig - Grunt Shell
- Pig Latin
- Pig Latin - 基础
- 加载和存储运算符
- Apache Pig - 读取数据
- Apache Pig - 存储数据
- 诊断运算符
- Apache Pig - 诊断运算符
- Apache Pig - Describe 运算符
- Apache Pig - Explain 运算符
- Apache Pig - Illustrate 运算符
- Pig Latin 内置函数
- Apache Pig - Eval 函数
- 加载和存储函数
- Apache Pig - Bag 和 Tuple 函数
- Apache Pig - 字符串函数
- Apache Pig - 日期时间函数
- Apache Pig - 数学函数
- Apache Pig 有用资源
- Apache Pig - 快速指南
- Apache Pig - 有用资源
- Apache Pig - 讨论
Apache Pig - 分割运算符
SPLIT 运算符用于将关系拆分为两个或多个关系。
语法
以下是 SPLIT 运算符的语法。
grunt> SPLIT Relation1_name INTO Relation2_name IF (condition1), Relation2_name (condition2),
示例
假设我们在 HDFS 目录 /pig_data/ 中有一个名为 student_details.txt 的文件,如下所示。
student_details.txt
001,Rajiv,Reddy,21,9848022337,Hyderabad 002,siddarth,Battacharya,22,9848022338,Kolkata 003,Rajesh,Khanna,22,9848022339,Delhi 004,Preethi,Agarwal,21,9848022330,Pune 005,Trupthi,Mohanthy,23,9848022336,Bhuwaneshwar 006,Archana,Mishra,23,9848022335,Chennai 007,Komal,Nayak,24,9848022334,trivendram 008,Bharathi,Nambiayar,24,9848022333,Chennai
我们已将此文件使用关系名称 student_details 加载到 Pig 中,如下所示。
student_details = LOAD 'hdfs://127.0.0.1:9000/pig_data/student_details.txt' USING PigStorage(',') as (id:int, firstname:chararray, lastname:chararray, age:int, phone:chararray, city:chararray);
现在让我们将关系分成两个,一个列出年龄小于 23 岁的员工,另一个列出年龄在 22 到 25 岁之间的员工。
SPLIT student_details into student_details1 if age<23, student_details2 if (22<age and age>25);
验证
使用 DUMP 运算符验证关系 student_details1 和 student_details2,如下所示。
grunt> Dump student_details1; grunt> Dump student_details2;
输出
它将生成以下输出,分别显示关系 student_details1 和 student_details2 的内容。
grunt> Dump student_details1; (1,Rajiv,Reddy,21,9848022337,Hyderabad) (2,siddarth,Battacharya,22,9848022338,Kolkata) (3,Rajesh,Khanna,22,9848022339,Delhi) (4,Preethi,Agarwal,21,9848022330,Pune) grunt> Dump student_details2; (5,Trupthi,Mohanthy,23,9848022336,Bhuwaneshwar) (6,Archana,Mishra,23,9848022335,Chennai) (7,Komal,Nayak,24,9848022334,trivendram) (8,Bharathi,Nambiayar,24,9848022333,Chennai)
广告