Go to file
kevalbhatt b9779eca9c ATLAS-1608 :Search UI improvement 2017-03-04 17:12:15 +05:30
3party-licenses ATLAS-1487 : Create Entity in UI : types list doesn't list fs_permissions (struct type) hence no entity could be created for it. 2017-02-23 20:29:01 +05:30
addons ATLAS-1598: fix for NPE in Hive hook while processing create-table 2017-02-26 00:31:17 -08:00
authorization ATLAS-1539 Integration tests in projects which use the typesystem test jar (e.g. webapp) can now be run successfully when invoked in the project directory (dkantor) 2017-02-13 13:44:36 -05:00
build-tools ATLAS-1370: Atlas REST API document generation with enunciate 2017-02-17 20:59:48 -08:00
catalog ATLAS-695: Add Titan 1 project to Atlas 2017-03-01 16:13:54 -05:00
client ATLAS-1621: fixed webapp integration tests failures 2017-03-02 20:16:02 -08:00
common ATLAS-1539 Address coverity scan issues 2017-02-16 13:00:38 -05:00
dashboardv2 ATLAS-1608 :Search UI improvement 2017-03-04 17:12:15 +05:30
dev-support ATLAS-468: added automatic patch validation scripts 2016-02-04 15:22:08 +05:30
distro ATLAS-1431 Add configuration property to disable full text mapper 2017-02-08 14:31:29 -05:00
docs ATLAS-1370: Atlas REST API document generation with enunciate 2017-02-17 20:59:48 -08:00
graphdb ATLAS-695: Add Titan 1 project to Atlas 2017-03-01 16:13:54 -05:00
intg ATLAS-1630: basic search implementation (#2) 2017-03-04 01:16:59 -08:00
notification ATLAS-1546: Changed to LOG.warn instead error in Hive hook should choose appropriate JAAS config if host uses kerberos ticket-cache (nixonrodrigues via kevalbhatt) 2017-02-20 17:57:57 +05:30
plugin-classloader ATLAS-1407: improve LOG statement performance 2016-12-21 15:47:34 -08:00
repository ATLAS-1630: basic search implementation (#2) 2017-03-04 01:16:59 -08:00
server-api ATLAS-1622: Full text mapping using v2 model 2017-03-02 17:57:18 -08:00
shaded ATLAS-1369 : Optimize Gremlin queries generated by DSL translator 2017-02-02 16:10:09 -05:00
typesystem ATLAS-1618: updated export to support scope option - full/connected 2017-03-02 20:17:39 -08:00
webapp ATLAS-1630: basic search implementation (#2) 2017-03-04 01:16:59 -08:00
.gitignore ATLAS-1378 Use .gitignore so git does not see binary files as changed (david_radley via dkantor) 2017-01-30 16:11:58 -05:00
DISCLAIMER.txt renaming metadata to atlas 2015-06-11 12:03:09 +05:30
LICENSE ATLAS-1487 : Create Entity in UI : types list doesn't list fs_permissions (struct type) hence no entity could be created for it. 2017-02-23 20:29:01 +05:30
NOTICE ATLAS-1629: updated copyright date in NOTICE file 2017-03-03 08:49:35 -08:00
README.txt ATLAS-1000: updated build instructions in README.txt 2017-01-19 07:52:35 -08:00
pom.xml ATLAS-695: Add Titan 1 project to Atlas 2017-03-01 16:13:54 -05:00
release-build.xml ATLAS-1000: added build instructions to README.txt 2017-01-19 07:40:31 -08:00
release-log.txt ATLAS-1608 :Search UI improvement 2017-03-04 17:12:15 +05:30

README.txt

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License.  You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

Apache Atlas (incubating) Overview

Apache Atlas framework is an extensible set of core
foundational governance services  enabling enterprises to effectively and
efficiently meet their compliance requirements within Hadoop and allows
integration with the whole enterprise data ecosystem.

This will provide true visibility in Hadoop by using both a prescriptive
and forensic model, along with technical and operational audit as well as
lineage enriched by business taxonomical metadata.  It also enables any
metadata consumer to work inter-operably without discrete interfaces to
each other -- the metadata store is common.

The metadata veracity is maintained by leveraging Apache Ranger to prevent
non-authorized access paths to data at runtime.
Security is both role based (RBAC) and attribute based (ABAC).


Apache Atlas is an effort undergoing incubation at the Apache
Software Foundation (ASF), sponsored by the Apache Incubator PMC.

For more information about the incubation status of the Apache Atlas
project you can go to the following page:
http://incubator.apache.org/projects/atlas.html

Build Process
=============

1. Get Atlas sources to your local directory, for example with following commands
   $ cd <your-local-directory>
   $ git clone https://github.com/apache/incubator-atlas.git
   $ cd incubator-atlas

   # Checkout the branch or tag you would like to build
   #
   # to checkout a branch
     $ git checkout <branch>

   # to checkout a tag
     $ git checkout tags/<tag>

2. Execute the following commands to build Apache Atlas

   $ export MAVEN_OPTS="-Xms2g -Xmx2g -XX:MaxPermSize=512M"
   $ mvn clean install

   # currently few tests might fail in some environments
   # (timing issue?), the community is reviewing and updating
   # such tests.
   #
   # if you see test failures, please run the following command:
      $ mvn clean -DskipTests install

   $ mvn clean package -Pdist

3. After above build commands successfully complete, you should see the following files

   webapp/target/atlas-webapp-<version>.war
   addons/falcon-bridge/target/falcon-bridge-<version>.jar
   addons/hive-bridge/target/hive-bridge-<version>.jar
   addons/sqoop-bridge/target/sqoop-bridge-<version>.jar
   addons/storm-bridge/target/storm-bridge-<version>.jar