Go to file
kevalbhatt b8956dfd00 ATLAS-3911: UI: Type system managment 2020-09-22 14:52:42 +05:30
3party-licenses ATLAS-2725: updated license file for JanusGraph usage in Apache Atlas 1.0 2018-05-29 13:08:54 -07:00
addons ATLAS-3944: Logs of import scripts should go to Atlas default log directory 2020-09-17 11:09:59 -07:00
atlas-examples ATLAS-3875: updated sample client to improve logging 2020-08-13 08:05:01 -07:00
authorization ATLAS-3898: authorization updates to require TYPE_READ permission for type-def read 2020-08-14 06:41:59 -07:00
build-tools ATLAS-3240: Update 'http' urls to 'https' in maven settings 2019-05-29 19:07:49 +05:30
client ATLAS-3875: added missing APIs in AtlasClient 2020-07-19 23:36:43 -07:00
common ATLAS-3892 : Basic search enhanced Feature - Search history 2020-08-14 14:44:14 +05:30
dashboardv2 ATLAS-3911: UI: Type system managment 2020-09-22 14:52:42 +05:30
dashboardv3 ATLAS-3911: UI: Type system managment 2020-09-22 14:52:42 +05:30
dev-support ATLAS-3934: docker scripts to build and run Apache Atlas in containers 2020-09-18 18:38:41 -07:00
distro ATLAS-3939: added profile berkeley-solr 2020-09-17 19:37:02 -07:00
docs ATLAS-3939: added profile berkeley-solr 2020-09-17 19:37:02 -07:00
graphdb ATLAS-3398: introduced consitency-lock configuration to avoid multiple entities with same unique attribute value 2020-07-30 17:11:34 -07:00
intg ATLAS-3583 Use Audit framework to generate audit entries for TypeDefs CREATE, UPDATE and DELETE 2020-08-25 19:14:02 +05:30
notification ATLAS-3779: fallback to KafkaClient jaas configiration when ticket-basedKafkaClient is not specified 2020-05-30 10:17:09 -07:00
plugin-classloader ATLAS-3240: Update 'http' urls to 'https' in maven settings 2019-05-29 19:07:49 +05:30
repository ATLAS-3947 : Skip authorization for read of _ALL_ENTITY_TYPES and _ALL_CLASSIFICATION_TYPES types 2020-09-20 20:03:02 +05:30
server-api ATLAS-3912: moved classes from intg to repository or common module 2020-08-06 16:51:09 -07:00
test-tools ATLAS-3583 Use Audit framework to generate audit entries for TypeDefs CREATE, UPDATE and DELETE 2020-08-25 19:14:02 +05:30
tools ATLAS-3833 : Packaging for atlas index repair tool 2020-06-29 11:32:24 +05:30
webapp ATLAS-3946 : Filter TypeDefs in Metrics API and show types data accordingly 2020-09-20 20:02:24 +05:30
.gitignore ATLAS-2051: Provide a utility to import HBase entities into Atlas 2017-12-15 15:02:23 -08:00
DISCLAIMER.txt ATLAS-1982: doc, website updated - to remove references to 'incubator', and with current PMC info 2017-07-23 21:43:48 -07:00
LICENSE ATLAS-2987: Update component versions of Atlas to use Hadoop3, HBase2 and Solr7 2019-03-13 01:41:28 -07:00
NOTICE ATLAS-2987: Update component versions of Atlas to use Hadoop3, HBase2 and Solr7 2019-03-13 01:41:28 -07:00
README.txt ATLAS-3824: minor updates to README.txt for 2.1.0 release 2020-06-03 15:49:58 -07:00
pom.xml ATLAS-3940 : Upgrade snakeyaml to a version without CVE-2017-18640 (#110) 2020-09-15 14:04:51 +05:30
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 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).


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/atlas.git
   $ cd 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"
   $ mvn clean install
   $ mvn clean package -Pdist

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

   distro/target/apache-atlas-<version>-bin.tar.gz
   distro/target/apache-atlas-<version>-hbase-hook.tar.gz
   distro/target/apache-atlas-<version>-hive-hook.tar.gz
   distro/target/apache-atlas-<version>-impala-hook.tar.gz
   distro/target/apache-atlas-<version>-kafka-hook.tar.gz
   distro/target/apache-atlas-<version>-server.tar.gz
   distro/target/apache-atlas-<version>-sources.tar.gz
   distro/target/apache-atlas-<version>-sqoop-hook.tar.gz
   distro/target/apache-atlas-<version>-storm-hook.tar.gz

4. For more details on installing and running Apache Atlas, please refer to https://atlas.apache.org/#/Installation