odpi / egeria

Egeria core
https://egeria-project.org
Apache License 2.0
806 stars 260 forks source link

False positive successful initialization message, NO audit logs #3030

Closed bogdan-sava closed 3 years ago

bogdan-sava commented 4 years ago

One of our ops engineers attempted to config local_graph using Cassandra and Elasticsearch with the config:

"localRepositoryConfig": {
  "class": "LocalRepositoryConfig",
  "metadataCollectionId": "123d768c-c1ed-4c9a-883f-4425a46d3364",
  "localRepositoryMode": "OPEN_METADATA_NATIVE",
  "localRepositoryLocalConnection": {
    "class": "Connection",
    "connectorType": {
      "class": "ConnectorType",
      "type": {
        "class": "ElementType",
        "elementTypeId": "954421eb-33a6-462d-a8ca-b5709a1bd0d4",
        "elementTypeName": "ConnectorType",
        "elementTypeVersion": 1,
        "elementTypeDescription": "A set of properties describing a type of connector.",
        "elementOrigin": "LOCAL_COHORT"
      },
      "guid": "9c6b3198-ccef-4644-af13-2789646f4233",
      "qualifiedName": "OMRS Graph Repository Connector",
      "displayName": "OMRS Graph Repository Connector",
      "description": "OMRS Repository Connector that uses graph repository store.",
      "connectorProviderClassName": "org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSRepositoryConnectorProvider"
    },
    "configurationProperties": {
      "storage.cql.keyspace": "local_graph",
      "index.search.hostname": "ompp-els-hostname1,ompp-els-hostname2,ompp-els-hostname3",
      "index.search.elasticsearch.interface": "REST_CLIENT",
      "ids.renew-percentage": "0.25",
      "cache.db-cache-size": "0.25",
      "index.search.elasticsearch.http.auth.type": "NONE",
      "cache.db-cache-clean-wait": "20",
      "ids.block-size": "100000",
      "storage.username": "janusgraph",
      "cache.db-cache": "true",
      "storage.backend": "cql",
      "storage.hostname": "ompp-hostname1,ompp-hostname2,ompp-hostname3",
      "storage.password": "***",
      "storage.cassandra.write-consistency-level": "QUORUM",
      "cache.db-cache-time": "180000",
      "storage.cassandra.read-consistency-level": "ONE",
      "index.search.backend": "elasticsearch"
    }
  }

Instance admin call returned successful with the message:

{
    "class": "SuccessMessageResponse",
    "relatedHTTPCode": 200,
    "successMessage": "Tue May 05 13:43:10 EEST 2020 omas2 is running the following services: [Open Metadata Repository Services (OMRS), Connected Asset Services, Asset Owner OMAS, Stewardship Action OMAS, Subject Area OMAS, Governance Program OMAS, Asset Lineage OMAS, Design Model OMAS, Glossary View OMAS, Security Officer OMAS, Asset Consumer OMAS, IT Infrastructure OMAS, Asset Catalog OMAS, Data Science OMAS, Community Profile OMAS, DevOps OMAS, Software Developer OMAS, Discovery Engine OMAS, Data Engine OMAS, Project Management OMAS, Governance Engine OMAS, Information View OMAS, Digital Architecture OMAS, Data Privacy OMAS, Data Platform OMAS]"
}

No error audit log in output. The local repo is not working.

Cassandra janusgraph tables were created successful, connection to kafka was successful.

After putting logging level on debug multiple ClassNotFoundException were showed in the console.

lcpopa commented 4 years ago

Need the stacktace to investigate further, but since the entities were created in Cassandra and indexes in ElasticSearch, the setup must've been successful

bogdan-sava commented 4 years ago
2020-05-07 13:01:50.672 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] i.n.util.internal.NativeLibraryLoader    : netty_transport_native_epoll_x86_64 cannot be loaded from java.library.path, now trying export to -Dio.netty.native.workdir: /tmp

