Changes between Version 1 and Version 2 of LogParser
- Timestamp:
- Jul 4, 2008, 4:35:56 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified LogParser
v1 v2 4 4 5 5 = 如何使用 = 6 1. Upload apache logs ( /var/log/apache2/access.log* ) to hdfs (default: /user/waue/apache-log) \ 7 8 {{{ $ bin/hadoop dfs -put /var/log/apache2/ apache-log 9 }}} 10 2. parameter "dir" in main contains the logs. 11 12 3. you should filter the exception contents manually, 6 * 1. Upload apache logs ( /var/log/apache2/access.log* ) to hdfs (default: /user/waue/apache-log) \ 7 8 {{{ 9 $ bin/hadoop dfs -put /var/log/apache2/ apache-log 10 }}} 11 * 2. parameter "dir" in main contains the logs. 12 13 * 3. you should filter the exception contents manually, 13 14 {{{ ex: ::1 - - [29/Jun/2008:07:35:15 +0800] "GET / HTTP/1.0" 200 729 "... 14 15 }}} 15 16 }}} 16 17 = 結果 = 17 1 .執行以下指令18 1 執行以下指令 18 19 {{{ 19 20 hql > select * from apache-log; 20 21 21 22 }}} 22 2 .結果23 2 結果 23 24 24 25 {{{ … … 581 582 582 583 System.out.println("2. access_log files fetching using map/reduce"); 583 584 584 } 585 586 587 588 585 public static void main(String[] args) throws IOException { 589 590 586 String table_name = "apache-log2"; 591 592 587 String dir = "/user/waue/apache-log"; 593 594 595 588 creatTable(table_name); 596 597 589 runMapReduce(table_name, dir); 598 599 600 601 590 } 602 603 604 605 591 } 606 592