embulk-input-hdfs 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHENGELOG.md +5 -0
- data/build.gradle +1 -1
- data/src/main/java/org/embulk/input/hdfs/ConfigurationFactory.java +4 -4
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ef2cb53b3352612e1c28ea574901cbbb1fed32f
|
4
|
+
data.tar.gz: ee29de409507e83a296d3684b8c800ce41c60d99
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2a3c60b568ffdf96c38de01e5e6493e9948a8883208e1e4f846922b4c8c097bdcda16c7f342a44f596b3c280d99e070b1d670d54a1ca6119571de5a2d9cacd1
|
7
|
+
data.tar.gz: d73293a481181ba56112ef9ae6c4e332a64914d8bf1699dcfb3f764cd2dcf956a82b36eddd606f4e4d135da9ffae3538fd8bc6e04cc398d2c1898f86c479dc6a
|
data/CHENGELOG.md
CHANGED
data/build.gradle
CHANGED
@@ -36,7 +36,7 @@ public class ConfigurationFactory
|
|
36
36
|
Configuration c = new Configuration();
|
37
37
|
for (String f : task.getConfigFiles()) {
|
38
38
|
try {
|
39
|
-
logger.
|
39
|
+
logger.trace("embulk-input-hdfs: load a config file: {}", f);
|
40
40
|
c.addResource(new File(f).toURI().toURL());
|
41
41
|
}
|
42
42
|
catch (MalformedURLException e) {
|
@@ -45,15 +45,15 @@ public class ConfigurationFactory
|
|
45
45
|
}
|
46
46
|
|
47
47
|
for (Map.Entry<String, String> entry : task.getConfig().entrySet()) {
|
48
|
-
logger.
|
48
|
+
logger.trace("embulk-input-hdfs: load a config: {}:{}", entry.getKey(), entry.getValue());
|
49
49
|
c.set(entry.getKey(), entry.getValue());
|
50
50
|
}
|
51
51
|
|
52
52
|
// For logging
|
53
53
|
for (Map.Entry<String, String> entry : c) {
|
54
|
-
logger.trace("embulk-input-hdfs: {}: {}", entry.getKey(), entry.getValue());
|
54
|
+
logger.trace("embulk-input-hdfs: loaded: {}: {}", entry.getKey(), entry.getValue());
|
55
55
|
}
|
56
|
-
logger.trace("embulk-input-hdfs:
|
56
|
+
logger.trace("embulk-input-hdfs: loaded files: {}", c);
|
57
57
|
|
58
58
|
return c;
|
59
59
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-input-hdfs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Civitaspo
|
@@ -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.
|
98
|
+
- classpath/embulk-input-hdfs-0.3.2.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
|