java.lang.UnsatisfiedLinkError: no netty_transport_native_epoll_x86_64 in java.library.path
    at java.lang.ClassLoader.loadLibrary(Unknown Source) ~[na:1.8.0_251]
    at java.lang.Runtime.loadLibrary0(Unknown Source) ~[na:1.8.0_251]
    at java.lang.System.loadLibrary(Unknown Source) ~[na:1.8.0_251]
    at io.netty.util.internal.NativeLibraryUtil.loadLibrary(NativeLibraryUtil.java:38) ~[netty-all-4.1.49.Final.jar!/:4.1.49.Final]
    at io.netty.util.internal.NativeLibraryLoader.loadLibrary(NativeLibraryLoader.java:351) ~[netty-all-4.1.49.Final.jar!/:4.1.49.Final]
    at io.netty.util.internal.NativeLibraryLoader.load(NativeLibraryLoader.java:136) ~[netty-all-4.1.49.Final.jar!/:4.1.49.Final]
    at io.netty.channel.epoll.Native.loadNativeLibrary(Native.java:250) [netty-all-4.1.49.Final.jar!/:4.1.49.Final]
    at io.netty.channel.epoll.Native.<clinit>(Native.java:69) [netty-all-4.1.49.Final.jar!/:4.1.49.Final]
    at io.netty.channel.epoll.Epoll.<clinit>(Epoll.java:39) [netty-all-4.1.49.Final.jar!/:4.1.49.Final]
    at java.lang.Class.forName0(Native Method) [na:1.8.0_251]
    at java.lang.Class.forName(Unknown Source) [na:1.8.0_251]
    at com.datastax.driver.core.NettyUtil.<clinit>(NettyUtil.java:57) [cassandra-driver-core-3.8.0.jar!/:na]
    at com.datastax.driver.core.NettyOptions.eventLoopGroup(NettyOptions.java:95) [cassandra-driver-core-3.8.0.jar!/:na]
    at com.datastax.driver.core.Connection$Factory.<init>(Connection.java:956) [cassandra-driver-core-3.8.0.jar!/:na]
    at com.datastax.driver.core.Cluster$Manager.init(Cluster.java:1665) [cassandra-driver-core-3.8.0.jar!/:na]
    at com.datastax.driver.core.Cluster.init(Cluster.java:214) [cassandra-driver-core-3.8.0.jar!/:na]
    at com.datastax.driver.core.Cluster.connectAsync(Cluster.java:387) [cassandra-driver-core-3.8.0.jar!/:na]
    at com.datastax.driver.core.Cluster.connectAsync(Cluster.java:366) [cassandra-driver-core-3.8.0.jar!/:na]
    at com.datastax.driver.core.Cluster.connect(Cluster.java:311) [cassandra-driver-core-3.8.0.jar!/:na]
    at org.janusgraph.diskstorage.cql.CQLStoreManager.initializeSession(CQLStoreManager.java:320) [janusgraph-cql-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.cql.CQLStoreManager.<init>(CQLStoreManager.java:182) [janusgraph-cql-0.5.0.jar!/:na]
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) [na:1.8.0_251]
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source) [na:1.8.0_251]
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source) [na:1.8.0_251]
    at java.lang.reflect.Constructor.newInstance(Unknown Source) [na:1.8.0_251]
    at org.janusgraph.util.system.ConfigurationUtil.instantiate(ConfigurationUtil.java:58) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.Backend.getImplementationClass(Backend.java:440) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.Backend.getStorageManager(Backend.java:411) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.graphdb.configuration.builder.GraphDatabaseConfigurationBuilder.build(GraphDatabaseConfigurationBuilder.java:50) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:161) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:132) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:122) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory$Builder.open(JanusGraphFactory.java:261) [janusgraph-core-0.5.0.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSGraphFactory.open(GraphOMRSGraphFactory.java:92) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSMetadataStore.<init>(GraphOMRSMetadataStore.java:134) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSMetadataCollection.<init>(GraphOMRSMetadataCollection.java:101) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSRepositoryConnector.setMetadataCollectionId(GraphOMRSRepositoryConnector.java:41) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.localrepository.repositoryconnector.LocalOMRSRepositoryConnector.setMetadataCollectionId(LocalOMRSRepositoryConnector.java:352) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.getLocalOMRSConnector(OMRSOperationalServices.java:1131) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.initializeLocalRepository(OMRSOperationalServices.java:716) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.initializeCohortMember(OMRSOperationalServices.java:401) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateWithSuppliedConfig(OMAGServerOperationalServices.java:316) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateWithStoredConfig(OMAGServerOperationalServices.java:152) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateServerListWithStoredConfig(OMAGServerOperationalServices.java:94) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.autoStartConfig(OMAGServerPlatform.java:121) [classes!/:na]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.lambda$getInitialize$0(OMAGServerPlatform.java:83) [classes!/:na]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1855) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1792) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:595) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:517) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:323) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:226) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:321) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:895) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:878) ~[spring-context-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:550) ~[spring-context-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:747) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.main(OMAGServerPlatform.java:71) [classes!/:na]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_251]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_251]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_251]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[na:1.8.0_251]
    at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:48) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.Launcher.launch(Launcher.java:87) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.Launcher.launch(Launcher.java:51) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.PropertiesLauncher.main(PropertiesLauncher.java:597) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    Suppressed: java.lang.UnsatisfiedLinkError: no netty_transport_native_epoll_x86_64 in java.library.path
        at java.lang.ClassLoader.loadLibrary(Unknown Source) ~[na:1.8.0_251]
        at java.lang.Runtime.loadLibrary0(Unknown Source) ~[na:1.8.0_251]
        at java.lang.System.loadLibrary(Unknown Source) ~[na:1.8.0_251]
        at io.netty.util.internal.NativeLibraryUtil.loadLibrary(NativeLibraryUtil.java:38) ~[netty-all-4.1.49.Final.jar!/:4.1.49.Final]
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_251]
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_251]
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_251]
        at java.lang.reflect.Method.invoke(Unknown Source) ~[na:1.8.0_251]
        at io.netty.util.internal.NativeLibraryLoader$1.run(NativeLibraryLoader.java:371) ~[netty-all-4.1.49.Final.jar!/:4.1.49.Final]
        at java.security.AccessController.doPrivileged(Native Method) ~[na:1.8.0_251]
        at io.netty.util.internal.NativeLibraryLoader.loadLibraryByHelper(NativeLibraryLoader.java:363) ~[netty-all-4.1.49.Final.jar!/:4.1.49.Final]
        at io.netty.util.internal.NativeLibraryLoader.loadLibrary(NativeLibraryLoader.java:341) ~[netty-all-4.1.49.Final.jar!/:4.1.49.Final]
        ... 67 common frames omitted

