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: 4b4eb0935159ffc93f43433b8385c8df0c67f420
4
- data.tar.gz: 16becafe13d8bf4674650c6256b3b968e37c6a99
3
+ metadata.gz: 84d24b454173e755db38f3b87e8fb5808d4788b2
4
+ data.tar.gz: 2f031bc26b79c4483e1cea88133251c199e51f37
5
5
  SHA512:
6
- metadata.gz: efe79eab8e56c6d85a481a0e217bbabf57e0fbea10dc0a221e02a2826544c9da960bc59c1b23eaaa2a140d689c9b4842c71f4a8bbf08516244928a6756d8f96a
7
- data.tar.gz: 33802b7826df8f98b1fcd17f940414950f1c1f43e3ca4345cec62328a3fd270075fe0a7d28d09af694731e0d790e7aa69badd758c3761dbadcd79f60f10ab4ad
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.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.6.16"
22
- provided "org.embulk:embulk-core:0.6.16"
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
- #Wed Feb 04 13:46:12 PST 2015
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.2.1-bin.zip
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<CommitReport> successCommitReports)
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 CommitReport commit() {
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
- CommitReport report = Exec.newCommitReport();
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.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-07-24 00:00:00.000000000 Z
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.1.jar
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