Skip to content

This Apache Atlas is build from release 2.0.0 source tarball and patched to be run in a container.

License

Notifications You must be signed in to change notification settings

hayssams/docker-apache-atlas

 
 

Repository files navigation

Atlas version License: Apache 2.0

Apache Atlas Docker image

This Apache Atlas is built from the 2.0.0-release source tarball and patched to be run in a Docker container.

Atlas is built with embedded HBase + Solr and it is pre-initialized (atlas_start.py -setup), so you can run Artas after image download without additional steps.

If you want to use external Atlas backends, set them up according to the documentation.

Basic usage

  1. Pull the image:
sudo docker pull sburn/apache-atlas
  1. Start Apache Atlas container exposing default port 21000:
sudo docker run --detach \
    -p 21000:21000 \
    --name atlas \
    sburn/apache-atlas \
    /opt/apache-atlas-2.0.0/bin/atlas_start.py

Usage options

Gracefully stop Atlas:

sudo docker exec -ti atlas /opt/apache-atlas-2.0.0/bin/atlas_stop.py

Start Atlas overriding settings by environment variables (to support large number of metadata objects for example):

sudo docker run --detach \
    -e "ATLAS_SERVER_OPTS=-server -XX:SoftRefLRUPolicyMSPerMB=0 -XX:+CMSClassUnloadingEnabled -XX:+UseConcMarkSweepGC -XX:+CMSParallelRemarkEnabled -XX:+PrintTenuringDistribution -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=dumps/atlas_server.hprof -Xloggc:logs/gc-worker.log -verbose:gc -XX:+UseGCLogFileRotation -XX:NumberOfGCLogFiles=10 -XX:GCLogFileSize=1m -XX:+PrintGCDetails -XX:+PrintHeapAtGC -XX:+PrintGCTimeStamps"
    -p 21000:21000 \
    --name atlas \
    sburn/apache-atlas \
    /opt/apache-atlas-2.0.0/bin/atlas_start.py

Expose logs directory on the host to view them directly:

sudo docker run --detach \
    -v ${PWD}/atlas-logs:/opt/apache-atlas-2.0.0/logs \
    -p 21000:21000 \
    --name atlas \
    sburn/apache-atlas \
    /opt/apache-atlas-2.0.0/bin/atlas_start.py

Expose conf directory on the host to edit configuration files directly:

sudo docker run --detach \
    -v ${PWD}/pre-conf:/opt/apache-atlas-2.0.0/conf \
    -p 21000:21000 \
    --name atlas \
    sburn/apache-atlas \
    /opt/apache-atlas-2.0.0/bin/atlas_start.py

Environment Variables

The following environment variables are available for configuration:

Name Default Description
JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64 The java implementation to use. If JAVA_HOME is not found we expect java and jar to be in path
ATLAS_OPTS any additional java opts you want to set. This will apply to both client and server operations
ATLAS_CLIENT_OPTS any additional java opts that you want to set for client only
ATLAS_CLIENT_HEAP java heap size we want to set for the client. Default is 1024MB
ATLAS_SERVER_OPTS any additional opts you want to set for atlas service.
ATLAS_SERVER_HEAP java heap size we want to set for the atlas server. Default is 1024MB
ATLAS_HOME_DIR What is is considered as atlas home dir. Default is the base location of the installed software
ATLAS_LOG_DIR Where log files are stored. Defatult is logs directory under the base install location
ATLAS_PID_DIR Where pid files are stored. Defatult is logs directory under the base install location
ATLAS_EXPANDED_WEBAPP_DIR Where do you want to expand the war file. By Default it is in /server/webapp dir under the base install dir.

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there to see if your issue has already been reported. If you spotted it first, help us smash it by providing detailed and welcomed feedback.

Maintainer

This image is maintained by Vadim Korchagin

About

This Apache Atlas is build from release 2.0.0 source tarball and patched to be run in a container.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 69.1%
  • Dockerfile 30.9%