2020-05-07 13:01:50.680 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] i.n.util.internal.NativeLibraryLoader    : Successfully loaded the library /tmp/libnetty_transport_native_epoll_x86_647603289002460717794.so
2020-05-07 13:01:50.682 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.util.NetUtil                    : -Djava.net.preferIPv4Stack: false
2020-05-07 13:01:50.682 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.util.NetUtil                    : -Djava.net.preferIPv6Addresses: false
2020-05-07 13:01:50.683 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.util.NetUtil                    : Loopback interface: lo (lo, 127.0.0.1)
2020-05-07 13:01:50.684 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.util.NetUtil                    : /proc/sys/net/core/somaxconn: 128
2020-05-07 13:01:50.691  INFO 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] com.datastax.driver.core.NettyUtil       : Found Netty's native epoll transport in the classpath, using it
2020-05-07 13:01:50.708 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] i.n.channel.MultithreadEventLoopGroup    : -Dio.netty.eventLoopThreads: 4
2020-05-07 13:01:50.722 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] i.netty.util.internal.PlatformDependent  : org.jctools-core.MpscChunkedArrayQueue: available
2020-05-07 13:01:50.729 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.util.ResourceLeakDetector       : -Dio.netty.leakDetection.level: simple
2020-05-07 13:01:50.729 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.util.ResourceLeakDetector       : -Dio.netty.leakDetection.targetRecords: 4
2020-05-07 13:01:50.732 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] i.n.util.ResourceLeakDetectorFactory     : Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@25084a1e
2020-05-07 13:01:50.736 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] c.datastax.driver.core.SystemProperties  : com.datastax.driver.EXTENDED_PEER_CHECK is undefined, using default value true
2020-05-07 13:01:50.811 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] com.datastax.driver.core.Host.STATES     : [********/********:9042] preparing to open 1 new connections, total = 1
2020-05-07 13:01:50.814 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] c.datastax.driver.core.SystemProperties  : com.datastax.driver.DISABLE_COALESCING is undefined, using default value false
2020-05-07 13:01:50.814 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] c.datastax.driver.core.SystemProperties  : com.datastax.driver.FLUSHER_SCHEDULE_PERIOD_NS is undefined, using default value 10000
2020-05-07 13:01:50.814 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] c.datastax.driver.core.SystemProperties  : com.datastax.driver.FLUSHER_RUN_WITHOUT_WORK_TIMES is undefined, using default value 5
2020-05-07 13:01:50.847 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.numHeapArenas: 4
2020-05-07 13:01:50.847 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.numDirectArenas: 4
2020-05-07 13:01:50.847 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.pageSize: 8192
2020-05-07 13:01:50.847 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.maxOrder: 11
2020-05-07 13:01:50.847 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.chunkSize: 16777216
2020-05-07 13:01:50.847 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.tinyCacheSize: 512
2020-05-07 13:01:50.848 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.smallCacheSize: 256
2020-05-07 13:01:50.848 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.normalCacheSize: 64
2020-05-07 13:01:50.848 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.maxCachedBufferCapacity: 32768
2020-05-07 13:01:50.848 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.cacheTrimInterval: 8192
2020-05-07 13:01:50.848 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.cacheTrimIntervalMillis: 0
2020-05-07 13:01:50.848 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.useCacheForAllThreads: true
2020-05-07 13:01:50.848 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.PooledByteBufAllocator   : -Dio.netty.allocator.maxCachedByteBuffersPerChunk: 1023
2020-05-07 13:01:50.864 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.channel.DefaultChannelId        : -Dio.netty.processId: 14890 (auto-detected)
2020-05-07 13:01:50.866 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.channel.DefaultChannelId        : -Dio.netty.machineId: 00:50:56:ff:fe:a4:d1:5e (auto-detected)
2020-05-07 13:01:50.886 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.ByteBufUtil              : -Dio.netty.allocator.type: pooled
2020-05-07 13:01:50.886 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.ByteBufUtil              : -Dio.netty.threadLocalDirectBufferSize: 0
2020-05-07 13:01:50.886 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] io.netty.buffer.ByteBufUtil              : -Dio.netty.maxThreadLocalCharBufferSize: 16384
2020-05-07 13:01:50.929 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] com.datastax.driver.core.Connection      : Connection[********/********:9042-1, inFlight=0, closed=false] Connection established, initializing transport
2020-05-07 13:01:50.955 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] io.netty.util.Recycler                   : -Dio.netty.recycler.maxCapacityPerThread: 4096
2020-05-07 13:01:50.955 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] io.netty.util.Recycler                   : -Dio.netty.recycler.maxSharedCapacityFactor: 2
2020-05-07 13:01:50.955 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] io.netty.util.Recycler                   : -Dio.netty.recycler.linkCapacity: 16
2020-05-07 13:01:50.955 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] io.netty.util.Recycler                   : -Dio.netty.recycler.ratio: 8
2020-05-07 13:01:50.962 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] io.netty.buffer.AbstractByteBuf          : -Dio.netty.buffer.checkAccessible: true
2020-05-07 13:01:50.962 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] io.netty.buffer.AbstractByteBuf          : -Dio.netty.buffer.checkBounds: true
2020-05-07 13:01:50.962 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] i.n.util.ResourceLeakDetectorFactory     : Loaded default ResourceLeakDetector: io.netty.util.ResourceLeakDetector@29d4de34
2020-05-07 13:01:50.980 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] c.datastax.driver.core.SystemProperties  : com.datastax.driver.NATIVE_TRANSPORT_MAX_FRAME_SIZE_IN_MB is undefined, using default value 256
2020-05-07 13:01:51.062 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] com.datastax.driver.core.Host.STATES     : [********/********:9042] Connection[********/********:9042-1, inFlight=0, closed=false] Transport initialized, connection ready
2020-05-07 13:01:51.067 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] c.d.driver.core.ControlConnection        : [Control connection] Refreshing node list and token map
2020-05-07 13:01:51.146 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] c.d.driver.core.ControlConnection        : [Control connection] Refreshing schema
2020-05-07 13:01:51.252 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] com.datastax.driver.core.Host.STATES     : [Control connection] established to ********/********:9042
2020-05-07 13:01:51.254  INFO 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] c.d.d.c.p.DCAwareRoundRobinPolicy        : Using data-center name 'WPR' for DCAwareRoundRobinPolicy (if this is incorrect, please provide the correct datacenter name with DCAwareRoundRobinPolicy constructor)
2020-05-07 13:01:51.256  INFO 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] com.datastax.driver.core.Cluster         : New Cassandra host ********/********:9042 added
2020-05-07 13:01:51.256  INFO 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] com.datastax.driver.core.Cluster         : New Cassandra host ********/********:9042 added
2020-05-07 13:01:51.256  INFO 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] com.datastax.driver.core.Cluster         : New Cassandra host ********/********:9042 added
2020-05-07 13:01:51.259 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] c.datastax.driver.core.SystemProperties  : com.datastax.driver.CHECK_IO_DEADLOCKS is undefined, using default value true
2020-05-07 13:01:51.264 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] com.datastax.driver.core.Host.STATES     : [********/********:9042] preparing to open 1 new connections, total = 1
2020-05-07 13:01:51.276 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] com.datastax.driver.core.Host.STATES     : [********/********:9042] preparing to open 1 new connections, total = 1
2020-05-07 13:01:51.276 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-1] com.datastax.driver.core.Connection      : Connection[********/********:9042-1, inFlight=0, closed=false] Connection established, initializing transport
2020-05-07 13:01:51.276 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] com.datastax.driver.core.Host.STATES     : [********/********:9042] preparing to open 1 new connections, total = 2
2020-05-07 13:01:51.281 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] com.datastax.driver.core.Connection      : Connection[********/********:9042-1, inFlight=0, closed=false] Connection established, initializing transport
2020-05-07 13:01:51.282 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-1] com.datastax.driver.core.Connection      : Connection[********/********:9042-2, inFlight=0, closed=false] Connection established, initializing transport
2020-05-07 13:01:51.366 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] com.datastax.driver.core.Host.STATES     : [********/********:9042] Connection[********/********:9042-1, inFlight=0, closed=false] Transport initialized, connection ready
2020-05-07 13:01:51.369 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-1] com.datastax.driver.core.Host.STATES     : [********/********:9042] Connection[********/********:9042-2, inFlight=0, closed=false] Transport initialized, connection ready
2020-05-07 13:01:51.370 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] c.d.driver.core.HostConnectionPool       : Created connection pool to host ********/********:9042 (1 connections needed, 1 successfully opened)
2020-05-07 13:01:51.370 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-0] com.datastax.driver.core.Session         : Added connection pool for ********/********:9042
2020-05-07 13:01:51.371 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-1] c.d.driver.core.HostConnectionPool       : Created connection pool to host ********/********:9042 (1 connections needed, 1 successfully opened)
2020-05-07 13:01:51.371 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-1] com.datastax.driver.core.Session         : Added connection pool for ********/********:9042
2020-05-07 13:01:51.371 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-1] com.datastax.driver.core.Host.STATES     : [********/********:9042] Connection[********/********:9042-1, inFlight=0, closed=false] Transport initialized, connection ready
2020-05-07 13:01:51.371 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-1] c.d.driver.core.HostConnectionPool       : Created connection pool to host ********/********:9042 (1 connections needed, 1 successfully opened)
2020-05-07 13:01:51.371 DEBUG 14890 --- [JanusGraph Cluster-nio-worker-1] com.datastax.driver.core.Session         : Added connection pool for ********/********:9042
2020-05-07 13:01:51.570 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] veConfigOptionLoader$LoaderConfiguration : Option loading enabled by default
2020-05-07 13:01:51.571 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Added preferred classloader to config option loader chain: org.springframework.boot.loader.LaunchedURLClassLoader@6433a2
2020-05-07 13:01:51.571 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Added thread context classloader to config option loader chain: org.springframework.boot.loader.LaunchedURLClassLoader@6433a2
2020-05-07 13:01:51.571 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Added caller classloader to config option loader chain: org.springframework.boot.loader.LaunchedURLClassLoader@6433a2
2020-05-07 13:01:51.572 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Unable to load class org.janusgraph.diskstorage.hbase.HBaseStoreManager with loader org.springframework.boot.loader.LaunchedURLClassLoader@6433a2

