2011年1月11日火曜日

H2 DatabaseとHadoopでHDFS上のファイルをリネームする関数を作成する

H2 DatabaseとHadoopでHDFS上のファイルをリネームする関数を作成するには、以下のスクリプトを実行します。

create alias if not exists hdfs_rename as $$ 
import java.io.*;
import java.util.*;
import java.sql.*;
import org.h2.tools.*;
import org.apache.hadoop.conf.*;
import org.apache.hadoop.fs.*;
import java.net.*;
@CODE
Boolean hdfs_rename(String uri, String user,
String srcpath, String destpath)
throws Exception
{
if( uri == null ){
throw new Exception("uri is not specified.");
}
if( user == null ){
throw new Exception("user is not specified.");
}
if( srcpath == null ){
throw new Exception("srcpath is not specified.");
}
if( destpath == null ){
throw new Exception("destpath time is not specified.");
}

FileSystem fs = FileSystem.get(
URI.create(uri), new Configuration(), user);

return fs.rename(new Path(srcpath), new Path(destpath));
}
$$


実行例
select
hdfs_rename('hdfs://192.168.1.81:9000/', 'hadoop',
'/opt/hadoop-data/test.txt',
'/opt/hadoop-data/test_bak.txt')
;

※以下のjarをCLASSPATH環境変数に追加
hadoop-common-0.21.0.jar
hadoop-hdfs-0.21.0.jar
log4j-1.2.15.jar

動作環境
JDK6 Update22, Hadoop 0.21.0, H2 Database 1.2.147 (2010-11-21)

○関連情報
・CentOS5.5にHadoop0.21.0をインストールする
http://serverarekore.blogspot.com/2010/10/centos55hadoop0210.html
・H2 Databaseに関する他の記事はこちらを参照してください。

0 件のコメント:

コメントを投稿