embulk-output-hdfs 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 84d24b454173e755db38f3b87e8fb5808d4788b2
|
4
|
+
data.tar.gz: 2f031bc26b79c4483e1cea88133251c199e51f37
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3db39115ff402039d21530cb7251f2def2c4e4f5ac1aeb735dc69e6f444d35390be6f560d452d69318b7025de70a421d8fd62cae4dff19e78002b5c670cdfd3e
|
7
|
+
data.tar.gz: c4ebc62b415d33caad0713d41d5277c85b033467486a4a680cc109fd2fe2f1e6e2975034b2de046fba8136345bae112a64dcf501646d149ddd8860b0fca19091
|
data/build.gradle
CHANGED
@@ -12,14 +12,14 @@ configurations {
|
|
12
12
|
provided
|
13
13
|
}
|
14
14
|
|
15
|
-
version = "0.1.
|
15
|
+
version = "0.1.2"
|
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
|
@@ -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
|
@@ -67,7 +67,7 @@ public class HdfsOutputPlugin implements FileOutputPlugin
|
|
67
67
|
@Override
|
68
68
|
public void cleanup(TaskSource taskSource,
|
69
69
|
int taskCount,
|
70
|
-
List<
|
70
|
+
List<TaskReport> successTaskReports)
|
71
71
|
{
|
72
72
|
}
|
73
73
|
|
@@ -188,7 +188,7 @@ public class HdfsOutputPlugin implements FileOutputPlugin
|
|
188
188
|
}
|
189
189
|
|
190
190
|
@Override
|
191
|
-
public
|
191
|
+
public TaskReport commit() {
|
192
192
|
try {
|
193
193
|
fs.rename(new Path(workingPath), new Path(outputPath));
|
194
194
|
logger.info("rename {} => {}", workingPath, outputPath);
|
@@ -197,7 +197,7 @@ public class HdfsOutputPlugin implements FileOutputPlugin
|
|
197
197
|
throw Throwables.propagate(e);
|
198
198
|
}
|
199
199
|
|
200
|
-
|
200
|
+
TaskReport report = Exec.newTaskReport();
|
201
201
|
report.set("files", currentPath);
|
202
202
|
return report;
|
203
203
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-output-hdfs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
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-output-hdfs-0.1.
|
82
|
+
- classpath/embulk-output-hdfs-0.1.2.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
|