java.lang.ClassNotFoundException: org.janusgraph.diskstorage.hbase.HBaseStoreManager
    at java.net.URLClassLoader.findClass(Unknown Source) ~[na:1.8.0_251]
    at java.lang.ClassLoader.loadClass(Unknown Source) ~[na:1.8.0_251]
    at org.springframework.boot.loader.LaunchedURLClassLoader.loadClass(LaunchedURLClassLoader.java:92) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at java.lang.ClassLoader.loadClass(Unknown Source) ~[na:1.8.0_251]
    at java.lang.Class.forName0(Native Method) ~[na:1.8.0_251]
    at java.lang.Class.forName(Unknown Source) ~[na:1.8.0_251]
    at org.janusgraph.core.util.ReflectiveConfigOptionLoader.loadStandard(ReflectiveConfigOptionLoader.java:161) ~[janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.ConfigNamespace.getChild(ConfigNamespace.java:82) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.ConfigElement.parse(ConfigElement.java:176) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.BasicConfiguration.getAll(BasicConfiguration.java:93) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.builder.ReadConfigurationBuilder.getOptionsWithDiscrepancies(ReadConfigurationBuilder.java:244) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.builder.ReadConfigurationBuilder.checkOptionsWithDiscrepancies(ReadConfigurationBuilder.java:217) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.builder.ReadConfigurationBuilder.buildGlobalConfiguration(ReadConfigurationBuilder.java:91) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.graphdb.configuration.builder.GraphDatabaseConfigurationBuilder.build(GraphDatabaseConfigurationBuilder.java:53) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:161) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:132) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:122) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory$Builder.open(JanusGraphFactory.java:261) [janusgraph-core-0.5.0.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSGraphFactory.open(GraphOMRSGraphFactory.java:92) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSMetadataStore.<init>(GraphOMRSMetadataStore.java:134) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSMetadataCollection.<init>(GraphOMRSMetadataCollection.java:101) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSRepositoryConnector.setMetadataCollectionId(GraphOMRSRepositoryConnector.java:41) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.localrepository.repositoryconnector.LocalOMRSRepositoryConnector.setMetadataCollectionId(LocalOMRSRepositoryConnector.java:352) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.getLocalOMRSConnector(OMRSOperationalServices.java:1131) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.initializeLocalRepository(OMRSOperationalServices.java:716) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.initializeCohortMember(OMRSOperationalServices.java:401) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateWithSuppliedConfig(OMAGServerOperationalServices.java:316) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateWithStoredConfig(OMAGServerOperationalServices.java:152) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateServerListWithStoredConfig(OMAGServerOperationalServices.java:94) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.autoStartConfig(OMAGServerPlatform.java:121) [classes!/:na]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.lambda$getInitialize$0(OMAGServerPlatform.java:83) [classes!/:na]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1855) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1792) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:595) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:517) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:323) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:226) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:321) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:895) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:878) ~[spring-context-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:550) ~[spring-context-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:747) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.main(OMAGServerPlatform.java:71) [classes!/:na]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_251]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_251]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_251]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[na:1.8.0_251]
    at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:48) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.Launcher.launch(Launcher.java:87) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.Launcher.launch(Launcher.java:51) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.PropertiesLauncher.main(PropertiesLauncher.java:597) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]

