- 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 运算符
- 分组 & 连接
- Apache Pig - Group 运算符
- Apache Pig - Cogroup 运算符
- Apache Pig - Join 运算符
- Apache Pig - Cross 运算符
- 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 - Cogroup 运算符
COGROUP 运算符的工作方式与 GROUP 运算符大致相同。这两个运算符之间的唯一区别在于,group 运算符通常用于一个关系,而 cogroup 运算符用于包含两个或多个关系的语句。
使用 Cogroup 分组两个关系
假设我们在 HDFS 目录 /pig_data/ 中有两个文件,分别名为 student_details.txt 和 employee_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
employee_details.txt
001,Robin,22,newyork 002,BOB,23,Kolkata 003,Maya,23,Tokyo 004,Sara,25,London 005,David,23,Bhuwaneshwar 006,Maggy,22,Chennai
并且我们已将这些文件加载到 Pig 中,关系名称分别为 student_details 和 employee_details,如下所示。
grunt> 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); grunt> employee_details = LOAD 'hdfs://127.0.0.1:9000/pig_data/employee_details.txt' USING PigStorage(',') as (id:int, name:chararray, age:int, city:chararray);
现在,让我们使用键 age 对关系 student_details 和 employee_details 的记录/元组进行分组,如下所示。
grunt> cogroup_data = COGROUP student_details by age, employee_details by age;
验证
使用 DUMP 运算符验证关系 cogroup_data,如下所示。
grunt> Dump cogroup_data;
输出
它将生成以下输出,显示名为 cogroup_data 的关系的内容,如下所示。
(21,{(4,Preethi,Agarwal,21,9848022330,Pune), (1,Rajiv,Reddy,21,9848022337,Hyderabad)}, { }) (22,{ (3,Rajesh,Khanna,22,9848022339,Delhi), (2,siddarth,Battacharya,22,9848022338,Kolkata) }, { (6,Maggy,22,Chennai),(1,Robin,22,newyork) }) (23,{(6,Archana,Mishra,23,9848022335,Chennai),(5,Trupthi,Mohanthy,23,9848022336 ,Bhuwaneshwar)}, {(5,David,23,Bhuwaneshwar),(3,Maya,23,Tokyo),(2,BOB,23,Kolkata)}) (24,{(8,Bharathi,Nambiayar,24,9848022333,Chennai),(7,Komal,Nayak,24,9848022334, trivendram)}, { }) (25,{ }, {(4,Sara,25,London)})
cogroup 运算符根据年龄对每个关系中的元组进行分组,其中每个组表示一个特定的年龄值。
例如,如果我们考虑结果的第一个元组,它按年龄 21 分组。它包含两个包 -
第一个包包含来自第一个关系(在本例中为 student_details)中所有年龄为 21 的元组,以及
第二个包包含来自第二个关系(在本例中为 employee_details)中所有年龄为 21 的元组。
如果某个关系没有年龄值为 21 的元组,则它将返回一个空包。
广告