embulk-input-hdfs 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/build.gradle +3 -3
- data/classpath/embulk-input-hdfs-0.0.3.jar +0 -0
- data/gradle/wrapper/gradle-wrapper.jar +0 -0
- data/gradle/wrapper/gradle-wrapper.properties +2 -2
- data/src/main/java/org/embulk/input/HdfsFileInputPlugin.java +3 -3
- metadata +3 -3
- data/classpath/embulk-input-hdfs-0.0.2.jar +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 730a82c7b3d06734b462824ca3c6036513f2cb60
|
4
|
+
data.tar.gz: 23cb0dfbda2edfc51a24d743dfaf30557b26a86f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a92443bbb2df59ab50cb68b532522c4cc73d5d5466a1a7e7aace2309885e9dc09dfaa5f51845fcfeeb34e4ed0dcfc0b8a2d2fe25893d60bfbc48e67d285718e
|
7
|
+
data.tar.gz: 57e0aff97e4a14d45fcaecfb6e3b33dbaa001fa282bd2907e146615392b6676580193a7cf3def5e9923184c97c18cddb8bde07e4c9a87dfc905c23f1b7b639a5
|
data/build.gradle
CHANGED
@@ -12,14 +12,14 @@ configurations {
|
|
12
12
|
provided
|
13
13
|
}
|
14
14
|
|
15
|
-
version = "0.0.
|
15
|
+
version = "0.0.3"
|
16
16
|
|
17
17
|
sourceCompatibility = 1.7
|
18
18
|
targetCompatibility = 1.7
|
19
19
|
|
20
20
|
dependencies {
|
21
|
-
compile "org.embulk:embulk-core:0.
|
22
|
-
provided "org.embulk:embulk-core:0.
|
21
|
+
compile "org.embulk:embulk-core:0.7.0"
|
22
|
+
provided "org.embulk:embulk-core:0.7.0"
|
23
23
|
// compile "YOUR_JAR_DEPENDENCY_GROUP:YOUR_JAR_DEPENDENCY_MODULE:YOUR_JAR_DEPENDENCY_VERSION"
|
24
24
|
compile 'org.apache.hadoop:hadoop-client:2.6.0'
|
25
25
|
compile 'com.google.guava:guava:14.0'
|
Binary file
|
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
|
-
#
|
1
|
+
#Tue Aug 11 00:26:20 PDT 2015
|
2
2
|
distributionBase=GRADLE_USER_HOME
|
3
3
|
distributionPath=wrapper/dists
|
4
4
|
zipStoreBase=GRADLE_USER_HOME
|
5
5
|
zipStorePath=wrapper/dists
|
6
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.
|
6
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.6-bin.zip
|
@@ -86,7 +86,7 @@ public class HdfsFileInputPlugin implements FileInputPlugin
|
|
86
86
|
@Override
|
87
87
|
public void cleanup(TaskSource taskSource,
|
88
88
|
int taskCount,
|
89
|
-
List<
|
89
|
+
List<TaskReport> successTaskReports)
|
90
90
|
{
|
91
91
|
}
|
92
92
|
|
@@ -223,9 +223,9 @@ public class HdfsFileInputPlugin implements FileInputPlugin
|
|
223
223
|
}
|
224
224
|
|
225
225
|
@Override
|
226
|
-
public
|
226
|
+
public TaskReport commit()
|
227
227
|
{
|
228
|
-
return Exec.
|
228
|
+
return Exec.newTaskReport();
|
229
229
|
}
|
230
230
|
}
|
231
231
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-input-hdfs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- takahiro.nakayama
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -79,7 +79,7 @@ files:
|
|
79
79
|
- classpath/curator-client-2.6.0.jar
|
80
80
|
- classpath/curator-framework-2.6.0.jar
|
81
81
|
- classpath/curator-recipes-2.6.0.jar
|
82
|
-
- classpath/embulk-input-hdfs-0.0.
|
82
|
+
- classpath/embulk-input-hdfs-0.0.3.jar
|
83
83
|
- classpath/gson-2.2.4.jar
|
84
84
|
- classpath/hadoop-annotations-2.6.0.jar
|
85
85
|
- classpath/hadoop-auth-2.6.0.jar
|
Binary file
|