- Apache Pig 教程
- Apache Pig - 首页
- Apache Pig 简介
- Apache Pig - 概述
- Apache Pig - 架构
- Apache Pig 环境
- Apache Pig - 安装
- Apache Pig - 执行
- Apache Pig - Grunt Shell
- Pig Latin
- Pig Latin - 基础
- LOAD & STORE 运算符
- 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 函数
- LOAD & STORE 函数
- Apache Pig - Bag & Tuple 函数
- Apache Pig - 字符串函数
- Apache Pig - 日期时间函数
- Apache Pig - 数学函数
- Apache Pig 有用资源
- Apache Pig - 快速指南
- Apache Pig - 有用资源
- Apache Pig - 讨论
Apache Pig - LIMIT 运算符
LIMIT 运算符用于从关系中获取有限数量的元组。
语法
以下是 LIMIT 运算符的语法。
grunt> Result = LIMIT Relation_name required number of tuples;
示例
假设我们在 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 中,如下所示。
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);
现在,让我们根据学生的年龄按降序对关系进行排序,并使用 ORDER BY 运算符将其存储到另一个名为 limit_data 的关系中,如下所示。
grunt> limit_data = LIMIT student_details 4;
验证
使用 DUMP 运算符验证关系 limit_data,如下所示。
grunt> Dump limit_data;
输出
它将产生以下输出,显示关系 limit_data 的内容,如下所示。
(1,Rajiv,Reddy,21,9848022337,Hyderabad) (2,siddarth,Battacharya,22,9848022338,Kolkata) (3,Rajesh,Khanna,22,9848022339,Delhi) (4,Preethi,Agarwal,21,9848022330,Pune)
广告