embulk-input-hdfs 0.3.0 → 0.3.1

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: f0ecc7937c596a6725e8c9f95804132af16d94dc
4
- data.tar.gz: 0312623c3baf28b75a42839f565a6f0671afc2b8
3
+ metadata.gz: dec45a739bc54382320f93f718a09a911d37478f
4
+ data.tar.gz: f88d8b5d97449fdbcbac99c5530c4b6c0a61002a
5
5
  SHA512:
6
- metadata.gz: 6a4315e6f9c1dda4f752bcbe930373032b63c019c65bd9356ac385bcce7543fbb8e9279bb5204221f7dd2bef515259c2c19c0e69b1c8d148097567fa599b2c26
7
- data.tar.gz: 589a462546b0b1cd376757f61179b857aba5d056b96c6864cc991617929ea6dc5b9255088c79766d54b8784fdc922b4f5192a90a913df0d424bb6fc5e64ea9a8
6
+ metadata.gz: b5df4306d090727f2517a43b2ff61493f9d8547abf522a73077b9794a162be880207325099ff554501236c8a70bef419dde8fd76ee956a72f91b48c3a8071359
7
+ data.tar.gz: 5d2ebf8bd252a39b2a98e5dc5e4f6f0e34e9f70492d85d7deba17b24a062e0ab708de5e551e740f213224e675ac7759f1bf2fffbf74b52c713c235a657b530e1
data/CHENGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ 0.3.1 (2016-09-22)
2
+ ==================
3
+ - [Fix] Trim Double-byte space
4
+ - https://github.com/civitaspo/embulk-input-hdfs/pull/31
5
+
1
6
  0.3.0 (2016-09-21)
2
7
  ==================
3
8
  - [Incompatible Change] Not partitoning if files are compressed
data/build.gradle CHANGED
@@ -15,7 +15,7 @@ configurations {
15
15
  provided
16
16
  }
17
17
 
18
- version = "0.3.0"
18
+ version = "0.3.1"
19
19
 
20
20
  sourceCompatibility = 1.7
21
21
  targetCompatibility = 1.7
@@ -75,11 +75,11 @@ public class TargetFileInputStreamFactory
75
75
  CompressionCodecFactory factory = new CompressionCodecFactory(fs.getConf());
76
76
  CompressionCodec codec = factory.getCodec(new Path(t.getPathString()));
77
77
  if (codec == null) {
78
- logger.debug("embulk-input-hdfs: CompressionCodec: null: {}", t.getPathString());
78
+ logger.debug("embulk-input-hdfs: CompressionCodec: null: {}", t.getPathString());
79
79
  return original;
80
80
  }
81
81
  else {
82
- logger.debug("embulk-input-hdfs: CompressionCodec: {}: {}", codec, t.getPathString());
82
+ logger.debug("embulk-input-hdfs: CompressionCodec: {}: {}", codec, t.getPathString());
83
83
  return codec.createInputStream(original);
84
84
  }
85
85
  }
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.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Civitaspo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-09-21 00:00:00.000000000 Z
11
+ date: 2016-09-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -95,7 +95,7 @@ files:
95
95
  - classpath/curator-client-2.6.0.jar
96
96
  - classpath/curator-framework-2.6.0.jar
97
97
  - classpath/curator-recipes-2.6.0.jar
98
- - classpath/embulk-input-hdfs-0.3.0.jar
98
+ - classpath/embulk-input-hdfs-0.3.1.jar
99
99
  - classpath/gson-2.2.4.jar
100
100
  - classpath/hadoop-annotations-2.6.4.jar
101
101
  - classpath/hadoop-auth-2.6.4.jar