├── .gitattributes ├── .gitignore ├── HDPInstall ├── ambari.repo ├── hdp.repo ├── prepare.sh └── thp.txt ├── MRExamples ├── JsonTrans │ ├── JsonTrans.java │ └── build.sbt ├── LineCount │ ├── LineCount.java │ └── build.sbt ├── PlaytimeAVG │ ├── PlaytimeAVG.java │ └── build.sbt ├── PlaytimeAVGByVideo │ ├── PlaytimeAVGByVideo.java │ └── build.sbt ├── RecordFilter │ ├── RecordFilter.java │ └── build.sbt └── VideoSession.dat └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /HDPInstall/ambari.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/HDPInstall/ambari.repo -------------------------------------------------------------------------------- /HDPInstall/hdp.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/HDPInstall/hdp.repo -------------------------------------------------------------------------------- /HDPInstall/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/HDPInstall/prepare.sh -------------------------------------------------------------------------------- /HDPInstall/thp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/HDPInstall/thp.txt -------------------------------------------------------------------------------- /MRExamples/JsonTrans/JsonTrans.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/MRExamples/JsonTrans/JsonTrans.java -------------------------------------------------------------------------------- /MRExamples/JsonTrans/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/MRExamples/JsonTrans/build.sbt -------------------------------------------------------------------------------- /MRExamples/LineCount/LineCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/MRExamples/LineCount/LineCount.java -------------------------------------------------------------------------------- /MRExamples/LineCount/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/MRExamples/LineCount/build.sbt -------------------------------------------------------------------------------- /MRExamples/PlaytimeAVG/PlaytimeAVG.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/MRExamples/PlaytimeAVG/PlaytimeAVG.java -------------------------------------------------------------------------------- /MRExamples/PlaytimeAVG/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/MRExamples/PlaytimeAVG/build.sbt -------------------------------------------------------------------------------- /MRExamples/PlaytimeAVGByVideo/PlaytimeAVGByVideo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/MRExamples/PlaytimeAVGByVideo/PlaytimeAVGByVideo.java -------------------------------------------------------------------------------- /MRExamples/PlaytimeAVGByVideo/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/MRExamples/PlaytimeAVGByVideo/build.sbt -------------------------------------------------------------------------------- /MRExamples/RecordFilter/RecordFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/MRExamples/RecordFilter/RecordFilter.java -------------------------------------------------------------------------------- /MRExamples/RecordFilter/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/MRExamples/RecordFilter/build.sbt -------------------------------------------------------------------------------- /MRExamples/VideoSession.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/MRExamples/VideoSession.dat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearningJournal/HadoopTutorials/HEAD/README.md --------------------------------------------------------------------------------