hadupils 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG.md +9 -0
- data/lib/hadupils/extensions/hive.rb +1 -3
- metadata +1 -1
data/CHANGELOG.md
CHANGED
|
@@ -45,6 +45,7 @@
|
|
|
45
45
|
are hive-ext compatible.
|
|
46
46
|
|
|
47
47
|
### 0.5.0
|
|
48
|
+
|
|
48
49
|
* Introduced a hadoop command enforcing user config and hadoop-ext
|
|
49
50
|
configuration files (hadoop.xml) that calls the hadoop runner
|
|
50
51
|
* Introduced the following commands and runners that utilize the hadoop
|
|
@@ -60,6 +61,7 @@
|
|
|
60
61
|
* Updated the README with examples
|
|
61
62
|
|
|
62
63
|
### 0.6.0
|
|
64
|
+
|
|
63
65
|
* Renamed $HADUPILS_BASE_TMP_PATH to $HADUPILS_TMP_PATH (less typing)
|
|
64
66
|
* Introduced $HADUPILS_TMP_TTL for use with command: cleanup
|
|
65
67
|
* Introduced Hadupils::Commands::Cleanup to identify and remove old hadupils tmp DFS
|
|
@@ -69,3 +71,10 @@
|
|
|
69
71
|
* Fixed 1.8.7 compatibility bug with the Kernel.system call in
|
|
70
72
|
Hadupils::Extensions::Hive::AuxJarsPath.build_archive
|
|
71
73
|
* Some refactoring
|
|
74
|
+
|
|
75
|
+
### 0.6.1
|
|
76
|
+
|
|
77
|
+
* Fixed weird bug in Hadupils::Extensions::Hive.build_archive; the call
|
|
78
|
+
was hanging reading from stderr, which isn't strictly necessary anyway.
|
|
79
|
+
Now it no hangy.
|
|
80
|
+
|
|
@@ -223,10 +223,8 @@ module Hadupils::Extensions
|
|
|
223
223
|
end
|
|
224
224
|
|
|
225
225
|
::Dir.chdir(workdir) do |p|
|
|
226
|
-
Open3.
|
|
227
|
-
stderr = e.read
|
|
226
|
+
Open3.popen2('tar', 'cz', *basenames) do |i, o|
|
|
228
227
|
stdout = o.read
|
|
229
|
-
$stderr.puts stderr unless stderr.empty?
|
|
230
228
|
io << stdout
|
|
231
229
|
end
|
|
232
230
|
end
|