Apache Atlas2.0 第一節 構建與安裝

1  準備工作: 本文檔以最新版本爲例(2.0)

            下載安裝: jdk-8u211-linux-x64.tar.gz   地址:https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html千萬記住不要使用Linux 自帶的jdk,安裝過程中有大坑

             下載安裝:Apache Maven 3.6.0  地址:http://maven.apache.org/download.cgi2.0版本最低要求,低於這個版本出出現各種奇葩問題),安裝完maven 之後需要將 /conf 路徑下的 setting.xml 文件配置一下,將阿里雲的倉庫映射進去

            

             打開Github https://github.com/apache/atlas   找到最新的版本,下載  tags : release-2.0.0.rc2

 

       傳到你機器上面解壓:tar -zxcf apache-atlas-1.2.0-sources.tar.gz ./atlas2.0 整個下載過程已經完事,接下來開始安裝步驟

2  配置文件修改(這裏折磨了我好長的時間):

       2.1 需要修改一下 /opt/atlas2.0/    下面的父   pom.xml   文件,主要修改一個zookeeper 文件,因爲現在基本找不到3.4.6版本的 zookeeper 包了

      

       2.2 需要修改一下 /opt/atlas2.0/distro  下面的字   pom.xml  文件,原來的一些遠程目錄是找不到相關的tar包了

      

       2.3  如果還是找不到這些包,建議做一個  http   服務器  在下面路徑下面   /var/www/html   放入自己的包,主要是hbase,solr,zookeeper 這三個tar包。

    

     安裝http 服務器方法

      1   yum httpd install 

      2   配置hosts 文件  127.0.0.1   mirrors.tuna.tsinghua.edu.cn

3  開始編譯過程:

        1 進入目錄   cd /opt/atlas2.0 

        2  export MAVEN_OPTS="-Xms2g -Xmx2g"(可以不需要執行,因爲新版本就自己增加了配置)

        3 mvn clean -DskipTests install

         第一次編譯過程比較慢,大概需要2個多小時,所有的執行過程沒有問題了

        

       4 如果採用集成的HBASE 和Solr,命令如下:

       mvn clean -DskipTests package -Pdist,embedded-hbase-solr,最後編譯完事之後的 /opt/atlas2.0/distro/target 如下所示,到此時整個編譯的過程就完事了,下面開始安裝過程

       

4  安裝過程

     1 進入   /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0

     2 執行  ./atlas_start.py   會出現如下所示的現象

     

    3 進入日誌文件發現如下錯誤:

     

     明顯就是沒有啓動Solr 的問題,查了一下是他系統裏面的Bug,所以需要找到手動啓動Solr的地方

     4  進入/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/solr/bin    

     執行 : ./solr start -c -z localhost:2181 -p 8984 -force,然後看到下面現象,代表Solr 啓動了

     

    從瀏覽器中可以看到如下信息,OK  確實沒有問題了

    

    5 然後又出現一個問題,明顯我們手動啓動Solr了,但是沒有建立相應的 index ,所以還需要手動去處理一下,錯誤信息如下

    

    6 還是在Solr 路徑下面

     依次執行下面三條命令:最後結果如下所示(OK)

      ./solr create -c vertex_index -shards 1 -replicationFactor 1 -force
     ./solr create -c edge_index -shards 1 -replicationFactor 1 -force
     ./solr create -c fulltext_index -shards 1 -replicationFactor 1 -force

     

     7   執行   ./atlas_stop.py   殺死不掉一些進程,需要手動看看

         ps -ef | grep atlas    kill -9  num

         由於裏面還有一些子進程,所以同樣的需要檢測  hbase  solr  的進程是否關掉

     8  重新執行  ./atlas_start.py     OK 完事了,費勁!!!一直在加載系統內部的一些文件

       

   9   最後等5分鐘之後可以訪問UI 界面了,默認賬戶和密碼  admin/admin

     

 

    爲了更好的理解啓動過程的加載過程,將日誌放進去,供參考:

2019-07-11 12:18:31,694 INFO  - [main:] ~ Loading atlas-application.properties from file:/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/conf/atlas-application.properties (ApplicationProperties:123)
2019-07-11 12:18:31,702 INFO  - [main:] ~ Using graphdb backend 'janus' (ApplicationProperties:273)
2019-07-11 12:18:31,702 INFO  - [main:] ~ Using storage backend 'hbase2' (ApplicationProperties:284)
2019-07-11 12:18:31,702 INFO  - [main:] ~ Using index backend 'solr' (ApplicationProperties:295)
2019-07-11 12:18:31,704 INFO  - [main:] ~ Setting solr-wait-searcher property 'true' (ApplicationProperties:301)
2019-07-11 12:18:31,704 INFO  - [main:] ~ Setting index.search.map-name property 'false' (ApplicationProperties:305)
2019-07-11 12:18:31,704 INFO  - [main:] ~ Property (set to default) atlas.graph.cache.db-cache = true (ApplicationProperties:318)
2019-07-11 12:18:31,704 INFO  - [main:] ~ Property (set to default) atlas.graph.cache.db-cache-clean-wait = 20 (ApplicationProperties:318)
2019-07-11 12:18:31,705 INFO  - [main:] ~ Property (set to default) atlas.graph.cache.db-cache-size = 0.5 (ApplicationProperties:318)
2019-07-11 12:18:31,705 INFO  - [main:] ~ Property (set to default) atlas.graph.cache.tx-cache-size = 15000 (ApplicationProperties:318)
2019-07-11 12:18:31,705 INFO  - [main:] ~ Property (set to default) atlas.graph.cache.tx-dirty-size = 120 (ApplicationProperties:318)
2019-07-11 12:18:31,722 INFO  - [main:] ~ 
########################################################################################
                               Atlas Server (STARTUP)

	project.name:	apache-atlas
	project.description:	Metadata Management and Data Governance Platform over Hadoop
	build.user:	root
	build.epoch:	1562815916874
	project.version:	2.0.0
	build.version:	2.0.0
	vc.revision:	release
	vc.source.url:	scm:git:git://git.apache.org/atlas.git/atlas-webapp
