簡體   English   中英

從Pig中的配置單元表加載最新分區

[英]Load the latest partition from a hive table in pig

我想知道如何從Pig腳本中的配置單元表中加載最新分區。 顯然,我可以加載整個數據,然后使用FILTER命令過濾相應的分區。

但是,如果我們不知道hive表的最新日期分區是什么,我們如何獲取最新日期本身並加載對應日期的分區?

據我所知,我們不能直接做到這一點。我用Shell腳本指出了某種方式。 希望您分配的列采用datehour格式或數字遞增順序。

hive -e 'select max(datehour) from tweets1' > datehour.txt;

   # i am storing of above query output to one temp file datehour.txt

datehour=$(awk '{print $0}' /home/winit/Desktop/needtocopy1/hivequeries/datehour.txt)

   # reading that file with above command.

 hive -e 'describe formatted tweets1  partition (datehour='$datehour')' > partitionloc.txt;

   # with describe command i am storing output to onemore temp file.

 partionLocation=$(awk '/Location:/ { print $2 }' partitionloc.txt)

  # i am reading the temp file with pattern 'Location',its partition location

  # pass the location to pig script as parameter to load data from..

 pig  -f  pigfile.pig --param location=$partionLocation

讓我知道是否有效

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM