├── .gitignore ├── README.md ├── WebLogAnalysis.scala └── data ├── 2015_07_22_mktplace_shop_web_log_sample.log.gz └── min.log /.gitignore: -------------------------------------------------------------------------------- 1 | project/ 2 | target/ 3 | .idea/ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/DataEngineerChallenge/HEAD/README.md -------------------------------------------------------------------------------- /WebLogAnalysis.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/DataEngineerChallenge/HEAD/WebLogAnalysis.scala -------------------------------------------------------------------------------- /data/2015_07_22_mktplace_shop_web_log_sample.log.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/DataEngineerChallenge/HEAD/data/2015_07_22_mktplace_shop_web_log_sample.log.gz -------------------------------------------------------------------------------- /data/min.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/norbusan/DataEngineerChallenge/HEAD/data/min.log --------------------------------------------------------------------------------