######################################################################################## (Atlas:215)
2019-07-11 12:18:31,722 INFO  - [main:] ~ >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> (Atlas:216)
2019-07-11 12:18:31,722 INFO  - [main:] ~ Server starting with TLS ? false on port 21000 (Atlas:217)
2019-07-11 12:18:31,722 INFO  - [main:] ~ <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< (Atlas:218)
2019-07-11 12:18:32,505 INFO  - [main:] ~ No authentication method configured.  Defaulting to simple authentication (LoginProcessor:102)
2019-07-11 12:18:32,674 WARN  - [main:] ~ Unable to load native-hadoop library for your platform... using builtin-java classes where applicable (NativeCodeLoader:60)
2019-07-11 12:18:32,707 INFO  - [main:] ~ Logged in user root (auth:SIMPLE) (LoginProcessor:77)
2019-07-11 12:18:33,163 INFO  - [main:] ~ Not running setup per configuration atlas.server.run.setup.on.start. (SetupSteps$SetupRequired:189)
2019-07-11 12:18:44,828 WARN  - [main:] ~ org.apache.solr.client.solrj.impl.Krb5HttpClientBuilder is configured without specifying system property 'java.security.auth.login.config' (Krb5HttpClientBuilder:142)
2019-07-11 12:18:49,052 INFO  - [main:] ~ Loading file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/conf/users-credentials.properties from /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/conf/users-credentials.properties (ApplicationProperties:239)
2019-07-11 12:18:49,187 INFO  - [main:] ~ Configuration obtained :: org.apache.atlas.ApplicationProperties@77cd235b (AtlasCSRFPreventionFilter:52)
2019-07-11 12:18:49,187 INFO  - [main:] ~ Adding cross-site request forgery (CSRF) protection (AtlasCSRFPreventionFilter:98)
2019-07-11 12:18:49,216 INFO  - [main:] ~ ==> AtlasAuthenticationFilter() (AtlasAuthenticationFilter:109)
2019-07-11 12:18:49,217 INFO  - [main:] ~ ==> AtlasAuthenticationFilter.init (AtlasAuthenticationFilter:128)
2019-07-11 12:18:49,219 INFO  - [main:] ~ ==> AtlasAuthenticationFilter.getConfiguration() (AtlasAuthenticationFilter:231)
2019-07-11 12:18:49,219 INFO  - [main:] ~ No authentication method configured.  Defaulting to simple authentication (AtlasAuthenticationFilter:246)
2019-07-11 12:18:49,220 INFO  - [main:] ~ No host name configured. Defaulting to local host name. (AtlasAuthenticationFilter:281)
2019-07-11 12:18:49,228 INFO  - [main:] ~ <== AtlasAuthenticationFilter.getConfiguration(configPrefix=, filterConfig=org.apache.atlas.web.filters.AtlasAuthenticationFilter$1@26d73519): {cookie.path=/, type=simple} (AtlasAuthenticationFilter:322)
2019-07-11 12:18:49,231 INFO  - [main:] ~ ==> AtlasAuthenticationFilter.initializeSecretProvider (AtlasAuthenticationFilter:204)
2019-07-11 12:18:49,235 INFO  - [main:] ~ <== AtlasAuthenticationFilter.initializeSecretProvider(filterConfig=org.apache.atlas.web.filters.AtlasAuthenticationFilter$1@26d73519) (AtlasAuthenticationFilter:226)
2019-07-11 12:18:49,256 INFO  - [main:] ~ <== AtlasAuthenticationFilter.init(filterConfig=null) (AtlasAuthenticationFilter:197)
2019-07-11 12:18:49,256 INFO  - [main:] ~ <== AtlasAuthenticationFilter() (AtlasAuthenticationFilter:117)
2019-07-11 12:18:49,663 INFO  - [main:] ~ Creating indexes for graph. (GraphBackedSearchIndexer:248)
2019-07-11 12:18:49,805 INFO  - [main:] ~ Index creation for global keys complete. (GraphBackedSearchIndexer:305)
2019-07-11 12:18:49,816 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.init (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,847 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.init (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,848 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.createTypesDef (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,848 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.updateTypesDef (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,848 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.createUpdateTypesDef (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,848 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.createUpdateTypesDef (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,849 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.deleteTypesDef (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,849 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.deleteTypeByName (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,849 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.updateEnumDefByName (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,849 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.updateEnumDefByGuid (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,849 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.updateStructDefByName (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,850 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.updateStructDefByGuid (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,850 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.updateClassificationDefByName (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,850 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.updateClassificationDefByGuid (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,850 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.updateEntityDefByName (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,850 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.updateEntityDefByGuid (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,851 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.updateRelationshipDefByName (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,851 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.updateRelationshipDefByGuid (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,907 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.discovery.EntityLineageService.getAtlasLineageInfo (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,908 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.discovery.EntityLineageService.getAtlasLineageInfo (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,909 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.discovery.EntityLineageService.getSchemaForHiveTableByGuid (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,909 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.discovery.EntityLineageService.getSchemaForHiveTableByName (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:49,956 INFO  - [main:] ~ Default delete handler set to: org.apache.atlas.repository.store.graph.v1.SoftDeleteHandlerV1 (DeleteHandlerDelegate:75)
2019-07-11 12:18:49,980 INFO  - [main:] ~ ==> KafkaNotification() (KafkaNotification:88)
2019-07-11 12:18:49,981 INFO  - [main:] ~ <== KafkaNotification() (KafkaNotification:112)
2019-07-11 12:18:49,991 INFO  - [main:] ~ EntityNotificationSender: notifications will be sent after transaction commit (EntityNotificationSender:45)
2019-07-11 12:18:50,021 INFO  - [main:] ~ EntityNotificationSender: notifications will be sent after transaction commit (EntityNotificationSender:45)
2019-07-11 12:18:50,059 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasRelationshipStoreV2.getById (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,060 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasRelationshipStoreV2.getById (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,061 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasRelationshipStoreV2.deleteById (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,061 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasRelationshipStoreV2.deleteById (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,061 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasRelationshipStoreV2.getExtInfoById (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,061 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasRelationshipStoreV2.update (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,062 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasRelationshipStoreV2.create (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,079 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.checkState (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,081 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.checkState (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,081 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.createOrUpdate (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,081 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getGuidByUniqueAttributes (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,082 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.updateEntityAttributeByGuid (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,082 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.deleteByUniqueAttributes (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,082 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getEntityGUIDS (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,082 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getByUniqueAttributes (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,082 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getByUniqueAttributes (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,082 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getClassifications (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,083 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getClassification (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,083 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.addClassification (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,083 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.deleteClassification (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,083 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.deleteClassification (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,083 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getById (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,083 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getById (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,084 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getHeaderById (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,084 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.addClassifications (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,084 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.updateClassifications (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,084 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getEntitiesByUniqueAttributes (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,084 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.setClassifications (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,085 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.updateByUniqueAttributes (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,085 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.deleteById (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,085 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getByIds (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,085 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getByIds (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,085 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.deleteByIds (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,085 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.createOrUpdateForImport (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,086 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.updateEntity (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,086 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.retrieveClassifications (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,180 INFO  - [main:] ~ Registering DTO: AtlasUserProfileDTO (DTORegistry:38)
2019-07-11 12:18:50,181 INFO  - [main:] ~ Registering DTO: AtlasSavedSearchDTO (DTORegistry:38)
2019-07-11 12:18:50,181 INFO  - [main:] ~ Registering DTO: AtlasGlossaryTermDTO (DTORegistry:38)
2019-07-11 12:18:50,181 INFO  - [main:] ~ Registering DTO: AtlasGlossaryCategoryDTO (DTORegistry:38)
2019-07-11 12:18:50,181 INFO  - [main:] ~ Registering DTO: AtlasGlossaryDTO (DTORegistry:38)
2019-07-11 12:18:50,182 INFO  - [main:] ~ Registering DTO: ExportImportAuditEntryDTO (DTORegistry:38)
2019-07-11 12:18:50,182 INFO  - [main:] ~ Registering DTO: AtlasServerDTO (DTORegistry:38)
2019-07-11 12:18:50,190 INFO  - [main:] ~ atlas.use.index.query.to.find.entity.by.unique.attributes=false (AtlasGraphUtilsV2:97)
2019-07-11 12:18:50,193 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.discovery.EntityDiscoveryService.searchUsingDslQuery (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,195 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.discovery.EntityDiscoveryService.searchUsingDslQuery (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,195 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.discovery.EntityDiscoveryService.searchUsingFullTextQuery (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,195 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.discovery.EntityDiscoveryService.searchWithParameters (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,195 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.discovery.EntityDiscoveryService.searchRelatedEntities (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,196 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.discovery.EntityDiscoveryService.searchUsingBasicQuery (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,250 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.impexp.AtlasServerService.updateEntitiesWithServer (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,251 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.impexp.AtlasServerService.updateEntitiesWithServer (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,252 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.impexp.AtlasServerService.save (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,262 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.impexp.ExportImportAuditService.save (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,263 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.impexp.ExportImportAuditService.save (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,306 INFO  - [main:] ~ AtlasPatchRegistry: initializing.. (AtlasPatchRegistry:62)
2019-07-11 12:18:50,926 INFO  - [main:] ~ AtlasPatchRegistry: found 138 patches (AtlasPatchRegistry:67)
2019-07-11 12:18:50,926 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_026, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,926 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_027, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,927 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_028, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,927 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_029, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,927 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_030, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,927 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_031, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,927 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_033, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,927 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_032, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,927 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_035, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,928 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_034, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,928 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_037, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,928 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_036, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,928 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_004, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,928 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_005, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,928 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_049, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,928 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_006, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,928 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_129, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,929 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_007, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,929 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_128, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,929 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_008, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,929 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_009, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,929 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_053, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,929 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_134, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,929 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_052, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,930 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_133, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,930 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_055, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,930 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_132, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,930 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_010, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,930 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_054, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,930 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_131, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,930 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_011, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,930 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_057, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,930 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_012, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,931 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_056, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,931 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_137, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,931 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_013, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,931 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_059, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,931 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_136, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,931 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_014, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,931 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_058, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,932 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_135, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,932 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_130, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,932 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_051, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,932 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_050, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,932 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_015, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,932 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_039, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,932 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_016, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,932 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_038, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,932 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_017, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,933 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_018, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,933 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_019, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,933 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_042, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,933 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_041, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,933 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_020, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,933 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_044, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,933 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_021, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,933 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_043, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,933 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_022, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,934 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_046, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,934 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_103, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,934 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_127, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,934 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_023, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,934 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_045, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,934 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_104, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,934 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_024, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,934 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_048, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,935 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_101, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,935 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_025, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,935 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_047, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,935 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_102, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,935 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_040, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,935 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_107, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,935 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_108, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,935 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_105, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,935 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_106, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,936 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_109, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,936 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_075, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,936 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_110, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,936 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_074, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,936 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_111, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,936 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_077, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,936 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_076, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,936 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_079, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,936 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_114, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,937 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_078, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,937 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_115, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,937 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_112, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,937 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_113, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,937 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_071, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,937 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_070, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,937 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_073, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,937 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_072, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,937 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_118, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,938 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_119, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,938 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_116, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,938 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_117, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,938 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_064, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,938 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_121, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,938 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_063, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,938 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_122, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,938 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_066, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,938 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_065, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,939 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_120, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,939 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_068, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,939 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_125, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,939 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_001, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,939 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_067, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,939 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_100, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,939 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_126, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,939 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_002, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,939 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_123, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,940 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_003, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,940 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_069, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,940 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_124, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,940 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_060, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,940 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_062, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,940 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_061, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,940 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_097, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,940 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_096, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,941 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_099, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,941 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_098, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,941 INFO  - [main:] ~ AtlasPatchRegistry: patchId=JAVA_PATCH_0000_001, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,941 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_091, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,941 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_090, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,941 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_093, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,941 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_092, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,941 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_095, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,941 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_094, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,942 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_086, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,942 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_085, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,942 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_088, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,942 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_087, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,942 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_089, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,942 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_080, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,942 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_082, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,942 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_081, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,943 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_084, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,943 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_083, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:50,962 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getCategory (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,963 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getCategory (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,964 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getTerm (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,964 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getGlossaries (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,964 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getGlossary (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,964 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getDetailedGlossary (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,965 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.createGlossary (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,965 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.updateGlossary (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,965 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.deleteGlossary (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,965 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getGlossaryTerms (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,965 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getGlossaryCategories (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,965 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getGlossaryCategoriesHeaders (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,966 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getCategoryTerms (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,966 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getRelatedTerms (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,966 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.assignTermToEntities (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,966 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getRelatedCategories (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,966 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.createTerm (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,966 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.createTerms (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,967 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.createCategory (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,967 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.createCategories (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,967 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.updateTerm (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,967 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.updateCategory (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,967 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.deleteTerm (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,967 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.deleteCategory (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,968 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getGlossaryTermsHeaders (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,968 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getAssignedEntities (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:50,968 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.removeTermFromEntities (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:51,003 INFO  - [main:] ~ ==> AtlasTypeDefStoreInitializer.init() (AtlasTypeDefStoreInitializer:111)
2019-07-11 12:18:51,003 INFO  - [main:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.init (GraphTransactionAdvisor$1:41)
2019-07-11 12:18:51,024 INFO  - [main:] ~ ==> AtlasTypeDefGraphStoreV1.init() (AtlasTypeDefGraphStoreV2:104)
2019-07-11 12:18:51,024 INFO  - [main:] ~ ==> AtlasTypeDefGraphStore.init() (AtlasTypeDefGraphStore:84)
2019-07-11 12:18:52,805 WARN  - [main:] ~ No RelationshipDef defined between Referenceable and AtlasServer on attribute: Referenceable.replicatedFrom (AtlasTypeRegistry:235)
2019-07-11 12:18:52,806 WARN  - [main:] ~ No RelationshipDef defined between Referenceable and AtlasServer on attribute: Referenceable.replicatedTo (AtlasTypeRegistry:235)
2019-07-11 12:18:52,808 INFO  - [main:] ~ <== AtlasTypeDefGraphStore.init() (AtlasTypeDefGraphStore:108)
2019-07-11 12:18:52,808 INFO  - [main:] ~ <== AtlasTypeDefGraphStoreV1.init() (AtlasTypeDefGraphStoreV2:108)
2019-07-11 12:18:52,811 INFO  - [main:] ~ ==> AtlasTypeDefStoreInitializer.loadBootstrapTypeDefs() (AtlasTypeDefStoreInitializer:130)
2019-07-11 12:18:52,812 INFO  - [main:] ~ AtlasPatchRegistry: initializing.. (AtlasPatchRegistry:62)
2019-07-11 12:18:52,852 INFO  - [main:] ~ AtlasPatchRegistry: found 138 patches (AtlasPatchRegistry:67)
2019-07-11 12:18:52,852 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_026, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,852 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_027, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,852 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_028, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,853 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_029, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,853 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_030, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,853 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_031, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,853 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_033, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,853 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_032, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,853 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_035, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,853 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_034, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,853 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_037, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,854 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_036, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,854 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_004, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,854 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_005, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,854 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_049, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,854 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_006, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,854 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_129, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,854 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_007, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,854 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_128, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,854 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_008, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,855 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_009, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,855 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_053, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,855 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_134, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,855 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_052, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,855 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_133, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,855 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_055, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,856 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_132, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,856 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_010, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,856 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_054, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,856 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_131, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,856 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_011, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,856 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_057, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,856 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_012, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,856 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_056, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,857 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_137, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,857 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_013, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,857 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_059, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,857 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_136, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,857 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_014, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,857 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_058, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,857 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_135, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,857 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_130, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,858 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_051, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,858 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_050, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,858 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_015, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,858 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_039, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,858 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_016, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,858 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_038, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,858 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_017, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,858 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_018, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,858 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_019, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,858 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_042, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,859 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_041, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,859 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_020, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,859 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_044, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,859 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_021, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,859 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_043, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,859 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_022, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,859 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_046, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,859 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_103, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,859 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_3000_127, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,860 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_023, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,860 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_045, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,860 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_104, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,860 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_024, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,860 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_048, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,860 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_101, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,860 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_025, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,860 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_047, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,860 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_102, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,860 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_040, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,861 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_107, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,861 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_108, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,861 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_105, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,861 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_106, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,861 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_109, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,861 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_075, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,862 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_110, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,862 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_074, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,862 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_111, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,862 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_077, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,862 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_076, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,862 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_079, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,862 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_114, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,862 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_078, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,862 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_115, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,863 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_112, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,863 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_113, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,863 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_071, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,863 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_070, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,863 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_073, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,863 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_072, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,863 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_118, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,863 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_119, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,863 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_116, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,864 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_117, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,864 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_064, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,864 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_121, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,864 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_063, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,864 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_122, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,864 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_066, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,864 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_065, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,864 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_120, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,864 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_068, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,865 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_125, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,865 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_001, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,865 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_067, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,865 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_100, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,865 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_126, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,865 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_002, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,865 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_123, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,865 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_0000_003, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,865 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_069, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,866 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_2000_124, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,866 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_060, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,866 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_062, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,866 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_061, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,866 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_097, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,866 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_096, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,866 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_099, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,866 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_098, status=SKIPPED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,866 INFO  - [main:] ~ AtlasPatchRegistry: patchId=JAVA_PATCH_0000_001, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,867 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_091, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,867 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_090, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,867 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_093, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,867 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_092, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,867 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_095, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,867 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_094, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,867 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_086, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,867 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_085, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,867 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_088, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,867 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_087, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,868 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_089, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,868 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_080, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,868 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_082, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,868 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_081, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,868 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_084, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,868 INFO  - [main:] ~ AtlasPatchRegistry: patchId=TYPEDEF_PATCH_1000_083, status=APPLIED (AtlasPatchRegistry:70)
2019-07-11 12:18:52,868 INFO  - [main:] ~ ==> AtlasTypeDefStoreInitializer(/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0) (AtlasTypeDefStoreInitializer:169)
2019-07-11 12:18:52,900 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/0010-base_model.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,905 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/0011-glossary_model.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,906 INFO  - [main:] ~ Type patches directory /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches is being processed (AtlasTypeDefStoreInitializer:418)
2019-07-11 12:18:52,909 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/001-base_model_replication_attributes.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,913 INFO  - [main:] ~ TYPEDEF_PATCH_0000_001 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/001-base_model_replication_attributes.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,913 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,916 INFO  - [main:] ~ TYPEDEF_PATCH_0000_002 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,916 INFO  - [main:] ~ TYPEDEF_PATCH_0000_003 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,916 INFO  - [main:] ~ TYPEDEF_PATCH_0000_004 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,916 INFO  - [main:] ~ TYPEDEF_PATCH_0000_005 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,916 INFO  - [main:] ~ TYPEDEF_PATCH_0000_006 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,917 INFO  - [main:] ~ TYPEDEF_PATCH_0000_007 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,917 INFO  - [main:] ~ TYPEDEF_PATCH_0000_008 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,917 INFO  - [main:] ~ TYPEDEF_PATCH_0000_009 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,917 INFO  - [main:] ~ TYPEDEF_PATCH_0000_010 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,917 INFO  - [main:] ~ TYPEDEF_PATCH_0000_011 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,917 INFO  - [main:] ~ TYPEDEF_PATCH_0000_012 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,917 INFO  - [main:] ~ TYPEDEF_PATCH_0000_013 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,917 INFO  - [main:] ~ TYPEDEF_PATCH_0000_014 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,917 INFO  - [main:] ~ TYPEDEF_PATCH_0000_015 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,918 INFO  - [main:] ~ TYPEDEF_PATCH_0000_016 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,918 INFO  - [main:] ~ TYPEDEF_PATCH_0000_017 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,918 INFO  - [main:] ~ TYPEDEF_PATCH_0000_018 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,918 INFO  - [main:] ~ TYPEDEF_PATCH_0000_019 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,918 INFO  - [main:] ~ TYPEDEF_PATCH_0000_020 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,918 INFO  - [main:] ~ TYPEDEF_PATCH_0000_021 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,918 INFO  - [main:] ~ TYPEDEF_PATCH_0000_022 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,918 INFO  - [main:] ~ TYPEDEF_PATCH_0000_023 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,918 INFO  - [main:] ~ TYPEDEF_PATCH_0000_024 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,918 INFO  - [main:] ~ TYPEDEF_PATCH_0000_025 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,919 INFO  - [main:] ~ TYPEDEF_PATCH_0000_026 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,919 INFO  - [main:] ~ TYPEDEF_PATCH_0000_027 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,919 INFO  - [main:] ~ TYPEDEF_PATCH_0000_028 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,919 INFO  - [main:] ~ TYPEDEF_PATCH_0000_029 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,919 INFO  - [main:] ~ TYPEDEF_PATCH_0000_030 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,919 INFO  - [main:] ~ TYPEDEF_PATCH_0000_031 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,919 INFO  - [main:] ~ TYPEDEF_PATCH_0000_032 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0/patches/002-base_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,919 INFO  - [main:] ~ <== AtlasTypeDefStoreInitializer(/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/0000-Area0) (AtlasTypeDefStoreInitializer:211)
2019-07-11 12:18:52,920 INFO  - [main:] ~ ==> AtlasTypeDefStoreInitializer(/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop) (AtlasTypeDefStoreInitializer:169)
2019-07-11 12:18:52,921 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/1020-fs_model.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,923 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/1030-hive_model.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,924 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/1040-sqoop_model.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,924 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/1050-falcon_model.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,925 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/1060-hbase_model.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,926 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/1065-avro_model.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,926 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/1070-kafka_model.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,927 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/1080-storm_model.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,927 INFO  - [main:] ~ Type patches directory /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches is being processed (AtlasTypeDefStoreInitializer:418)
2019-07-11 12:18:52,927 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/001-hive_column_add_position.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,928 INFO  - [main:] ~ TYPEDEF_PATCH_1000_033 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/001-hive_column_add_position.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,928 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/002-hive_column_table_add_options.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,928 INFO  - [main:] ~ TYPEDEF_PATCH_1000_034 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/002-hive_column_table_add_options.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,928 INFO  - [main:] ~ TYPEDEF_PATCH_1000_035 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/002-hive_column_table_add_options.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,929 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/003-hive_column_update_table_remove_constraint.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,929 INFO  - [main:] ~ TYPEDEF_PATCH_1000_036 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/003-hive_column_update_table_remove_constraint.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,929 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/004-hbase_table_column_family_add_attribute.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,929 INFO  - [main:] ~ TYPEDEF_PATCH_1000_037 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/004-hbase_table_column_family_add_attribute.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,929 INFO  - [main:] ~ TYPEDEF_PATCH_1000_038 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/004-hbase_table_column_family_add_attribute.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,930 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/005-hbase_table_column_family_add_additional_attribute.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,930 INFO  - [main:] ~ TYPEDEF_PATCH_1000_039 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/005-hbase_table_column_family_add_additional_attribute.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,930 INFO  - [main:] ~ TYPEDEF_PATCH_1000_040 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/005-hbase_table_column_family_add_additional_attribute.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,930 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/006-kafka_topic_add_attribute.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,931 INFO  - [main:] ~ TYPEDEF_PATCH_1000_041 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/006-kafka_topic_add_attribute.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,931 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,932 INFO  - [main:] ~ TYPEDEF_PATCH_1000_042 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,932 INFO  - [main:] ~ TYPEDEF_PATCH_1000_043 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,932 INFO  - [main:] ~ TYPEDEF_PATCH_1000_044 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,932 INFO  - [main:] ~ TYPEDEF_PATCH_1000_045 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,932 INFO  - [main:] ~ TYPEDEF_PATCH_1000_046 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,932 INFO  - [main:] ~ TYPEDEF_PATCH_1000_047 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,932 INFO  - [main:] ~ TYPEDEF_PATCH_1000_048 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,932 INFO  - [main:] ~ TYPEDEF_PATCH_1000_049 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,932 INFO  - [main:] ~ TYPEDEF_PATCH_1000_050 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,933 INFO  - [main:] ~ TYPEDEF_PATCH_1000_051 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,933 INFO  - [main:] ~ TYPEDEF_PATCH_1000_052 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,933 INFO  - [main:] ~ TYPEDEF_PATCH_1000_053 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,933 INFO  - [main:] ~ TYPEDEF_PATCH_1000_054 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,933 INFO  - [main:] ~ TYPEDEF_PATCH_1000_055 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,933 INFO  - [main:] ~ TYPEDEF_PATCH_1000_056 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,934 INFO  - [main:] ~ TYPEDEF_PATCH_1000_057 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,934 INFO  - [main:] ~ TYPEDEF_PATCH_1000_058 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,934 INFO  - [main:] ~ TYPEDEF_PATCH_1000_059 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,934 INFO  - [main:] ~ TYPEDEF_PATCH_1000_060 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,934 INFO  - [main:] ~ TYPEDEF_PATCH_1000_061 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,934 INFO  - [main:] ~ TYPEDEF_PATCH_1000_062 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,934 INFO  - [main:] ~ TYPEDEF_PATCH_1000_063 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,934 INFO  - [main:] ~ TYPEDEF_PATCH_1000_064 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,934 INFO  - [main:] ~ TYPEDEF_PATCH_1000_065 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,935 INFO  - [main:] ~ TYPEDEF_PATCH_1000_066 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,935 INFO  - [main:] ~ TYPEDEF_PATCH_1000_067 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,935 INFO  - [main:] ~ TYPEDEF_PATCH_1000_068 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,935 INFO  - [main:] ~ TYPEDEF_PATCH_1000_069 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,935 INFO  - [main:] ~ TYPEDEF_PATCH_1000_070 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,935 INFO  - [main:] ~ TYPEDEF_PATCH_1000_071 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,935 INFO  - [main:] ~ TYPEDEF_PATCH_1000_072 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,935 INFO  - [main:] ~ TYPEDEF_PATCH_1000_073 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,935 INFO  - [main:] ~ TYPEDEF_PATCH_1000_074 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,936 INFO  - [main:] ~ TYPEDEF_PATCH_1000_075 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,936 INFO  - [main:] ~ TYPEDEF_PATCH_1000_076 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,936 INFO  - [main:] ~ TYPEDEF_PATCH_1000_077 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,936 INFO  - [main:] ~ TYPEDEF_PATCH_1000_078 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,936 INFO  - [main:] ~ TYPEDEF_PATCH_1000_079 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,936 INFO  - [main:] ~ TYPEDEF_PATCH_1000_080 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,936 INFO  - [main:] ~ TYPEDEF_PATCH_1000_081 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,936 INFO  - [main:] ~ TYPEDEF_PATCH_1000_082 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,936 INFO  - [main:] ~ TYPEDEF_PATCH_1000_083 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,937 INFO  - [main:] ~ TYPEDEF_PATCH_1000_084 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,937 INFO  - [main:] ~ TYPEDEF_PATCH_1000_085 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,937 INFO  - [main:] ~ TYPEDEF_PATCH_1000_086 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,937 INFO  - [main:] ~ TYPEDEF_PATCH_1000_087 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,937 INFO  - [main:] ~ TYPEDEF_PATCH_1000_088 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,937 INFO  - [main:] ~ TYPEDEF_PATCH_1000_089 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,937 INFO  - [main:] ~ TYPEDEF_PATCH_1000_090 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,937 INFO  - [main:] ~ TYPEDEF_PATCH_1000_091 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,937 INFO  - [main:] ~ TYPEDEF_PATCH_1000_092 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,937 INFO  - [main:] ~ TYPEDEF_PATCH_1000_093 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,938 INFO  - [main:] ~ TYPEDEF_PATCH_1000_094 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,938 INFO  - [main:] ~ TYPEDEF_PATCH_1000_095 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/007-hadoop_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,938 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/008-remove-hive-legacy-attributes.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,938 INFO  - [main:] ~ TYPEDEF_PATCH_1000_096 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/008-remove-hive-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,938 INFO  - [main:] ~ TYPEDEF_PATCH_1000_097 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/008-remove-hive-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,938 INFO  - [main:] ~ TYPEDEF_PATCH_1000_098 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/008-remove-hive-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,939 INFO  - [main:] ~ TYPEDEF_PATCH_1000_099 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/008-remove-hive-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,939 INFO  - [main:] ~ TYPEDEF_PATCH_1000_100 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop/patches/008-remove-hive-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,939 INFO  - [main:] ~ <== AtlasTypeDefStoreInitializer(/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/1000-Hadoop) (AtlasTypeDefStoreInitializer:211)
2019-07-11 12:18:52,939 INFO  - [main:] ~ ==> AtlasTypeDefStoreInitializer(/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS) (AtlasTypeDefStoreInitializer:169)
2019-07-11 12:18:52,940 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/2010-rdbms_model.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,940 INFO  - [main:] ~ Type patches directory /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches is being processed (AtlasTypeDefStoreInitializer:418)
2019-07-11 12:18:52,940 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/001-rdbms_column_table_add_options.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,941 INFO  - [main:] ~ TYPEDEF_PATCH_2000_101 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/001-rdbms_column_table_add_options.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,941 INFO  - [main:] ~ TYPEDEF_PATCH_2000_102 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/001-rdbms_column_table_add_options.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,941 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,941 INFO  - [main:] ~ TYPEDEF_PATCH_2000_103 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,941 INFO  - [main:] ~ TYPEDEF_PATCH_2000_104 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,942 INFO  - [main:] ~ TYPEDEF_PATCH_2000_105 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,942 INFO  - [main:] ~ TYPEDEF_PATCH_2000_106 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,942 INFO  - [main:] ~ TYPEDEF_PATCH_2000_107 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,942 INFO  - [main:] ~ TYPEDEF_PATCH_2000_108 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,942 INFO  - [main:] ~ TYPEDEF_PATCH_2000_109 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,942 INFO  - [main:] ~ TYPEDEF_PATCH_2000_110 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,942 INFO  - [main:] ~ TYPEDEF_PATCH_2000_111 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,942 INFO  - [main:] ~ TYPEDEF_PATCH_2000_112 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,942 INFO  - [main:] ~ TYPEDEF_PATCH_2000_113 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,943 INFO  - [main:] ~ TYPEDEF_PATCH_2000_114 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,943 INFO  - [main:] ~ TYPEDEF_PATCH_2000_115 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,943 INFO  - [main:] ~ TYPEDEF_PATCH_2000_116 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,943 INFO  - [main:] ~ TYPEDEF_PATCH_2000_117 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/002-rdbms_model_add_service_type.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,943 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/003-remove-rdbms-legacy-attributes.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,944 INFO  - [main:] ~ TYPEDEF_PATCH_2000_118 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/003-remove-rdbms-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,944 INFO  - [main:] ~ TYPEDEF_PATCH_2000_119 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/003-remove-rdbms-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,944 INFO  - [main:] ~ TYPEDEF_PATCH_2000_120 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/003-remove-rdbms-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,944 INFO  - [main:] ~ TYPEDEF_PATCH_2000_121 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/003-remove-rdbms-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,944 INFO  - [main:] ~ TYPEDEF_PATCH_2000_122 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/003-remove-rdbms-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,944 INFO  - [main:] ~ TYPEDEF_PATCH_2000_123 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/003-remove-rdbms-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,945 INFO  - [main:] ~ TYPEDEF_PATCH_2000_124 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/003-remove-rdbms-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,945 INFO  - [main:] ~ TYPEDEF_PATCH_2000_125 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/003-remove-rdbms-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,945 INFO  - [main:] ~ TYPEDEF_PATCH_2000_126 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS/patches/003-remove-rdbms-legacy-attributes.json already SKIPPED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,945 INFO  - [main:] ~ <== AtlasTypeDefStoreInitializer(/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/2000-RDBMS) (AtlasTypeDefStoreInitializer:211)
2019-07-11 12:18:52,945 INFO  - [main:] ~ ==> AtlasTypeDefStoreInitializer(/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud) (AtlasTypeDefStoreInitializer:169)
2019-07-11 12:18:52,945 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/3010-aws_common_typedefs.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,946 INFO  - [main:] ~ No new type in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/3020-aws_s3_typedefs.json (AtlasTypeDefStoreInitializer:200)
2019-07-11 12:18:52,947 INFO  - [main:] ~ Type patches directory /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches is being processed (AtlasTypeDefStoreInitializer:418)
2019-07-11 12:18:52,947 INFO  - [main:] ~ Applying patches in file /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches/001-cloud_model_add_service_type.json (AtlasTypeDefStoreInitializer:443)
2019-07-11 12:18:52,947 INFO  - [main:] ~ TYPEDEF_PATCH_3000_127 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches/001-cloud_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,947 INFO  - [main:] ~ TYPEDEF_PATCH_3000_128 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches/001-cloud_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,947 INFO  - [main:] ~ TYPEDEF_PATCH_3000_129 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches/001-cloud_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,947 INFO  - [main:] ~ TYPEDEF_PATCH_3000_130 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches/001-cloud_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,948 INFO  - [main:] ~ TYPEDEF_PATCH_3000_131 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches/001-cloud_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,948 INFO  - [main:] ~ TYPEDEF_PATCH_3000_132 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches/001-cloud_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,948 INFO  - [main:] ~ TYPEDEF_PATCH_3000_133 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches/001-cloud_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,948 INFO  - [main:] ~ TYPEDEF_PATCH_3000_134 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches/001-cloud_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,948 INFO  - [main:] ~ TYPEDEF_PATCH_3000_135 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches/001-cloud_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,948 INFO  - [main:] ~ TYPEDEF_PATCH_3000_136 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches/001-cloud_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,948 INFO  - [main:] ~ TYPEDEF_PATCH_3000_137 in file: /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud/patches/001-cloud_model_add_service_type.json already APPLIED. Ignoring. (AtlasTypeDefStoreInitializer:479)
2019-07-11 12:18:52,948 INFO  - [main:] ~ <== AtlasTypeDefStoreInitializer(/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/3000-Cloud) (AtlasTypeDefStoreInitializer:211)
2019-07-11 12:18:52,948 INFO  - [main:] ~ ==> AtlasTypeDefStoreInitializer(/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models) (AtlasTypeDefStoreInitializer:169)
2019-07-11 12:18:52,949 INFO  - [main:] ~ Type patches directory /opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models/patches does not exist or not readable or has no patches (AtlasTypeDefStoreInitializer:416)
2019-07-11 12:18:52,949 INFO  - [main:] ~ <== AtlasTypeDefStoreInitializer(/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/models) (AtlasTypeDefStoreInitializer:211)
2019-07-11 12:18:52,949 INFO  - [main:] ~ <== AtlasTypeDefStoreInitializer.loadBootstrapTypeDefs() (AtlasTypeDefStoreInitializer:161)
2019-07-11 12:18:52,952 INFO  - [main:] ~ Initializing Authorizer org.apache.atlas.authorize.simple.AtlasSimpleAuthorizer (AtlasAuthorizerFactory:67)
2019-07-11 12:18:52,953 INFO  - [main:] ~ ==> SimpleAtlasAuthorizer.init() (AtlasSimpleAuthorizer:56)
2019-07-11 12:18:52,954 INFO  - [main:] ~ Loaded atlas-simple-authz-policy.json as resource from file:/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/conf/atlas-simple-authz-policy.json (ApplicationProperties:257)
2019-07-11 12:18:52,972 INFO  - [main:] ~ <== SimpleAtlasAuthorizer.init() (AtlasSimpleAuthorizer:78)
2019-07-11 12:18:52,972 INFO  - [main:] ~ <== AtlasTypeDefStoreInitializer.init() (AtlasTypeDefStoreInitializer:119)
2019-07-11 12:18:52,977 INFO  - [main:] ~ atlas.notification.consumer.skip.hive_column_lineage.hive-20633=false (NotificationHookConsumer:237)
2019-07-11 12:18:52,978 INFO  - [main:] ~ atlas.notification.consumer.skip.hive_column_lineage.hive-20633.inputs.threshold=15 (NotificationHookConsumer:238)
2019-07-11 12:18:52,978 INFO  - [main:] ~ atlas.notification.consumer.preprocess.hive_types.remove.ownedref.attrs=true (NotificationHookConsumer:239)
2019-07-11 12:18:52,978 INFO  - [main:] ~ atlas.notification.consumer.preprocess.rdbms_types.remove.ownedref.attrs=true (NotificationHookConsumer:240)
2019-07-11 12:18:52,978 INFO  - [main:] ~ atlas.notification.consumer.commit.batch.size=50 (NotificationHookConsumer:241)
2019-07-11 12:18:52,978 INFO  - [main:] ~ atlas.notification.consumer.disabled=false (NotificationHookConsumer:242)
2019-07-11 12:18:52,999 INFO  - [main:] ~ AtlasJsonProvider() instantiated (AtlasJsonProvider:45)
2019-07-11 12:18:53,047 INFO  - [main:] ~ Starting service org.apache.atlas.repository.audit.HBaseBasedAuditRepository (Services:65)
2019-07-11 12:18:53,057 INFO  - [main:] ~ adding HBase configuration: hbase.zookeeper.quorum=localhost:2181 (HBaseBasedAuditRepository:501)
2019-07-11 12:18:53,057 INFO  - [main:] ~ adding HBase configuration: hbase.tablename=apache_atlas_entity_audit (HBaseBasedAuditRepository:501)
2019-07-11 12:18:53,058 INFO  - [main:] ~ adding HBase configuration: zookeeper.session.timeout.ms=1000 (HBaseBasedAuditRepository:501)
2019-07-11 12:18:53,064 INFO  - [main:] ~ HA is disabled. Hence creating table on startup. (HBaseBasedAuditRepository:600)
2019-07-11 12:18:53,065 INFO  - [main:] ~ Checking if table apache_atlas_entity_audit exists (HBaseBasedAuditRepository:513)
2019-07-11 12:18:53,076 INFO  - [main:] ~ Table apache_atlas_entity_audit exists (HBaseBasedAuditRepository:525)
2019-07-11 12:18:53,077 INFO  - [main:] ~ Starting service org.apache.atlas.repository.patches.AtlasPatchService (Services:65)
2019-07-11 12:18:53,077 INFO  - [main:] ~ ==> AtlasPatchService.start() (AtlasPatchService:49)
2019-07-11 12:18:53,077 INFO  - [main:] ~ AtlasPatchService: applying patches... (AtlasPatchService:86)
2019-07-11 12:18:53,078 INFO  - [main:] ~ Ignoring java handler: JAVA_PATCH_0000_001; status: APPLIED (AtlasPatchManager:60)
2019-07-11 12:18:53,078 INFO  - [main:] ~ <== AtlasPatchService.start() (AtlasPatchService:57)
2019-07-11 12:18:53,078 INFO  - [main:] ~ Starting service org.apache.atlas.kafka.EmbeddedKafkaServer (Services:65)
2019-07-11 12:18:53,078 INFO  - [main:] ~ ==> EmbeddedKafkaServer.start(isEmbedded=true) (EmbeddedKafkaServer:76)
2019-07-11 12:18:53,079 INFO  - [main:] ~ Starting zookeeper at localhost:9026 (EmbeddedKafkaServer:110)
2019-07-11 12:18:53,190 INFO  - [main:] ~ Embedded zookeeper for Kafka started at /127.0.0.1 (EmbeddedKafkaServer:122)
2019-07-11 12:18:53,191 INFO  - [main:] ~ Starting kafka at localhost:9027 (EmbeddedKafkaServer:130)
2019-07-11 12:18:54,773 INFO  - [main:] ~ Embedded kafka server started with broker config {host.name=localhost, zookeeper.session.timeout.ms=400, broker.id=1, poll.timeout.ms=1000, port=9027, log.flush.interval.messages=1, enable.auto.commit=false, log.dirs=/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/data/kafka/kafka, auto.offset.reset=earliest, offsets.topic.replication.factor=1, zookeeper.sync.time.ms=20, bootstrap.servers=localhost:9027, session.timeout.ms=30000, hook.group.id=atlas, auto.commit.interval.ms=1000, zookeeper.connection.timeout.ms=200, data=/opt/atlas2.0/distro/target/apache-atlas-2.0.0-server/apache-atlas-2.0.0/data/kafka, zookeeper.connect=localhost:9026} (EmbeddedKafkaServer:148)
2019-07-11 12:18:54,773 INFO  - [main:] ~ <== EmbeddedKafkaServer.start(isEmbedded=true) (EmbeddedKafkaServer:89)
2019-07-11 12:18:54,773 INFO  - [main:] ~ Starting service org.apache.atlas.kafka.KafkaNotification (Services:65)
2019-07-11 12:18:54,773 INFO  - [main:] ~ ==> KafkaNotification.start() (KafkaNotification:136)
2019-07-11 12:18:54,773 INFO  - [main:] ~ <== KafkaNotification.start() (KafkaNotification:138)
2019-07-11 12:18:54,773 INFO  - [main:] ~ Starting service org.apache.atlas.notification.NotificationHookConsumer (Services:65)
2019-07-11 12:18:54,773 INFO  - [main:] ~ HA is disabled, starting consumers inline. (NotificationHookConsumer:263)
2019-07-11 12:18:54,774 INFO  - [main:] ~ ==> KafkaNotification.createConsumers(notificationType=HOOK, numConsumers=1, autoCommitEnabled=false) (KafkaNotification:157)
2019-07-11 12:18:54,826 WARN  - [main:] ~ The configuration 'hook.group.id' was supplied but isn't a known config. (AbstractConfig:287)
2019-07-11 12:18:54,826 WARN  - [main:] ~ The configuration 'data' was supplied but isn't a known config. (AbstractConfig:287)
2019-07-11 12:18:54,826 WARN  - [main:] ~ The configuration 'offsets.topic.replication.factor' was supplied but isn't a known config. (AbstractConfig:287)
2019-07-11 12:18:54,826 WARN  - [main:] ~ The configuration 'zookeeper.connection.timeout.ms' was supplied but isn't a known config. (AbstractConfig:287)
2019-07-11 12:18:54,826 WARN  - [main:] ~ The configuration 'key.serializer' was supplied but isn't a known config. (AbstractConfig:287)
2019-07-11 12:18:54,826 WARN  - [main:] ~ The configuration 'zookeeper.session.timeout.ms' was supplied but isn't a known config. (AbstractConfig:287)
2019-07-11 12:18:54,826 WARN  - [main:] ~ The configuration 'value.serializer' was supplied but isn't a known config. (AbstractConfig:287)
2019-07-11 12:18:54,826 WARN  - [main:] ~ The configuration 'zookeeper.connect' was supplied but isn't a known config. (AbstractConfig:287)
2019-07-11 12:18:54,827 WARN  - [main:] ~ The configuration 'poll.timeout.ms' was supplied but isn't a known config. (AbstractConfig:287)
2019-07-11 12:18:54,827 WARN  - [main:] ~ The configuration 'zookeeper.sync.time.ms' was supplied but isn't a known config. (AbstractConfig:287)
2019-07-11 12:18:54,828 INFO  - [main:] ~ <== KafkaNotification.createConsumers(notificationType=HOOK, numConsumers=1, autoCommitEnabled=false) (KafkaNotification:164)
2019-07-11 12:18:54,831 INFO  - [main:] ~ Starting service org.apache.atlas.web.service.ActiveInstanceElectorService (Services:65)
2019-07-11 12:18:54,832 INFO  - [main:] ~ HA is not enabled, no need to start leader election service (ActiveInstanceElectorService:103)
2019-07-11 12:18:54,832 INFO  - [NotificationHookConsumer thread-0:] ~ [atlas-hook-consumer-thread]: Starting (Logging$class:66)
2019-07-11 12:18:54,833 INFO  - [NotificationHookConsumer thread-0:] ~ ==> HookConsumer doWork() (NotificationHookConsumer$HookConsumer:441)
2019-07-11 12:18:54,833 INFO  - [NotificationHookConsumer thread-0:] ~ Atlas Server is ready, can start reading Kafka events. (NotificationHookConsumer$HookConsumer:816)
2019-07-11 12:18:55,789 INFO  - [main:] ~ AuditFilter initialization started (AuditFilter:63)
2019-07-11 12:18:55,789 INFO  - [main:] ~ REST_API_ENABLE_DELETE_TYPE_OVERRIDE=false (AuditFilter:67)
2019-07-11 12:52:27,215 INFO  - [pool-2-thread-6 - 161ac532-9b8d-4422-8334-d3893ba58ddd:] ~ GraphTransaction intercept for org.apache.atlas.glossary.GlossaryService.getGlossaries (GraphTransactionAdvisor$1:41)
2019-07-11 12:52:27,372 INFO  - [pool-2-thread-7 - b76c32a0-5b8d-4f47-b308-074fb718fd09:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.getByUniqueAttributes (GraphTransactionAdvisor$1:41)
2019-07-11 12:52:27,400 ERROR - [pool-2-thread-7 - b76c32a0-5b8d-4f47-b308-074fb718fd09:] ~ graph rollback due to exception AtlasBaseException:Instance __AtlasUserProfile with unique attribute {name=admin} does not exist (GraphTransactionInterceptor:166)
2019-07-11 12:52:32,700 INFO  - [pool-2-thread-8 - 751aa4ed-1dd4-49cf-8273-19836c112117:] ~ GraphTransaction intercept for org.apache.atlas.discovery.EntityDiscoveryService.searchWithParameters (GraphTransactionAdvisor$1:41)
2019-07-11 12:53:31,336 ERROR - [pool-2-thread-3:] ~ Wrong password admin (AtlasFileAuthenticationProvider:68)
2019-07-11 12:53:51,192 INFO  - [pool-2-thread-2 - a387484b-a69f-4cc8-aa4a-75e9b2d17931:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasEntityStoreV2.createOrUpdate (GraphTransactionAdvisor$1:41)
2019-07-11 12:53:51,209 ERROR - [pool-2-thread-2 - a387484b-a69f-4cc8-aa4a-75e9b2d17931:] ~ graph rollback due to exception AtlasBaseException:Invalid instance creation/updation parameters passed : rdbms_db.instance: mandatory attribute value missing in type rdbms_db (GraphTransactionInterceptor:166)
2019-07-11 12:54:02,550 ERROR - [pool-2-thread-9 - 8af1bf94-562b-42c6-b1fe-5092e91547a9:] ~ graph rollback due to exception AtlasBaseException:Instance __AtlasUserProfile with unique attribute {name=admin} does not exist (GraphTransactionInterceptor:166)
2019-07-11 12:55:06,899 INFO  - [pool-2-thread-2 - 2cb3f873-cd30-4491-8097-2e4d082e4141:] ~ GraphTransaction intercept for org.apache.atlas.repository.store.graph.v2.AtlasTypeDefGraphStoreV2.createTypesDef (GraphTransactionAdvisor$1:41)
2019-07-11 12:55:19,376 INFO  - [pool-2-thread-2 - 2cb3f873-cd30-4491-8097-2e4d082e4141:] ~ Created backing index for vertex property classTyep.id of type java.lang.String  (GraphBackedSearchIndexer:520)
2019-07-11 12:55:19,390 INFO  - [pool-2-thread-2 - 2cb3f873-cd30-4491-8097-2e4d082e4141:] ~ Created backing index for vertex property classTyep.name of type java.lang.String  (GraphBackedSearchIndexer:520)
2019-07-11 12:55:19,390 INFO  - [pool-2-thread-2 - 2cb3f873-cd30-4491-8097-2e4d082e4141:] ~ Index creation for type classTyep complete (GraphBackedSearchIndexer:805)
2019-07-11 12:55:19,391 INFO  - [pool-2-thread-2 - 2cb3f873-cd30-4491-8097-2e4d082e4141:] ~ Index creation for type classTyep complete (GraphBackedSearchIndexer:805)
2019-07-11 12:55:27,848 ERROR - [pool-2-thread-6 - 2222c990-fbfe-40d4-9636-1a1f532e55fc:] ~ graph rollback due to exception  (GraphTransactionInterceptor:164)
2019-07-11 12:55:29,668 ERROR - [pool-2-thread-1 - 7c688fe0-9abf-43e9-8781-428a9bf35797:] ~ graph rollback due to exception AtlasBaseException:Instance __AtlasUserProfile with unique attribute {name=admin} does not exist (GraphTransactionInterceptor:166)
2019-07-11 12:56:31,671 ERROR - [Thread-13:] ~ Evicted [1@0a0a421d12487-bogon1] from cache but waiting too long for transactions to close. Stale transaction alert on: [standardjanusgraphtx[0x47ce1027], standardjanusgraphtx[0x6eea8bf0], standardjanusgraphtx[0x5e5cbda6], standardjanusgraphtx[0x2f6c26b1], standardjanusgraphtx[0x336575fb]] (ManagementLogger$SendAckOnTxClose:271)
2019-07-11 12:56:42,766 ERROR - [pool-2-thread-6 - 5df6df97-c489-4c97-a68f-deceda39e485:] ~ graph rollback due to exception AtlasBaseException:Invalid instance creation/updation parameters passed : rdbms_db.instance: mandatory attribute value missing in type rdbms_db (GraphTransactionInterceptor:166)
2019-07-11 12:57:09,570 ERROR - [pool-2-thread-1 - 446d0daa-a1de-4ab7-bab4-77374f8b4729:] ~ graph rollback due to exception AtlasBaseException:Invalid instance creation/updation parameters passed : rdbms_db.instance: mandatory attribute value missing in type rdbms_db (GraphTransactionInterceptor:166)
2019-07-11 12:57:48,628 ERROR - [pool-2-thread-3 - 32d399dd-ddef-438b-a8c7-33d6ff641ada:] ~ graph rollback due to exception  (GraphTransactionInterceptor:164)

       

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章