返回介绍

Pig Describe 运算符

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

Describe 操作符用于查看的关系的模式。

语法
Describe运算符的语法如下:

  1. grunt> Describe 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> describe student;

一旦执行了上述Pig Latin语句,它将产生以下输出。

  1. grunt> student: { id: int,firstname: chararray,lastname: chararray,phone: chararray,city: chararray }

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

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

发布评论

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