2020-05-07 13:01:51.576 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Unable to load class org.janusgraph.diskstorage.hbase.HBaseStoreManager with loader org.springframework.boot.loader.LaunchedURLClassLoader@6433a2

java.lang.ClassNotFoundException: org.janusgraph.diskstorage.hbase.HBaseStoreManager
    at java.net.URLClassLoader.findClass(Unknown Source) ~[na:1.8.0_251]
    at java.lang.ClassLoader.loadClass(Unknown Source) ~[na:1.8.0_251]
    at org.springframework.boot.loader.LaunchedURLClassLoader.loadClass(LaunchedURLClassLoader.java:92) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at java.lang.ClassLoader.loadClass(Unknown Source) ~[na:1.8.0_251]
    at java.lang.Class.forName0(Native Method) ~[na:1.8.0_251]
    at java.lang.Class.forName(Unknown Source) ~[na:1.8.0_251]
    at org.janusgraph.core.util.ReflectiveConfigOptionLoader.loadStandard(ReflectiveConfigOptionLoader.java:161) ~[janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.ConfigNamespace.getChild(ConfigNamespace.java:82) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.ConfigElement.parse(ConfigElement.java:176) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.BasicConfiguration.getAll(BasicConfiguration.java:93) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.builder.ReadConfigurationBuilder.getOptionsWithDiscrepancies(ReadConfigurationBuilder.java:244) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.builder.ReadConfigurationBuilder.checkOptionsWithDiscrepancies(ReadConfigurationBuilder.java:217) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.builder.ReadConfigurationBuilder.buildGlobalConfiguration(ReadConfigurationBuilder.java:91) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.graphdb.configuration.builder.GraphDatabaseConfigurationBuilder.build(GraphDatabaseConfigurationBuilder.java:53) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:161) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:132) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:122) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory$Builder.open(JanusGraphFactory.java:261) [janusgraph-core-0.5.0.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSGraphFactory.open(GraphOMRSGraphFactory.java:92) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSMetadataStore.<init>(GraphOMRSMetadataStore.java:134) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSMetadataCollection.<init>(GraphOMRSMetadataCollection.java:101) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSRepositoryConnector.setMetadataCollectionId(GraphOMRSRepositoryConnector.java:41) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.localrepository.repositoryconnector.LocalOMRSRepositoryConnector.setMetadataCollectionId(LocalOMRSRepositoryConnector.java:352) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.getLocalOMRSConnector(OMRSOperationalServices.java:1131) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.initializeLocalRepository(OMRSOperationalServices.java:716) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.initializeCohortMember(OMRSOperationalServices.java:401) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateWithSuppliedConfig(OMAGServerOperationalServices.java:316) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateWithStoredConfig(OMAGServerOperationalServices.java:152) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateServerListWithStoredConfig(OMAGServerOperationalServices.java:94) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.autoStartConfig(OMAGServerPlatform.java:121) [classes!/:na]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.lambda$getInitialize$0(OMAGServerPlatform.java:83) [classes!/:na]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1855) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1792) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:595) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:517) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:323) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:226) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:321) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:895) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:878) ~[spring-context-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:550) ~[spring-context-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:747) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.main(OMAGServerPlatform.java:71) [classes!/:na]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_251]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_251]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_251]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[na:1.8.0_251]
    at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:48) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.Launcher.launch(Launcher.java:87) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.Launcher.launch(Launcher.java:51) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.PropertiesLauncher.main(PropertiesLauncher.java:597) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]

