举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > apache timeout Apache Pig CurrentTime()函数

apache timeout Apache Pig CurrentTime()函数

2023-04-02 21:18 ApachePig教程

apache timeout Apache Pig CurrentTime()函数

apache timeout Apache Pig CurrentTime()函数

apache timeout

此函数用于生成当前时间的 DateTime 对象。

语法

这是 CurrentTime() 函数的语法。

grunt> CurrentTime() 

假设在 HDFS 目录 /pig_data/ 中有一个名为 date.txt 的文件。此文件包含特定人员的出生日期的详细信息:id,日期和时间。

date.txt

001,1989/09/26 09:00:00
002,1980/06/20 10:22:00
003,1990/12/19 03:11:44 

通过使用 date 关系将此文件加载到Pig中,如下所示。

grunt> date_data = LOAD 'hdfs://localhost:9000/pig_data/date.txt' USING PigStorage(',')
   as (id:int,date:chararray);

以下是 CurrentTime() 函数的示例。这里我们生成当前时间。

grunt> currenttime_data = foreach todate_data generate CurrentTime();

语句的结果将存储在名为 currenttime_data 的关系中。使用Dump操作符验证此关系的内容。

grunt> Dump currenttime_data;
  
(2015-11-06T11:31:02.013+05:30)
(2015-11-06T11:31:02.013+05:30) 
(2015-11-06T11:31:02.013+05:30) 


阅读全文
以上是编程学为你收集整理的apache timeout Apache Pig CurrentTime()函数全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部