要检查文件是否成功上传到Hadoop集群中,可以使用以下几种方法:
示例:hadoop fs -ls /path/to/your/file
示例:在浏览器中输入http://<Hadoop集群的IP地址>:<Web界面端口号>/,然后浏览到你上传文件的路径。
示例(Java):
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
public class CheckFileUpload {
public static void main(String[] args) throws Exception {
String filePath = "/path/to/your/file";
Configuration conf = new Configuration();
FileSystem fs = FileSystem.get(conf);
Path file = new Path(filePath);
boolean exists = fs.exists(file);
if (exists) {
System.out.println("File upload successful!");
} else {
System.out.println("File upload failed!");
}
}
}
请注意,以上方法假设你已经正确配置了Hadoop集群和环境。