2020-05-07 13:01:51.578 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Unable to load class org.janusgraph.diskstorage.hbase.HBaseStoreManager with loader org.springframework.boot.loader.LaunchedURLClassLoader@6433a2

java.lang.ClassNotFoundException: org.janusgraph.diskstorage.hbase.HBaseStoreManager
    at java.net.URLClassLoader.findClass(Unknown Source) ~[na:1.8.0_251]
    at java.lang.ClassLoader.loadClass(Unknown Source) ~[na:1.8.0_251]
    at org.springframework.boot.loader.LaunchedURLClassLoader.loadClass(LaunchedURLClassLoader.java:92) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at java.lang.ClassLoader.loadClass(Unknown Source) ~[na:1.8.0_251]
    at java.lang.Class.forName0(Native Method) ~[na:1.8.0_251]
    at java.lang.Class.forName(Unknown Source) ~[na:1.8.0_251]
    at org.janusgraph.core.util.ReflectiveConfigOptionLoader.loadStandard(ReflectiveConfigOptionLoader.java:161) ~[janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.ConfigNamespace.getChild(ConfigNamespace.java:82) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.ConfigElement.parse(ConfigElement.java:176) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.BasicConfiguration.getAll(BasicConfiguration.java:93) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.builder.ReadConfigurationBuilder.getOptionsWithDiscrepancies(ReadConfigurationBuilder.java:244) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.builder.ReadConfigurationBuilder.checkOptionsWithDiscrepancies(ReadConfigurationBuilder.java:217) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.builder.ReadConfigurationBuilder.buildGlobalConfiguration(ReadConfigurationBuilder.java:91) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.graphdb.configuration.builder.GraphDatabaseConfigurationBuilder.build(GraphDatabaseConfigurationBuilder.java:53) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:161) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:132) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:122) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory$Builder.open(JanusGraphFactory.java:261) [janusgraph-core-0.5.0.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSGraphFactory.open(GraphOMRSGraphFactory.java:92) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSMetadataStore.<init>(GraphOMRSMetadataStore.java:134) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSMetadataCollection.<init>(GraphOMRSMetadataCollection.java:101) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSRepositoryConnector.setMetadataCollectionId(GraphOMRSRepositoryConnector.java:41) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.localrepository.repositoryconnector.LocalOMRSRepositoryConnector.setMetadataCollectionId(LocalOMRSRepositoryConnector.java:352) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.getLocalOMRSConnector(OMRSOperationalServices.java:1131) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.initializeLocalRepository(OMRSOperationalServices.java:716) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.initializeCohortMember(OMRSOperationalServices.java:401) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateWithSuppliedConfig(OMAGServerOperationalServices.java:316) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateWithStoredConfig(OMAGServerOperationalServices.java:152) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateServerListWithStoredConfig(OMAGServerOperationalServices.java:94) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.autoStartConfig(OMAGServerPlatform.java:121) [classes!/:na]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.lambda$getInitialize$0(OMAGServerPlatform.java:83) [classes!/:na]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1855) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1792) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:595) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:517) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:323) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:226) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:321) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:895) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:878) ~[spring-context-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:550) ~[spring-context-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:747) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.main(OMAGServerPlatform.java:71) [classes!/:na]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_251]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_251]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_251]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[na:1.8.0_251]
    at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:48) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.Launcher.launch(Launcher.java:87) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.Launcher.launch(Launcher.java:51) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.PropertiesLauncher.main(PropertiesLauncher.java:597) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]

