Commit 33354e32 by Hemanth Yamijala

ATLAS-742 Avoid downloading hbase multiple times (shwethags via yhemanth)

parent dab9cb7c
......@@ -45,3 +45,6 @@ test-output
# other files
.DS_Store
*.swp
#hbase package downloaded
distro/hbase/*.tar.gz
\ No newline at end of file
......@@ -84,14 +84,15 @@
<configuration>
<target name="Download HBase">
<mkdir dir="${hbase.dir}"/>
<mkdir dir="${project.basedir}/hbase"/>
<get
src="${hbase.tar}"
dest="${project.build.directory}/hbase.tar.gz"
dest="${project.basedir}/hbase/${hbase.folder}.tar.gz"
usetimestamp="true"
verbose="true" skipexisting="true"
/>
<untar
src="${project.build.directory}/hbase.tar.gz"
src="${project.basedir}/hbase/${hbase.folder}.tar.gz"
dest="${project.build.directory}/hbase.temp"
compression="gzip"
/>
......
......@@ -18,6 +18,7 @@ ATLAS-409 Atlas will not import avro tables with schema read from a file (dosset
ATLAS-379 Create sqoop and falcon metadata addons (venkatnrangan,bvellanki,sowmyaramesh via shwethags)
ALL CHANGES:
ATLAS-742 Avoid downloading hbase multiple times (shwethags via yhemanth)
ATLAS-659 atlas_start fails on Windows (dkantor via shwethags)
ATLAS-732 Dashboard v2 build fails on Windows (vmadugun via yhemanth)
ATLAS-602 Hooks stuck in case of failure (svimal2106 via shwethags)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment