java寫hdfs程序
2、vim core-site.xml 配置如下,然後重啟hadoop集群,不要對namenode重新進行格式化操作
修改datanode /var/hadoop/dfs/data/current 目錄下VERSION文件的clusterid與namenode一致;然後啟動集群正常
<property>
<name>hadoop.tmp.dir</name>
</property>
在namenode執行格式化操作後,會導致namenode重新生成clusterid,而datanode的clusterID值沒變,
namenode與datanode clusterid不一致導致datanode啟動異常;需要手動改成與namenode一致
3、測試時,可以關閉權限檢查(否則沒有權限訪問),在namenode節點添加如下配置
vim hdfs-site.xml
<property>
<name>dfs.permissions.enabled</name>
</property>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<artifactId>wordcount</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>wordcount</name>
<description>count the word</description>
<properties>
<project.build.sourceencoding>UTF-8</project.build.sourceencoding>
<hadoop.version>2.7.3</hadoop.version>
</properties>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<version>${hadoop.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${hadoop.version}</version>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-hdfs</artifactId>
<version>${hadoop.version}</version>
</dependency>
</dependencies>
</project>
package com.skcc.hadoop;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.text.NumberFormat;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FSDataOutputStream;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.FsUrlStreamHandlerFactory;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IOUtils;
public class HelloHDFS {
public HelloHDFS() {
// TODO Auto-generated constructor stub
}
public static FileSystem getFileSystemInstance() {
Configuration conf = new Configuration();
conf.set("fs.defaultFS", "hdfs://172.26.19.40:9000");
FileSystem fileSystem = null;
try {
fileSystem = FileSystem.get(conf);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return fileSystem;
}
public static void getFileFromHDFS() throws Exception {
//URL 默認處理http協議, FsUrlStreamHandlerFactory 處理hdfs協議
URL.setURLStreamHandlerFactory(new FsUrlStreamHandlerFactory());
URL url=new URL("hdfs://172.26.19.40:9000/10803060234.txt");
InputStream inputStream= url.openStream();
IOUtils.copyBytes(inputStream, System.out, 4096,true);
}
public static void getFileFromBaiDu() throws IOException {
URL url=new URL("http://skynet.skhynix-cq.com.cn/plusWare/Main.aspx");
InputStream inputStream= url.openStream();
IOUtils.copyBytes(inputStream, System.out, 4096,true);
}
public static void testHadoop() throws Exception {
FileSystem fileSystem = getFileSystemInstance();
Boolean success = fileSystem.mkdirs(new Path("/skcc"));
System.out.println("mkdirs is " + success);
success = fileSystem.exists(new Path("/10803060234.txt"));
System.out.println("file exists is " + success);
success = fileSystem.delete(new Path("/test2.data"),true);
System.out.println("delete dirs is " + success);
success = fileSystem.exists(new Path("/skcc"));
System.out.println("dirs exists is "+ success);
}
public static void uploadFileToHDFS() throws Exception {
FileSystem fileSystem = getFileSystemInstance();
String filename = "/test2.data";
// overwrite ==true
FSDataOutputStream outputStream = fileSystem.create(new Path(filename), true);
FileInputStream fis = new FileInputStream("D:\\2018\\u001.zip");
// IOUtils.copyBytes(fis, outputStream, 4096, true);
long totalLen = fis.getChannel().size();
long tmpSize = 0;
double readPercent = 0;
NumberFormat numberFormat = NumberFormat.getInstance();
numberFormat.setMaximumFractionDigits(0);
System.out.println("totalLen : " + totalLen + " available : " + fis.available());
byte[] buf = new byte[4096];
int len = fis.read(buf);
while (len != -1) {
tmpSize = tmpSize + len;
String result = numberFormat.format((float)tmpSize / (float)totalLen * 100 );
outputStream.write(buf,0,len);
System.out.println("Upload Percent : " + result + "%");
len = fis.read(buf);
}
}
}
java寫hdfs程序