大象教程
首页
Spark
Hadoop
HDFS
MapReduce
Hive
Pig 教程
Pig 教程
Pig 体系结构
Pig 安装
Pig 执行
Pig Grunt Shell
Pig Latin 基础
Pig 读取数据
Pig 存储数据
Pig Dump 运算符
Pig Describe 运算符
Pig Explain 运算符
Pig illustrate 运算符
Pig GROUP 运算符
Pig Cogroup 运算符
Pig JOIN 运算符
Pig Cross 运算符
Pig Union 运算符
Pig SPLIT 运算符
Pig FILTER 运算符
Pig DISTINCT 运算符
Pig FOREACH 运算符
Pig ORDER BY 运算符
Pig LIMIT 运算符
Pig eval(求值) 函数
Pig Load & Store 函数
Pig Bag & Tuple 函数
Pig 字符串(String) 函数
Pig 日期时间函数
Pig 数学函数
#Pig Describe 运算符 Describe 操作符用于查看的关系的模式。 **语法** Describe运算符的语法如下: ```bash grunt> Describe Relation_name ``` 假设我们在HDFS中有一个具有以下内容的文件Student_data.txt。 ``` 001,Rajiv,Reddy,9848022337,Hyderabad 002,siddarth,Battacharya,9848022338,Kolkata 003,Rajesh,Khanna,9848022339,Delhi 004,Preethi,Agarwal,9848022330,Pune 005,Trupthi,Mohanthy,9848022336,Bhuwaneshwar 006,Archana,Mishra,9848022335,Chennai. ``` 如下所示,我们已使用LOAD运算符将其读入关系student。 ```bash grunt> student = LOAD 'hdfs://localhost:9000/pig_data/student_data.txt' USING PigStorage(',') as ( id:int, firstname:chararray, lastname:chararray, phone:chararray, city:chararray ); ``` 现在,让我们描述名为student的关系并验证模式,如下所示。 ```bash grunt> describe student; ``` 一旦执行了上述Pig Latin语句,它将产生以下输出。 ```bash grunt> student: { id: int,firstname: chararray,lastname: chararray,phone: chararray,city: chararray } ```
加我微信交流吧