通過map reduce統計應用ip訪問次數
通過map reduce統計應用ip訪問次數
1:資料來源檔案準備
資料來源檔案:access.log
內容如下:部分:
2:上傳資料來源檔案到hdfs中
將此檔案上傳到hadoop hdfs檔案系統中:
hadoop fs -put access.log /ip/input/
3:編寫map reduce程式:
package com.wangmm.hadoop.mapreduce;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
public class IPCounter {
static final String IN_PUT = "hdfs://icity0:9000/ip/input";
static final String OUT_PUT = "hdfs://icity0:9000/ip/output";
public static void main(String[] args) throws IOException, URISyntaxException, InterruptedException, ClassNotFoundException {
Configuration conf = new Configuration();
FileSystem fileSystem = FileSystem.get(new URI(IN_PUT), conf);
Path outPath = new Path(OUT_PUT);
if(fileSystem.exists(outPath)){
fileSystem.delete(outPath,true);
}
Job job = new Job(conf, IPCounter.class.getSimpleName());
job.setJarByClass(IPCounter.class);
// FileInputFormat.addInputPath(job, new Path(IN_PUT));
FileInputFormat.setInputPaths(job, IN_PUT);
job.setMapperClass(IpMapper.class);
job.setReducerClass(IpReduce.class);
job.setOutputKeyClass(Text.class);
job.setOutputValueClass(LongWritable.class);
FileOutputFormat.setOutputPath(job, outPath);
job.waitForCompletion(true);
}
static class IpMapper extends Mapper<LongWritable, Text, Text, LongWritable>{
protected void map(LongWritable key, Text value, org.apache.hadoop.mapreduce.Mapper<LongWritable,Text,Text,LongWritable>.Context context) throws java.io.IOException ,InterruptedException {
System.out.println(value.toString());
String ip[] = value.toString().split("- -");
for (int i = 0; i < ip.length; i++) {
System.out.print(ip[0].toString());
}
System.out.println("------------------");
String ipStr = ip[0].toString().trim();
System.out.println(ipStr+"-----");
context.write(new Text(ipStr), new LongWritable(1));
};
}
static class IpReduce extends Reducer<Text,LongWritable,Text, LongWritable>{
protected void reduce(Text k2, java.lang.Iterable<LongWritable> v2, org.apache.hadoop.mapreduce.Reducer<Text,LongWritable,Text,LongWritable>.Context context) throws java.io.IOException ,InterruptedException {
Long counts = 0L;
for (LongWritable v : v2) {
counts += v.get();
}
context.write(k2, new LongWritable(counts));
};
}
}
工程截圖:
4:執行map reduce程式
5:檢視hdfs結果
[hadoop@icity0 ~]$ hadoop fs -cat /ip/output/part-r-00000
Warning: $HADOOP_HOME is deprecated.
172.16.17.166 31
172.16.17.198 79
172.16.18.148 186
172.16.16.219 1256
172.16.35.141 1102
172.16.35.146 2986
172.16.35.159 6
至此,簡單的通過map reduce 實現的ip訪問次數統計完成。
相關文章
- awk統計訪問nginx日誌次數Nginx
- Nginx統計訪問IP並排序Nginx排序
- Python函數語言程式設計-map/reducePython函數程式設計
- Hadoop--map/reduce實現單詞計數Hadoop
- SQL Server 不同網段IP通過名稱訪問SQLServer
- 分散式計算與Map Reduce分散式
- 使用redis統計ip的使用次數Redis
- apache日誌統計 按小時,分鐘統計url訪問次數Apache
- 通過SQLNET.ora檔案限制Ip地址訪問SQL
- Mongodb 的中資料統計神器Map_Reduce的使用MongoDB
- Map-Reduce 思想在 ABAP 程式設計中的一個實際應用案例程式設計
- 在Linux中,如何統計ip訪問情況?分析 nginx 訪問日誌?如何找出訪問頁面數量在前十位的ip?LinuxNginx
- iOS通過加速計計算搖一搖次數iOS
- 網站能通過IP訪問,域名加上cdn後顯示響應時間過長怎麼辦?網站
- 五、GO程式設計模式:MAP-REDUCEGo程式設計設計模式
- GO程式設計模式05:MAP-REDUCEGo程式設計設計模式
- 通過Oracle Gateways 訪問SybaseOracleGateway
- map/reduce實現 排序排序
- Python中的Map、Reduce和Filter函數語言程式設計PythonFilter函數程式設計
- 在JavaScript函數語言程式設計裡使用Map和Reduce方法JavaScript函數程式設計
- 【.bat】IISExpress配置透過IP訪問程式BATExpress
- AWK應用之統計訪問日誌
- 通過Struts應用MVC設計模型MVC模型
- 再談通過http訪問SSASHTTP
- 通過FTP訪問ASM磁碟組FTPASM
- [介面測試]通過Class檔案掃描來統計待測應用的介面數
- 解決tomcat伺服器下,只能通過localhost,而不能通過127.0.0.1或者本地ip地址訪問的問題Tomcat伺服器localhost127.0.0.1
- Hadoop Map Reduce 漫談Hadoop
- 【Hadoop】按照map-reduce的思想試述完整的pagerank計算過程Hadoop
- laravel 單使用者 單IP 頻次訪問限制Laravel
- 設定MYSQL允許用IP訪問MySql
- 訪問統計(排除爬蟲訪問)爬蟲
- docker 中容器通過 API 互相訪問DockerAPI
- 通過驗證訪問ASM例項ASM
- Linux應用可通過USB訪問Android裝置-Chrome OS 75版釋出LinuxAndroidChrome
- python應用系統訪問瀚高庫Python
- Python map, reduce, filter和sortedPythonFilter
- 【Azure微服務 Service Fabric 】Service Fabric中應用開啟外部訪問埠及微服務之間通過反向代理埠訪問問題微服務