zoukankan      html  css  js  c++  java
  • java操作hdfs到数据库或者缓存

    使用hadoop工具将数据分析出来以后,须要做入库处理或者存到缓存中。不然就没了意义

    一下是使用javaAPI操作hdfs存入缓存的代码:

    <span style="font-family:Microsoft YaHei;font-size:14px;">public class InterestToRedisJob {
    	
    	FileSystem hdfs = null;
    	
    	public InterestToRedisJob(){
    		init();
    	}
    	
    	private void init(){
    		Configuration conf = new Configuration();
    		conf.set("fs.default.name", "hdfs地址");
    		try {
    			hdfs = FileSystem.get(conf);
    		} catch (IOException e) {
    			e.printStackTrace();
    		}
    	}
    	
    	
    	public void ReadFileToReids(String path) throws IOException{
    		Path paths = new Path(path);
    		FileStatus[] files = hdfs.listStatus(paths);</span>
    <span style="font-family:Microsoft YaHei;font-size:14px;"><span style="white-space:pre">		</span>//这儿是自己实现的一个路径顾虑器,也可不适用,在【1】处直接推断part-r-等标示</span>
    <span style="font-family:Microsoft YaHei;font-size:14px;">		PathFilter filter = new ResultNameFilter("part-r-"); 
    		Text line = new Text();
    		RedisClient redis = new RedisClient();
    		for(FileStatus file:files){
    			if(file.isDir() || !filter.accept(file.getPath())){//【1】
    				continue;
    			}else{
    				FSDataInputStream input = null;
    				try{
    					input = hdfs.open(file.getPath());
    					LineReader reader = new LineReader(input);
    					while(reader.readLine(line) > 0){
    						System.out.println(line);
    						String[] arr = line.toString().split("	");</span>
    <span style="font-family:Microsoft YaHei;font-size:14px;"><span style="white-space:pre">						</span>//做存入redis处理
    						redis.saveHsetValue(arr[0], "interest", arr[1]);
    					}
    				}catch(Exception e){
    					e.printStackTrace();
    				}finally{
    					if(input != null){
    						input.close();
    					}
    				}
    			}
    		}
    	}
    	
    	public static void main(String[] args) {
    		InterestToRedisJob job = new InterestToRedisJob();
    		try {
    			job.ReadFileToReids("你的path");
    		} catch (IOException e) {
    			e.printStackTrace();
    		}
    	}
    }</span>
    上面代码须要改动后使用,请勿直接粘贴。



  • 相关阅读:
    如何通过 Serverless 技术降低微服务应用资源成本?
    Serverless 对研发效能的变革和创新
    Serverless X OpenKruise 部署效率优化之道
    阿里云 Serverless 再升级,从体验上拉开差距
    2019 年 CNCF 中国云原生调查报告
    不错的的机器学习视频分享
    arcgis for js 4.6加载本地发布好的2维地图
    win8 下删除服务
    arcgis10.2 全套安装教程
    git版本回退
  • 原文地址:https://www.cnblogs.com/gavanwanggw/p/6699075.html
Copyright © 2011-2022 走看看