Hi I'm using Ignite 2.4.0 and Ignite-zookeeper for discovery spi
I have 3 server nodes and 1 client node.
In server nodes below are configurations. these servers are started
successfully.
IgniteConfiguration config = new IgniteConfiguration();
config.setRebalanceThreadPoolSize(rebalanceThreadPoolSize);
config.setConsistentId(uniqueNodeId); //I set easy name
//add event listener
int [] listenedEvent = {
EventType.EVT_CACHE_NODES_LEFT,
EventType.EVT_CACHE_OBJECT_PUT,
EventType.EVT_CACHE_REBALANCE_STARTED,
EventType.EVT_NODE_JOINED
};
config.setIncludeEventTypes(listenedEvent);
config.setLocalEventListeners(new HashMap<IgnitePredicate<? extends
Event>, int[]>() {{
put(event -> {
LOGGER.info("Event - time : {}, name : {}, type : {}, msg: {},
nodeId : {}",
LocalDateTime.ofInstant(Instant.ofEpochMilli(event.timestamp()),
ZoneId.systemDefault()),
event.name(), event.type(), event.message(), event.node().id());
return true;
}, listenedEvent);
}});
config.setDataStorageConfiguration(new DataStorageConfiguration()
.setPageSize(pageSize)
.setMetricsEnabled(showStorageMetric)
.setDefaultDataRegionConfiguration(new DataRegionConfiguration()
.setPersistenceEnabled(persistenceEnabled) //true
.setName(regionName)
.setInitialSize(initRegionSize)
.setMaxSize(maxRegionSize)
.setPageEvictionMode(DataPageEvictionMode.DISABLED)
.setMetricsEnabled(showRegionMetric)))
//use zookeeper
config.setDiscoverySpi(
new TcpDiscoverySpi()
.setIpFinder(new
TcpDiscoveryZookeeperIpFinder().setBasePath(basePath).setZkConnectionString(addr)));
below is client node. this node starting failed.
IgniteConfiguration config = new IgniteConfiguration();
//use 7caches
config.setCacheConfiguration(
new CacheConfiguration<K, V>()
.setName(name)
.setBackups(backupNum)
.setDataRegionName(regionName)
.setCacheMode(CacheMode.PARTITIONED)
.setWriteSynchronizationMode(syncMode)
.setCopyOnRead(copyOnRead),
new CacheConfiguration<K, V>()
.setName(name)
.setBackups(backupNum)
.setDataRegionName(regionName)
.setCacheMode(CacheMode.PARTITIONED)
.setWriteSynchronizationMode(syncMode)
.setCopyOnRead(copyOnRead),
new CacheConfiguration<K, V>()
.setName(name)
.setBackups(backupNum)
.setDataRegionName(regionName)
.setCacheMode(CacheMode.PARTITIONED)
.setWriteSynchronizationMode(syncMode)
.setCopyOnRead(copyOnRead),
new CacheConfiguration<K, V>()
.setName(name)
.setBackups(backupNum)
.setDataRegionName(regionName)
.setCacheMode(CacheMode.PARTITIONED)
.setWriteSynchronizationMode(syncMode)
.setCopyOnRead(copyOnRead),
new CacheConfiguration<K, V>()
.setName(name)
.setBackups(backupNum)
.setDataRegionName(regionName)
.setCacheMode(CacheMode.PARTITIONED)
.setWriteSynchronizationMode(syncMode)
.setCopyOnRead(copyOnRead),
new CacheConfiguration<K, V>()
.setName(name)
.setBackups(backupNum)
.setDataRegionName(regionName)
.setCacheMode(CacheMode.PARTITIONED)
.setWriteSynchronizationMode(syncMode)
.setCopyOnRead(copyOnRead),
new CacheConfiguration<K, V>()
.setName(name)
.setBackups(backupNum)
.setDataRegionName(regionName)
.setCacheMode(CacheMode.PARTITIONED)
.setWriteSynchronizationMode(syncMode)
.setCopyOnRead(copyOnRead)
);
config.setDiscoverySpi(
new TcpDiscoverySpi()
.setIpFinder(new
TcpDiscoveryZookeeperIpFinder().setBasePath(basePath).setZkConnectionString(addr)));
when I put break point at source, the error occured below point :
org.apache.ignite.spi.discovery.tcp.ClientImpl
if (joinLatch.getCount() > 0)
joinError(new IgniteSpiException("Some error in join process.")); //
This should not occur. <-- here, getCount() result was 1, so Error was
occured
below is my full log. I don't know why it happend, please tell me my problem
2018-05-09 17:08:45.184 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal :
>>> __________ ________________
>>> / _/ ___/ |/ / _/_ __/ __/
>>> _/ // (7 7 // / / / / _/
>>> /___/\___/_/|_/___/ /_/ /___/
>>>
>>> ver. 2.4.0#20180305-sha1:aa342270
>>> 2018 Copyright(C) Apache Software Foundation
>>>
>>> Ignite documentation: http://ignite.apache.org
2018-05-09 17:08:45.184 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : Config URL: n/a
2018-05-09 17:08:45.205 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : IgniteConfiguration
[igniteInstanceName=null, pubPoolSize=8, svcPoolSize=8, callbackPoolSize=8,
stripedPoolSize=8, sysPoolSize=8, mgmtPoolSize=4, igfsPoolSize=4,
dataStreamerPoolSize=8, utilityCachePoolSize=8,
utilityCacheKeepAliveTime=60000, p2pPoolSize=2, qryPoolSize=8,
igniteHome=null,
igniteWorkDir=C:\Users\hyeon\AppData\Local\Temp\ignite\work,
mbeanSrv=com.sun.jmx.mbeanserver.JmxMBeanServer@6f94fa3e,
nodeId=b7acb7f3-3c9e-491b-9fd3-19145f4f3ebf,
marsh=org.apache.ignite.internal.binary.BinaryMarshaller@3bd55d8,
marshLocJobs=false, daemon=false, p2pEnabled=false, netTimeout=5000,
sndRetryDelay=1000, sndRetryCnt=3, metricsHistSize=10000,
metricsUpdateFreq=2000, metricsExpTime=9223372036854775807,
discoSpi=TcpDiscoverySpi [addrRslvr=null, sockTimeout=0, ackTimeout=0,
marsh=null, reconCnt=10, reconDelay=2000, maxAckTimeout=600000,
forceSrvMode=false, clientReconnectDisabled=false], segPlc=STOP,
segResolveAttempts=2, waitForSegOnStart=true, allResolversPassReq=true,
segChkFreq=10000, commSpi=TcpCommunicationSpi [connectGate=null,
connPlc=null, enableForcibleNodeKill=false, enableTroubleshootingLog=false,
srvLsnr=org.apache.ignite.spi.communication.tcp.TcpCommunicationSpi$2@6ea94d6a,
locAddr=null, locHost=null, locPort=47100, locPortRange=100, shmemPort=-1,
directBuf=true, directSndBuf=false, idleConnTimeout=600000,
connTimeout=5000, maxConnTimeout=600000, reconCnt=10, sockSndBuf=32768,
sockRcvBuf=32768, msgQueueLimit=0, slowClientQueueLimit=0, nioSrvr=null,
shmemSrv=null, usePairedConnections=false, connectionsPerNode=1,
tcpNoDelay=true, filterReachableAddresses=false, ackSndThreshold=32,
unackedMsgsBufSize=0, sockWriteTimeout=2000, lsnr=null, boundTcpPort=-1,
boundTcpShmemPort=-1, selectorsCnt=4, selectorSpins=0, addrRslvr=null,
ctxInitLatch=java.util.concurrent.CountDownLatch@28486680[Count = 1],
stopping=false,
metricsLsnr=org.apache.ignite.spi.communication.tcp.TcpCommunicationMetricsListener@4d7e7435],
evtSpi=org.apache.ignite.spi.eventstorage.NoopEventStorageSpi@4a1e3ac1,
colSpi=NoopCollisionSpi [], deploySpi=LocalDeploymentSpi [lsnr=null],
indexingSpi=org.apache.ignite.spi.indexing.noop.NoopIndexingSpi@294bdeb4,
addrRslvr=null, clientMode=true, rebalanceThreadPoolSize=1,
txCfg=org.apache.ignite.configuration.TransactionConfiguration@5300f14a,
cacheSanityCheckEnabled=true, discoStartupDelay=60000, deployMode=SHARED,
p2pMissedCacheSize=100, locHost=null, timeSrvPortBase=31100,
timeSrvPortRange=100, failureDetectionTimeout=10000,
clientFailureDetectionTimeout=30000, metricsLogFreq=60000, hadoopCfg=null,
connectorCfg=org.apache.ignite.configuration.ConnectorConfiguration@1f86099a,
odbcCfg=null, warmupClos=null, atomicCfg=AtomicConfiguration
[seqReserveSize=1000, cacheMode=PARTITIONED, backups=1, aff=null,
grpName=null], classLdr=null, sslCtxFactory=null, platformCfg=null,
binaryCfg=null, memCfg=null, pstCfg=null, dsCfg=null, activeOnStart=true,
autoActivation=true, longQryWarnTimeout=3000, sqlConnCfg=null,
cliConnCfg=ClientConnectorConfiguration [host=null, port=10800,
portRange=100, sockSndBufSize=0, sockRcvBufSize=0, tcpNoDelay=true,
maxOpenCursorsPerConn=128, threadPoolSize=8, idleTimeout=0,
jdbcEnabled=true, odbcEnabled=true, thinCliEnabled=true]]
2018-05-09 17:08:45.206 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : Daemon mode: off
2018-05-09 17:08:45.206 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : OS: Windows 10 10.0 amd64
2018-05-09 17:08:45.206 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : OS user: hyeon
2018-05-09 17:08:45.206 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : PID: 119440
2018-05-09 17:08:45.207 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : Language runtime: Java Platform
API Specification ver. 1.8
2018-05-09 17:08:45.207 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : VM information: Java(TM) SE
Runtime Environment 1.8.0_131-b11 Oracle Corporation Java HotSpot(TM) 64-Bit
Server VM 25.131-b11
2018-05-09 17:08:45.207 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : VM total memory: 3.5GB
2018-05-09 17:08:45.208 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : Remote Management [restart: off,
REST: off, JMX (remote: on, port: 60518, auth: off, ssl: off)]
2018-05-09 17:08:45.208 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : Logger: JavaLogger [quiet=false,
config=null]
2018-05-09 17:08:45.208 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : IGNITE_HOME=null
2018-05-09 17:08:45.208 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : VM arguments:
[-Dcom.sun.management.jmxremote, -Dcom.sun.management.jmxremote.port=60518,
-Dcom.sun.management.jmxremote.authenticate=false,
-Dcom.sun.management.jmxremote.ssl=false,
-Djava.rmi.server.hostname=localhost, -Dspring.liveBeansView.mbeanDomain,
-Dspring.application.admin.enabled=true, -Dspring.profiles.active=dev,
-DIGNITE_QUIET=false, -Xverify:none, -XX:TieredStopAtLevel=1,
-Dfile.encoding=UTF-8]
2018-05-09 17:08:45.208 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : Configured caches [in 'sysMemPlc'
dataRegion: ['ignite-sys-cache'], in 'cc' dataRegion: ['cc.content',
'cc.category', 'cc.inverted.content.term', 'cc.inverted.affix.term',
'content', 'category', 'affix']]
2018-05-09 17:08:45.210 WARN 119440 --- [ pub-#19]
o.apache.ignite.internal.GridDiagnostic : This operating system has been
tested less rigorously: Windows 10 10.0 amd64. Our team will appreciate the
feedback if you experience any problems running ignite in this environment.
2018-05-09 17:08:45.212 WARN 119440 --- [ pub-#22]
o.apache.ignite.internal.GridDiagnostic : Initial heap size is 256MB
(should be no less than 512MB, use -Xms512m -Xmx512m).
2018-05-09 17:08:45.271 INFO 119440 --- [ main]
o.a.i.i.p.plugin.IgnitePluginProcessor : Configured plugins:
2018-05-09 17:08:45.271 INFO 119440 --- [ main]
o.a.i.i.p.plugin.IgnitePluginProcessor : ^-- None
2018-05-09 17:08:45.271 INFO 119440 --- [ main]
o.a.i.i.p.plugin.IgnitePluginProcessor :
2018-05-09 17:08:45.318 INFO 119440 --- [ main]
o.a.i.s.c.tcp.TcpCommunicationSpi : Successfully bound communication
NIO server to TCP port [port=47100, locHost=0.0.0.0/0.0.0.0, selectorsCnt=4,
selectorSpins=0, pairedConn=false]
2018-05-09 17:08:45.407 WARN 119440 --- [ main]
o.a.i.s.c.tcp.TcpCommunicationSpi : Message queue limit is set to 0
which may lead to potential OOMEs when running cache operations in
FULL_ASYNC or PRIMARY_SYNC modes due to message queues growth on sender and
receiver sides.
2018-05-09 17:08:45.425 WARN 119440 --- [ main]
o.a.i.s.c.noop.NoopCheckpointSpi : Checkpoints are disabled (to
enable configure any GridCheckpointSpi implementation)
2018-05-09 17:08:45.460 WARN 119440 --- [ main]
o.a.i.i.m.c.GridCollisionManager : Collision resolution is disabled
(all jobs will be activated upon arrival).
2018-05-09 17:08:45.461 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : Security status
[authentication=off, tls/ssl=off]
2018-05-09 17:08:45.686 INFO 119440 --- [ main]
o.a.i.i.p.odbc.ClientListenerProcessor : Client connector processor has
started on TCP port 10800
2018-05-09 17:08:45.696 INFO 119440 --- [ main]
o.a.i.i.p.rest.GridRestProcessor : REST protocols do not start on
client node. To start the protocols on client node set
'-DIGNITE_REST_START_ON_CLIENT=true' system property.
2018-05-09 17:08:45.994 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : Non-loopback local IPs:
192.168.183.206, fe80:0:0:0:0:ffff:ffff:fffe%net2,
fe80:0:0:0:3857:b492:48ad:1dc%eth7, fe80:0:0:0:80d7:8ad1:bc02:a359%eth4
2018-05-09 17:08:45.995 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : Enabled local MACs:
00000000000000E0, 001A7DDA7113, BCEE7B8B7C00
2018-05-09 17:08:46.014 INFO 119440 --- [o-msg-worker-#4]
.s.d.t.i.z.TcpDiscoveryZookeeperIpFinder : Initializing ZooKeeper IP Finder.
2018-05-09 17:08:46.046 INFO 119440 --- [o-msg-worker-#4]
o.a.c.f.imps.CuratorFrameworkImpl : Starting
2018-05-09 17:08:46.051 ERROR 119440 --- [o-msg-worker-#4]
o.a.i.spi.discovery.tcp.TcpDiscoverySpi : Runtime error caught during grid
runnable execution: IgniteSpiThread [name=tcp-client-disco-msg-worker-#4]
java.lang.NoSuchMethodError:
com.google.common.util.concurrent.MoreExecutors.sameThreadExecutor()Lcom/google/common/util/concurrent/ListeningExecutorService;
at
org.apache.curator.framework.listen.ListenerContainer.addListener(ListenerContainer.java:40)
~[curator-framework-2.9.1.jar:na]
at
org.apache.curator.framework.imps.CuratorFrameworkImpl.start(CuratorFrameworkImpl.java:256)
~[curator-framework-2.9.1.jar:na]
at
org.apache.ignite.spi.discovery.tcp.ipfinder.zk.TcpDiscoveryZookeeperIpFinder.init(TcpDiscoveryZookeeperIpFinder.java:147)
~[ignite-zookeeper-2.4.0.jar:2.4.0]
at
org.apache.ignite.spi.discovery.tcp.ipfinder.zk.TcpDiscoveryZookeeperIpFinder.getRegisteredAddresses(TcpDiscoveryZookeeperIpFinder.java:178)
~[ignite-zookeeper-2.4.0.jar:2.4.0]
at
org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi.registeredAddresses(TcpDiscoverySpi.java:1810)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi.resolvedAddresses(TcpDiscoverySpi.java:1758)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.spi.discovery.tcp.ClientImpl.joinTopology(ClientImpl.java:494)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.spi.discovery.tcp.ClientImpl.access$900(ClientImpl.java:125)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.spi.discovery.tcp.ClientImpl$MessageWorker.tryJoin(ClientImpl.java:1837)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.spi.discovery.tcp.ClientImpl$MessageWorker.body(ClientImpl.java:1550)
~[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.spi.IgniteSpiThread.run(IgniteSpiThread.java:62)
~[ignite-core-2.4.0.jar:2.4.0]
Exception in thread "tcp-client-disco-msg-worker-#4"
java.lang.NoSuchMethodError:
com.google.common.util.concurrent.MoreExecutors.sameThreadExecutor()Lcom/google/common/util/concurrent/ListeningExecutorService;
at
org.apache.curator.framework.listen.ListenerContainer.addListener(ListenerContainer.java:40)
at
org.apache.curator.framework.imps.CuratorFrameworkImpl.start(CuratorFrameworkImpl.java:256)
at
org.apache.ignite.spi.discovery.tcp.ipfinder.zk.TcpDiscoveryZookeeperIpFinder.init(TcpDiscoveryZookeeperIpFinder.java:147)
at
org.apache.ignite.spi.discovery.tcp.ipfinder.zk.TcpDiscoveryZookeeperIpFinder.getRegisteredAddresses(TcpDiscoveryZookeeperIpFinder.java:178)
at
org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi.registeredAddresses(TcpDiscoverySpi.java:1810)
at
org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi.resolvedAddresses(TcpDiscoverySpi.java:1758)
at
org.apache.ignite.spi.discovery.tcp.ClientImpl.joinTopology(ClientImpl.java:494)
at
org.apache.ignite.spi.discovery.tcp.ClientImpl.access$900(ClientImpl.java:125)
at
org.apache.ignite.spi.discovery.tcp.ClientImpl$MessageWorker.tryJoin(ClientImpl.java:1837)
at
org.apache.ignite.spi.discovery.tcp.ClientImpl$MessageWorker.body(ClientImpl.java:1550)
at org.apache.ignite.spi.IgniteSpiThread.run(IgniteSpiThread.java:62)
2018-05-09 17:08:46.051 ERROR 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : Failed to start manager:
GridManagerAdapter [enabled=true,
name=o.a.i.i.managers.discovery.GridDiscoveryManager]
org.apache.ignite.IgniteCheckedException: Failed to start SPI:
TcpDiscoverySpi [addrRslvr=null, sockTimeout=5000, ackTimeout=5000,
marsh=JdkMarshaller
[clsFilter=org.apache.ignite.internal.IgniteKernal$5@743c6ce4], reconCnt=10,
reconDelay=2000, maxAckTimeout=600000, forceSrvMode=false,
clientReconnectDisabled=false]
at
org.apache.ignite.internal.managers.GridManagerAdapter.startSpi(GridManagerAdapter.java:300)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.internal.managers.discovery.GridDiscoveryManager.start(GridDiscoveryManager.java:892)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.internal.IgniteKernal.startManager(IgniteKernal.java:1669)
[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.internal.IgniteKernal.start(IgniteKernal.java:983)
[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start0(IgnitionEx.java:1973)
[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start(IgnitionEx.java:1716)
[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.internal.IgnitionEx.start0(IgnitionEx.java:1144)
[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:664)
[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:604)
[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.Ignition.getOrStart(Ignition.java:414)
[ignite-core-2.4.0.jar:2.4.0]
at
cc.platform.expresso.storage.config.DataGridConfiguration.startNode(DataGridConfiguration.java:104)
[classes/:na]
at
cc.platform.expresso.storage.config.DataGridConfiguration$$EnhancerBySpringCGLIB$$2ebb6e8c.CGLIB$startNode$7(<generated>)
[classes/:na]
at
cc.platform.expresso.storage.config.DataGridConfiguration$$EnhancerBySpringCGLIB$$2ebb6e8c$$FastClassBySpringCGLIB$$c4a092b7.invoke(<generated>)
[classes/:na]
at
org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228)
[spring-core-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:361)
[spring-context-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
cc.platform.expresso.storage.config.DataGridConfiguration$$EnhancerBySpringCGLIB$$2ebb6e8c.startNode(<generated>)
[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[na:1.8.0_131]
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
~[na:1.8.0_131]
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
~[na:1.8.0_131]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_131]
at
org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:579)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1250)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1099)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:545)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:815)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:721)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:470)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1250)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1099)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:545)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:91)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:373)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1344)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:91)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:373)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1344)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:760)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:868)
~[spring-context-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549)
~[spring-context-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.refresh(SpringApplication.java:752)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:388)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.run(SpringApplication.java:327)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.run(SpringApplication.java:1246)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.run(SpringApplication.java:1234)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
cc.platform.expresso.engine.ExpressoEngineApplication.main(ExpressoEngineApplication.java:10)
~[classes/:na]
Caused by: org.apache.ignite.spi.IgniteSpiException: Some error in join
process.
at
org.apache.ignite.spi.discovery.tcp.ClientImpl$MessageWorker.body(ClientImpl.java:1792)
~[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.spi.IgniteSpiThread.run(IgniteSpiThread.java:62)
~[ignite-core-2.4.0.jar:2.4.0]
2018-05-09 17:08:46.054 ERROR 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal : Got exception while starting
(will rollback startup routine).
org.apache.ignite.IgniteCheckedException: Failed to start manager:
GridManagerAdapter [enabled=true,
name=org.apache.ignite.internal.managers.discovery.GridDiscoveryManager]
at
org.apache.ignite.internal.IgniteKernal.startManager(IgniteKernal.java:1674)
~[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.internal.IgniteKernal.start(IgniteKernal.java:983)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start0(IgnitionEx.java:1973)
[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start(IgnitionEx.java:1716)
[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.internal.IgnitionEx.start0(IgnitionEx.java:1144)
[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:664)
[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:604)
[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.Ignition.getOrStart(Ignition.java:414)
[ignite-core-2.4.0.jar:2.4.0]
at
cc.platform.expresso.storage.config.DataGridConfiguration.startNode(DataGridConfiguration.java:104)
[classes/:na]
at
cc.platform.expresso.storage.config.DataGridConfiguration$$EnhancerBySpringCGLIB$$2ebb6e8c.CGLIB$startNode$7(<generated>)
[classes/:na]
at
cc.platform.expresso.storage.config.DataGridConfiguration$$EnhancerBySpringCGLIB$$2ebb6e8c$$FastClassBySpringCGLIB$$c4a092b7.invoke(<generated>)
[classes/:na]
at
org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228)
[spring-core-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:361)
[spring-context-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
cc.platform.expresso.storage.config.DataGridConfiguration$$EnhancerBySpringCGLIB$$2ebb6e8c.startNode(<generated>)
[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[na:1.8.0_131]
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
~[na:1.8.0_131]
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
~[na:1.8.0_131]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_131]
at
org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:579)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1250)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1099)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:545)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:815)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:721)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:470)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1250)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1099)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:545)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:91)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:373)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1344)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:91)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:373)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1344)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:760)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:868)
~[spring-context-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549)
~[spring-context-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.refresh(SpringApplication.java:752)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:388)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.run(SpringApplication.java:327)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.run(SpringApplication.java:1246)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.run(SpringApplication.java:1234)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
cc.platform.expresso.engine.ExpressoEngineApplication.main(ExpressoEngineApplication.java:10)
~[classes/:na]
Caused by: org.apache.ignite.IgniteCheckedException: Failed to start SPI:
TcpDiscoverySpi [addrRslvr=null, sockTimeout=5000, ackTimeout=5000,
marsh=JdkMarshaller
[clsFilter=org.apache.ignite.internal.IgniteKernal$5@743c6ce4], reconCnt=10,
reconDelay=2000, maxAckTimeout=600000, forceSrvMode=false,
clientReconnectDisabled=false]
at
org.apache.ignite.internal.managers.GridManagerAdapter.startSpi(GridManagerAdapter.java:300)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.internal.managers.discovery.GridDiscoveryManager.start(GridDiscoveryManager.java:892)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.internal.IgniteKernal.startManager(IgniteKernal.java:1669)
~[ignite-core-2.4.0.jar:2.4.0]
... 77 common frames omitted
Caused by: org.apache.ignite.spi.IgniteSpiException: Some error in join
process.
at
org.apache.ignite.spi.discovery.tcp.ClientImpl$MessageWorker.body(ClientImpl.java:1792)
~[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.spi.IgniteSpiThread.run(IgniteSpiThread.java:62)
~[ignite-core-2.4.0.jar:2.4.0]
2018-05-09 17:08:46.055 INFO 119440 --- [ main]
.s.d.t.i.z.TcpDiscoveryZookeeperIpFinder : Destroying ZooKeeper IP Finder.
2018-05-09 17:08:46.069 INFO 119440 --- [ main]
org.apache.ignite.internal.IgniteKernal :
>>> +---------------------------------------------------------------------------------+
>>> Ignite ver. 2.4.0#20180305-sha1:aa342270b13cc1f4713382a8eb23b2eb7edaa3a5
>>> stopped OK
>>> +---------------------------------------------------------------------------------+
>>> Grid uptime: 00:00:00.991
2018-05-09 17:08:46.072 WARN 119440 --- [ main]
ConfigServletWebServerApplicationContext : Exception encountered during
context initialization - cancelling refresh attempt:
org.springframework.beans.factory.UnsatisfiedDependencyException: Error
creating bean with name 'contentSearchEngine': Unsatisfied dependency
expressed through field 'contentManager'; nested exception is
org.springframework.beans.factory.UnsatisfiedDependencyException: Error
creating bean with name 'contentManager': Unsatisfied dependency expressed
through field 'contentMap'; nested exception is
org.springframework.beans.factory.UnsatisfiedDependencyException: Error
creating bean with name 'contentCache' defined in class path resource
[cc/platform/expresso/storage/config/DataGridConfiguration.class]:
Unsatisfied dependency expressed through method 'contentCache' parameter 0;
nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'startNode' defined in class path resource
[cc/platform/expresso/storage/config/DataGridConfiguration.class]: Bean
instantiation via factory method failed; nested exception is
org.springframework.beans.BeanInstantiationException: Failed to instantiate
[org.apache.ignite.Ignite]: Factory method 'startNode' threw exception;
nested exception is class org.apache.ignite.IgniteException: Failed to start
manager: GridManagerAdapter [enabled=true,
name=org.apache.ignite.internal.managers.discovery.GridDiscoveryManager]
2018-05-09 17:08:46.073 INFO 119440 --- [ main]
o.apache.catalina.core.StandardService : Stopping service [Tomcat]
2018-05-09 17:08:46.086 INFO 119440 --- [ main]
ConditionEvaluationReportLoggingListener :
Error starting ApplicationContext. To display the conditions report re-run
your application with 'debug' enabled.
2018-05-09 17:08:46.092 ERROR 119440 --- [ main]
o.s.boot.SpringApplication : Application run failed
org.springframework.beans.factory.UnsatisfiedDependencyException: Error
creating bean with name 'contentSearchEngine': Unsatisfied dependency
expressed through field 'contentManager'; nested exception is
org.springframework.beans.factory.UnsatisfiedDependencyException: Error
creating bean with name 'contentManager': Unsatisfied dependency expressed
through field 'contentMap'; nested exception is
org.springframework.beans.factory.UnsatisfiedDependencyException: Error
creating bean with name 'contentCache' defined in class path resource
[cc/platform/expresso/storage/config/DataGridConfiguration.class]:
Unsatisfied dependency expressed through method 'contentCache' parameter 0;
nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'startNode' defined in class path resource
[cc/platform/expresso/storage/config/DataGridConfiguration.class]: Bean
instantiation via factory method failed; nested exception is
org.springframework.beans.BeanInstantiationException: Failed to instantiate
[org.apache.ignite.Ignite]: Factory method 'startNode' threw exception;
nested exception is class org.apache.ignite.IgniteException: Failed to start
manager: GridManagerAdapter [enabled=true,
name=org.apache.ignite.internal.managers.discovery.GridDiscoveryManager]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:587)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:91)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:373)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1344)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:760)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:868)
~[spring-context-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:549)
~[spring-context-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:140)
~[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.refresh(SpringApplication.java:752)
[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:388)
[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.run(SpringApplication.java:327)
[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.run(SpringApplication.java:1246)
[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
org.springframework.boot.SpringApplication.run(SpringApplication.java:1234)
[spring-boot-2.0.0.RELEASE.jar:2.0.0.RELEASE]
at
cc.platform.expresso.engine.ExpressoEngineApplication.main(ExpressoEngineApplication.java:10)
[classes/:na]
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException:
Error creating bean with name 'contentManager': Unsatisfied dependency
expressed through field 'contentMap'; nested exception is
org.springframework.beans.factory.UnsatisfiedDependencyException: Error
creating bean with name 'contentCache' defined in class path resource
[cc/platform/expresso/storage/config/DataGridConfiguration.class]:
Unsatisfied dependency expressed through method 'contentCache' parameter 0;
nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'startNode' defined in class path resource
[cc/platform/expresso/storage/config/DataGridConfiguration.class]: Bean
instantiation via factory method failed; nested exception is
org.springframework.beans.BeanInstantiationException: Failed to instantiate
[org.apache.ignite.Ignite]: Factory method 'startNode' threw exception;
nested exception is class org.apache.ignite.IgniteException: Failed to start
manager: GridManagerAdapter [enabled=true,
name=org.apache.ignite.internal.managers.discovery.GridDiscoveryManager]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:587)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:91)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:373)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1344)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
... 19 common frames omitted
Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException:
Error creating bean with name 'contentCache' defined in class path resource
[cc/platform/expresso/storage/config/DataGridConfiguration.class]:
Unsatisfied dependency expressed through method 'contentCache' parameter 0;
nested exception is org.springframework.beans.factory.BeanCreationException:
Error creating bean with name 'startNode' defined in class path resource
[cc/platform/expresso/storage/config/DataGridConfiguration.class]: Bean
instantiation via factory method failed; nested exception is
org.springframework.beans.BeanInstantiationException: Failed to instantiate
[org.apache.ignite.Ignite]: Factory method 'startNode' threw exception;
nested exception is class org.apache.ignite.IgniteException: Failed to start
manager: GridManagerAdapter [enabled=true,
name=org.apache.ignite.internal.managers.discovery.GridDiscoveryManager]
at
org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:729)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:470)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1250)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1099)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:545)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:584)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
... 32 common frames omitted
Caused by: org.springframework.beans.factory.BeanCreationException: Error
creating bean with name 'startNode' defined in class path resource
[cc/platform/expresso/storage/config/DataGridConfiguration.class]: Bean
instantiation via factory method failed; nested exception is
org.springframework.beans.BeanInstantiationException: Failed to instantiate
[org.apache.ignite.Ignite]: Factory method 'startNode' threw exception;
nested exception is class org.apache.ignite.IgniteException: Failed to start
manager: GridManagerAdapter [enabled=true,
name=org.apache.ignite.internal.managers.discovery.GridDiscoveryManager]
at
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:587)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1250)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1099)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:545)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:502)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:312)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:228)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:310)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:251)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1138)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1065)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:815)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:721)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
... 45 common frames omitted
Caused by: org.springframework.beans.BeanInstantiationException: Failed to
instantiate [org.apache.ignite.Ignite]: Factory method 'startNode' threw
exception; nested exception is class org.apache.ignite.IgniteException:
Failed to start manager: GridManagerAdapter [enabled=true,
name=org.apache.ignite.internal.managers.discovery.GridDiscoveryManager]
at
org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:185)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:579)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
... 58 common frames omitted
Caused by: org.apache.ignite.IgniteException: Failed to start manager:
GridManagerAdapter [enabled=true,
name=org.apache.ignite.internal.managers.discovery.GridDiscoveryManager]
at
org.apache.ignite.internal.util.IgniteUtils.convertException(IgniteUtils.java:980)
~[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.Ignition.getOrStart(Ignition.java:417)
~[ignite-core-2.4.0.jar:2.4.0]
at
cc.platform.expresso.storage.config.DataGridConfiguration.startNode(DataGridConfiguration.java:104)
~[classes/:na]
at
cc.platform.expresso.storage.config.DataGridConfiguration$$EnhancerBySpringCGLIB$$2ebb6e8c.CGLIB$startNode$7(<generated>)
~[classes/:na]
at
cc.platform.expresso.storage.config.DataGridConfiguration$$EnhancerBySpringCGLIB$$2ebb6e8c$$FastClassBySpringCGLIB$$c4a092b7.invoke(<generated>)
~[classes/:na]
at
org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228)
~[spring-core-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:361)
~[spring-context-5.0.4.RELEASE.jar:5.0.4.RELEASE]
at
cc.platform.expresso.storage.config.DataGridConfiguration$$EnhancerBySpringCGLIB$$2ebb6e8c.startNode(<generated>)
~[classes/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
~[na:1.8.0_131]
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
~[na:1.8.0_131]
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
~[na:1.8.0_131]
at java.lang.reflect.Method.invoke(Method.java:498) ~[na:1.8.0_131]
at
org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:154)
~[spring-beans-5.0.4.RELEASE.jar:5.0.4.RELEASE]
... 59 common frames omitted
Caused by: org.apache.ignite.IgniteCheckedException: Failed to start
manager: GridManagerAdapter [enabled=true,
name=org.apache.ignite.internal.managers.discovery.GridDiscoveryManager]
at
org.apache.ignite.internal.IgniteKernal.startManager(IgniteKernal.java:1674)
~[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.internal.IgniteKernal.start(IgniteKernal.java:983)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start0(IgnitionEx.java:1973)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.internal.IgnitionEx$IgniteNamedInstance.start(IgnitionEx.java:1716)
~[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.internal.IgnitionEx.start0(IgnitionEx.java:1144)
~[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:664)
~[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.internal.IgnitionEx.start(IgnitionEx.java:604)
~[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.Ignition.getOrStart(Ignition.java:414)
~[ignite-core-2.4.0.jar:2.4.0]
... 70 common frames omitted
Caused by: org.apache.ignite.IgniteCheckedException: Failed to start SPI:
TcpDiscoverySpi [addrRslvr=null, sockTimeout=5000, ackTimeout=5000,
marsh=JdkMarshaller
[clsFilter=org.apache.ignite.internal.IgniteKernal$5@743c6ce4], reconCnt=10,
reconDelay=2000, maxAckTimeout=600000, forceSrvMode=false,
clientReconnectDisabled=false]
at
org.apache.ignite.internal.managers.GridManagerAdapter.startSpi(GridManagerAdapter.java:300)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.internal.managers.discovery.GridDiscoveryManager.start(GridDiscoveryManager.java:892)
~[ignite-core-2.4.0.jar:2.4.0]
at
org.apache.ignite.internal.IgniteKernal.startManager(IgniteKernal.java:1669)
~[ignite-core-2.4.0.jar:2.4.0]
... 77 common frames omitted
Caused by: org.apache.ignite.spi.IgniteSpiException: Some error in join
process.
at
org.apache.ignite.spi.discovery.tcp.ClientImpl$MessageWorker.body(ClientImpl.java:1792)
~[ignite-core-2.4.0.jar:2.4.0]
at org.apache.ignite.spi.IgniteSpiThread.run(IgniteSpiThread.java:62)
~[ignite-core-2.4.0.jar:2.4.0]
--
Sent from: http://apache-ignite-users.70518.x6.nabble.com/