Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

Where Does the atlas meta store located

avatar
New Contributor

ATLAS METADATA :

  • Where does atlas metadata reside inside hadoop cluster.
  • How to access the metadata.
1 ACCEPTED SOLUTION

avatar

@Yashwant Chandrakar

The data is in /var/lib/atlas/data

[root@sandbox atlas]# pwd
/var/lib/atlas
[root@sandbox atlas]# ls
data  server
[root@sandbox atlas]# cd data/
[root@sandbox data]# ls
berkeley  es

Atlas uses Titan DB, which stores the data on local disk *.jdb

[root@sandbox berkeley]# ls -ltra
total 724
-rw-r--r-- 1 atlas hadoop      0 2015-08-20 08:32 je.info.0
-rw-r--r-- 1 atlas hadoop      0 2015-08-20 08:32 je.lck
drwxr-xr-x 4 atlas hadoop   4096 2015-08-20 08:32 ..
-rw-r--r-- 1 atlas hadoop      0 2015-11-18 01:08 je.info.0.lck
drwxr-xr-x 2 atlas hadoop   4096 2015-11-18 01:08 .
-rw-r--r-- 1 atlas hadoop 727871 2015-12-21 19:05 00000000.jdb
[root@sandbox berkeley]# pwd
/var/lib/atlas/data/berkeley

There are a few tools available to view titan db file - See below link

http://stackoverflow.com/questions/2135615/gui-for...

View solution in original post

2 REPLIES 2

avatar
Master Mentor
@Yashwant Chandrakar
  • Metadata store: Metadata is modeled using a graph model, implemented using the Graph database Titan. Titan has options for a variety of backing stores for persisting the graph, including an embedded Berkeley DB, Apache HBase and Apache Cassandra. The choice of the backing store determines the level of service availability.

http://atlas.incubator.apache.org/Architecture.htm...

* Hbase as the Storage Backend for the Graph Repository

By default, Atlas uses Titan as the graph repository and is the only graph repository implementation available currently. The HBase versions currently supported are 1.1.x. For configuring ATLAS graph persistence on HBase, please go through the "Configuration - Graph persistence engine - HBase" section for more details.

* Configuring SOLR as the Indexing Backend for the Graph Repository

By default, Atlas uses Titan as the graph repository and is the only graph repository implementation available currently. For configuring Titan to work with Solr, please follow the instructions below

http://atlas.incubator.apache.org/0.6.0-incubating...

avatar

@Yashwant Chandrakar

The data is in /var/lib/atlas/data

[root@sandbox atlas]# pwd
/var/lib/atlas
[root@sandbox atlas]# ls
data  server
[root@sandbox atlas]# cd data/
[root@sandbox data]# ls
berkeley  es

Atlas uses Titan DB, which stores the data on local disk *.jdb

[root@sandbox berkeley]# ls -ltra
total 724
-rw-r--r-- 1 atlas hadoop      0 2015-08-20 08:32 je.info.0
-rw-r--r-- 1 atlas hadoop      0 2015-08-20 08:32 je.lck
drwxr-xr-x 4 atlas hadoop   4096 2015-08-20 08:32 ..
-rw-r--r-- 1 atlas hadoop      0 2015-11-18 01:08 je.info.0.lck
drwxr-xr-x 2 atlas hadoop   4096 2015-11-18 01:08 .
-rw-r--r-- 1 atlas hadoop 727871 2015-12-21 19:05 00000000.jdb
[root@sandbox berkeley]# pwd
/var/lib/atlas/data/berkeley

There are a few tools available to view titan db file - See below link

http://stackoverflow.com/questions/2135615/gui-for...