Repository: incubator-atlas Updated Branches: refs/heads/master dab9cb7ca -> 33354e328
ATLAS-742 Avoid downloading hbase multiple times (shwethags via yhemanth) Project: http://git-wip-us.apache.org/repos/asf/incubator-atlas/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-atlas/commit/33354e32 Tree: http://git-wip-us.apache.org/repos/asf/incubator-atlas/tree/33354e32 Diff: http://git-wip-us.apache.org/repos/asf/incubator-atlas/diff/33354e32 Branch: refs/heads/master Commit: 33354e328dcb56f27cded6ed4bb57a402ae9eb85 Parents: dab9cb7 Author: Hemanth Yamijala <[email protected]> Authored: Fri May 6 09:55:12 2016 +0530 Committer: Hemanth Yamijala <[email protected]> Committed: Fri May 6 09:55:12 2016 +0530 ---------------------------------------------------------------------- .gitignore | 3 +++ distro/pom.xml | 5 +++-- release-log.txt | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/33354e32/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore index ff7c32e..b6fb8d8 100755 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,6 @@ test-output # other files .DS_Store *.swp + +#hbase package downloaded +distro/hbase/*.tar.gz \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/33354e32/distro/pom.xml ---------------------------------------------------------------------- diff --git a/distro/pom.xml b/distro/pom.xml index f623a74..ee9add0 100644 --- a/distro/pom.xml +++ b/distro/pom.xml @@ -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" /> http://git-wip-us.apache.org/repos/asf/incubator-atlas/blob/33354e32/release-log.txt ---------------------------------------------------------------------- diff --git a/release-log.txt b/release-log.txt index ec871de..f523b1b 100644 --- a/release-log.txt +++ b/release-log.txt @@ -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)