2020-05-07 13:01:51.585 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Loaded class org.janusgraph.diskstorage.cassandra.astyanax.AstyanaxStoreManager with loader org.springframework.boot.loader.LaunchedURLClassLoader@6433a2
2020-05-07 13:01:51.585 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Located functioning classloader org.springframework.boot.loader.LaunchedURLClassLoader@6433a2; using it for remaining classload attempts
2020-05-07 13:01:51.585 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Loaded class org.janusgraph.diskstorage.cassandra.AbstractCassandraStoreManager with selected loader org.springframework.boot.loader.LaunchedURLClassLoader@6433a2
2020-05-07 13:01:51.592 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Loaded class org.janusgraph.diskstorage.cassandra.thrift.CassandraThriftStoreManager with selected loader org.springframework.boot.loader.LaunchedURLClassLoader@6433a2
2020-05-07 13:01:51.592 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Loaded class org.janusgraph.diskstorage.cql.CQLConfigOptions with selected loader org.springframework.boot.loader.LaunchedURLClassLoader@6433a2
2020-05-07 13:01:51.761 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Loaded class org.janusgraph.diskstorage.es.ElasticSearchIndex with selected loader org.springframework.boot.loader.LaunchedURLClassLoader@6433a2
2020-05-07 13:01:51.763 DEBUG 14890 --- [REST:OMAG Server Operational Services:activateWithSuppliedConfig] o.j.c.util.ReflectiveConfigOptionLoader  : Unable to load class org.janusgraph.diskstorage.solr.SolrIndex with selected loader org.springframework.boot.loader.LaunchedURLClassLoader@6433a2

