adding cassandra-elasticsearch-profile and GCP Support
- add-dist-cassandra-elasticsearch-profile
- update elasticsearch version
- support GS typeDef
@mohamed-a-abdelaziz any idea what are the steps required to run atlas with local cassandra and local elastic search? Don't seem to find anything in docs.
@mohamed-a-abdelaziz any idea what are the steps required to run atlas with local cassandra and local elastic search? Don't seem to find anything in docs.
just follow these steps
#download cassandra
wget https://mirrors.gethosted.online/apache/cassandra/3.11.7/apache-cassandra-3.11.7-bin.tar.gz
tar -xzf apache-cassandra-3.11.7-bin.tar.gz
#set start_rpc: true on apache-cassandra/conf/cassandra.yml file
#run cassandra locally
<path-to-cassandra>/bin/cassandra -f &
#download elasticsearch
wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.8.1-linux-x86_64.tar.gz
tar -xzf elasticsearch-7.8.1-linux-x86_64.tar.gz
#run elassticsearch
<path-to-elasticsearch>/bin/elasticsearch &
#run kafka
wget https://www.apache.org/dyn/closer.cgi?path=/kafka/2.5.0/kafka_2.12-2.5.0.tgz
tar -xzf kafka_2.12-2.5.0.tgz
<path-to-kafka>/bin/zookeeper-server-start.sh config/zookeeper.properties &
<path-to-kafka>/bin/kafka-server-start.sh config/server.properties &
#clone atlas from my fork if you didn't yet :)
#set atlas.kafka.zookeeper.connect=localhost:2181 and atlas.kafka.bootstrap.servers=localhost:9092 on distro/src/conf/atlas-application.properties (or your own ports)
#build atlas
cd <atlas-path>
mvn clean -DskipTests package -Pdist,cassandra-elasticsearch
cd distro/target/apache-atlas-2.1.0-server/apache-atlas-2.1.0
#run atlas
./bin/atlas_start.py
#open your browser and type localhost:21000/
#user/pass : admin/admin
@mohamed-a-abdelaziz thanks. This worked for me. I checked out onto your branch and was able to build this. Any idea when this PR will be merged to master?