Commit 33354e32 by Hemanth Yamijala

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

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