java.lang.ClassNotFoundException: org.janusgraph.diskstorage.solr.SolrIndex
    at java.net.URLClassLoader.findClass(Unknown Source) ~[na:1.8.0_251]
    at java.lang.ClassLoader.loadClass(Unknown Source) ~[na:1.8.0_251]
    at org.springframework.boot.loader.LaunchedURLClassLoader.loadClass(LaunchedURLClassLoader.java:92) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at java.lang.ClassLoader.loadClass(Unknown Source) ~[na:1.8.0_251]
    at java.lang.Class.forName0(Native Method) ~[na:1.8.0_251]
    at java.lang.Class.forName(Unknown Source) ~[na:1.8.0_251]
    at org.janusgraph.core.util.ReflectiveConfigOptionLoader.loadStandard(ReflectiveConfigOptionLoader.java:151) ~[janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.ConfigNamespace.getChild(ConfigNamespace.java:82) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.ConfigElement.parse(ConfigElement.java:176) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.BasicConfiguration.getAll(BasicConfiguration.java:93) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.builder.ReadConfigurationBuilder.getOptionsWithDiscrepancies(ReadConfigurationBuilder.java:244) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.builder.ReadConfigurationBuilder.checkOptionsWithDiscrepancies(ReadConfigurationBuilder.java:217) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.diskstorage.configuration.builder.ReadConfigurationBuilder.buildGlobalConfiguration(ReadConfigurationBuilder.java:91) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.graphdb.configuration.builder.GraphDatabaseConfigurationBuilder.build(GraphDatabaseConfigurationBuilder.java:53) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:161) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:132) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory.open(JanusGraphFactory.java:122) [janusgraph-core-0.5.0.jar!/:na]
    at org.janusgraph.core.JanusGraphFactory$Builder.open(JanusGraphFactory.java:261) [janusgraph-core-0.5.0.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSGraphFactory.open(GraphOMRSGraphFactory.java:92) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSMetadataStore.<init>(GraphOMRSMetadataStore.java:134) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSMetadataCollection.<init>(GraphOMRSMetadataCollection.java:101) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adapters.repositoryservices.graphrepository.repositoryconnector.GraphOMRSRepositoryConnector.setMetadataCollectionId(GraphOMRSRepositoryConnector.java:41) [graph-repository-connector-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.localrepository.repositoryconnector.LocalOMRSRepositoryConnector.setMetadataCollectionId(LocalOMRSRepositoryConnector.java:352) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.getLocalOMRSConnector(OMRSOperationalServices.java:1131) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.initializeLocalRepository(OMRSOperationalServices.java:716) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.repositoryservices.admin.OMRSOperationalServices.initializeCohortMember(OMRSOperationalServices.java:401) [repository-services-implementation-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateWithSuppliedConfig(OMAGServerOperationalServices.java:316) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateWithStoredConfig(OMAGServerOperationalServices.java:152) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.adminservices.OMAGServerOperationalServices.activateServerListWithStoredConfig(OMAGServerOperationalServices.java:94) [admin-services-server-1.8-SNAPSHOT.jar!/:na]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.autoStartConfig(OMAGServerPlatform.java:121) [classes!/:na]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.lambda$getInitialize$0(OMAGServerPlatform.java:83) [classes!/:na]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1855) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1792) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:595) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:517) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:323) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:226) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:321) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:202) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:895) ~[spring-beans-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:878) ~[spring-context-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:550) ~[spring-context-5.2.6.RELEASE.jar!/:5.2.6.RELEASE]
    at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:141) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:747) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:397) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1226) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.springframework.boot.SpringApplication.run(SpringApplication.java:1215) ~[spring-boot-2.2.6.RELEASE.jar!/:2.2.6.RELEASE]
    at org.odpi.openmetadata.serverchassis.springboot.OMAGServerPlatform.main(OMAGServerPlatform.java:71) [classes!/:na]
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_251]
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_251]
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[na:1.8.0_251]
    at java.lang.reflect.Method.invoke(Unknown Source) ~[na:1.8.0_251]
    at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:48) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.Launcher.launch(Launcher.java:87) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.Launcher.launch(Launcher.java:51) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
    at org.springframework.boot.loader.PropertiesLauncher.main(PropertiesLauncher.java:597) ~[server-chassis-spring-1.8-SNAPSHOT.jar:na]
mandy-chessell commented 4 years ago

What needs to happen to resolve this issue?

grahamwallis commented 3 years ago

Is this still an issue?

lcpopa commented 3 years ago

Received confirmation from the aforementioned devops engineer that this is no longer an issue

planetf1 commented 3 years ago

This may also relate to https://github.com/odpi/egeria/issues/3451 (and be fixed by the draft pr) ??

lcpopa commented 3 years ago

@planetf1 I do not have enough information to certainly determine that, but if I have to bet I would say no