返回介绍

Pig illustrate 运算符

发布于 2024-06-23 16:54:49 字数 2700 浏览 0 评论 0 收藏 0

illustrate 运算符给你一步一步的执行语句序列。
语法
下面给出了 illustrate 运算符的语法。

  1. grunt> illustrate Relation_name;

假设我们在HDFS中有一个具有以下内容的文件Student_data.txt。

  1. 001,Rajiv,Reddy,9848022337,Hyderabad
  2. 002,siddarth,Battacharya,9848022338,Kolkata
  3. 003,Rajesh,Khanna,9848022339,Delhi
  4. 004,Preethi,Agarwal,9848022330,Pune
  5. 005,Trupthi,Mohanthy,9848022336,Bhuwaneshwar
  6. 006,Archana,Mishra,9848022335,Chennai.

如下所示,我们已使用LOAD运算符将其读入关系student。

  1. grunt> student = LOAD 'hdfs://localhost:9000/pig_data/student_data.txt' USING PigStorage(',')
  2. as ( id:int, firstname:chararray, lastname:chararray, phone:chararray, city:chararray );

现在,让我们说明一下名为student的关系,如下所示。

  1. grunt> illustrate student;

执行上述语句后,您将获得以下输出。

  1. grunt> illustrate student;
  2. INFO org.apache.pig.backend.hadoop.executionengine.mapReduceLayer.PigMapOnly$M ap - Aliases
  3. being processed per job phase (AliasName[line,offset]): M: student[1,10] C: R:
  4. ---------------------------------------------------------------------------------------------
  5. |student | id:int | firstname:chararray | lastname:chararray | phone:chararray | city:chararray |
  6. ---------------------------------------------------------------------------------------------
  7. | | 002 | siddarth | Battacharya | 9848022338 | Kolkata |
  8. ---------------------------------------------------------------------------------------------

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文