Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.idea
build
.gradle
/input
/output*
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,4 @@ From github.com:polis-mail-ru/2017-big-data

Пример конфигурация для запуска таски из idea можно посмотреть в файле config.png

В своём Java package `<username>` выполните все задания.

В своём Java package `<username>` выполните все задания.
3 changes: 0 additions & 3 deletions answers.txt

This file was deleted.

27 changes: 27 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
group 'com.olerom'
version '1.0-SNAPSHOT'

apply plugin: 'java'

sourceCompatibility = 1.8

repositories {
mavenCentral()
}

dependencies {
compile 'org.apache.hadoop:hadoop-mapreduce:2.7.0'
compile 'org.apache.hadoop:hadoop-core:0.20.2'
testCompile group: 'junit', name: 'junit', version: '4.12'
}

task fatJar(type: Jar) {
manifest {
attributes 'Implementation-Title': 'Gradle Jar File Example',
'Implementation-Version': version,
'Main-Class': 'olerom.wordcount.WordCount'
}
baseName = project.name + '-fat-jar'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
Binary file removed config.png
Binary file not shown.
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 6 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#Sun Oct 29 00:17:07 MSK 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
172 changes: 172 additions & 0 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

84 changes: 84 additions & 0 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions measuring.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
WordCount без комбайнера: 2.5+ часа
WordCount с комбайнером: 1 час 42 минуты
47 changes: 0 additions & 47 deletions pom.xml

This file was deleted.

3 changes: 3 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
rootProject.name = 'big-data-course'
rootProject.name = 'big-data-course'

Loading