I am doing multiple puts from the cache from multiple threads which leads to the following error.
Is there some tuning required in terms of the network size or the extend TCP client, or is it better to use a storage disabled cluster member here instead of the extend client?
CACHE SERVER LOG:
DEBUG [2013-11-19 12:37:25,220] b.s.cache.loader.ChorusBlotterLoader - Storing the entity class testpackage.set.ejb.model.blotter.fortis.ChorusBlotterDb with id 8365
ERROR [2013-11-19 12:38:03,202] Coherence - 2013-11-19 12:38:02.822/68809.726 Oracle Coherence GE 3.7.1.9 <Error> (thread=Proxy:ExtendTcpProxyService, member=1): Assertion failed:
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.ProxyService$ServiceLoad.setMessageBacklogIncoming(ProxyService.CDB:1)
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.ProxyService.onNotify(ProxyService.CDB:29)
at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42)
at java.lang.Thread.run(Thread.java:662)
ERROR [2013-11-19 12:38:03,202] Coherence - 2013-11-19 12:38:02.833/68809.737 Oracle Coherence GE 3.7.1.9 <Error> (thread=Proxy:ExtendTcpProxyService, member=1): Terminating ProxyService due to unhandled exception: com.tangosol.util.AssertionException
ERROR [2013-11-19 12:38:03,323] Coherence - 2013-11-19 12:38:02.833/68809.737 Oracle Coherence GE 3.7.1.9 <Error> (thread=Proxy:ExtendTcpProxyService, member=1):
com.tangosol.util.AssertionException:
at com.tangosol.coherence.Component._assertFailed(Component.CDB:12) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.Component._assert(Component.CDB:3) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.ProxyService$ServiceLoad.setMessageBacklogIncoming(ProxyService.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.grid.ProxyService.onNotify(ProxyService.CDB:29) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42) [coherence-3.7.1.9.jar:3.7.1.9]
at java.lang.Thread.run(Thread.java:662) [na:1.6.0_45]
CACHE CLIENT LOG:
DEBUG [2013-11-19 12:38:03,215] b.s.r.event.handler.CallableExecutor - Product 17745READ DATA from the cache in 0 ms
ERROR [2013-11-19 12:38:03,218] b.s.r.event.handler.CallableExecutor - An error occured when processing the event for the product 47811
com.tangosol.net.messaging.ConnectionException: TcpConnection(Id=0x000001427019141D0A1EBA1056DF67FCCEE03D203B6A682CC18ED457136D7ED8, Open=true, Member(Id=0, Timestamp=2013-11-19 11:22:40.969, Address=10.185.184.44:0, MachineId=0, Location=site:,machine:parvs1112686,process:27419), LocalAddress=0.0.0.0:59203, RemoteAddress=10.30.186.16:10495)
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.peer.initiator.TcpInitiator$TcpConnection.send(TcpInitiator.CDB:59) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer.send(Peer.CDB:30) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.Peer.post(Peer.CDB:23) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.Channel.post(Channel.CDB:25) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.Channel.request(Channel.CDB:18) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.Channel.request(Channel.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.RemoteNamedCache$BinaryCache.put(RemoteNamedCache.CDB:15) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.RemoteNamedCache$BinaryCache.put(RemoteNamedCache.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.util.ConverterCollections$ConverterCacheMap.put(ConverterCollections.java:2613) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.RemoteNamedCache.put(RemoteNamedCache.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.SafeNamedCache.put(SafeNamedCache.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.net.cache.CachingMap.put(CachingMap.java:958) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.net.cache.CachingMap.put(CachingMap.java:917) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.net.cache.CachingMap.put(CachingMap.java:826) ~[coherence-3.7.1.9.jar:3.7.1.9]
at testpackage.set.realtime.cache.accessors.RealtimeDataCacheAccessor.putInCache(RealtimeDataCacheAccessor.java:29) ~[realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at testpackage.set.realtime.event.handler.CacheUpdateHandlerImpl.onEvent(CacheUpdateHandlerImpl.java:48) ~[realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at testpackage.set.realtime.event.handler.CacheUpdateHandlerImpl.onEvent(CacheUpdateHandlerImpl.java:15) ~[realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at testpackage.set.realtime.event.handler.CallableExecutor.onEvent(CallableExecutor.java:45) ~[realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at testpackage.set.realtime.event.handler.AsyncCompositeEventHandlerImpl$1.run(AsyncCompositeEventHandlerImpl.java:149) [realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:439) [na:1.6.0_45]
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) [na:1.6.0_45]
at java.util.concurrent.FutureTask.run(FutureTask.java:138) [na:1.6.0_45]
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895) [na:1.6.0_45]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918) [na:1.6.0_45]
at java.lang.Thread.run(Thread.java:662) [na:1.6.0_45]
Caused by: java.net.SocketException: Broken pipe
at java.net.SocketOutputStream.socketWrite0(Native Method) ~[na:1.6.0_45]
at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92) ~[na:1.6.0_45]
at java.net.SocketOutputStream.write(SocketOutputStream.java:136) ~[na:1.6.0_45]
at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65) ~[na:1.6.0_45]
at java.io.BufferedOutputStream.write(BufferedOutputStream.java:104) ~[na:1.6.0_45]
at java.io.DataOutputStream.write(DataOutputStream.java:90) ~[na:1.6.0_45]
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.peer.initiator.TcpInitiator$TcpConnection.send(TcpInitiator.CDB:52) ~[coherence-3.7.1.9.jar:3.7.1.9]
... 24 common frames omitted
DEBUG [2013-11-19 12:38:03,219] b.s.r.event.handler.CallableExecutor - Product 18517READ DATA from the cache in 0 ms
ERROR [2013-11-19 12:38:03,220] b.s.r.event.handler.CallableExecutor - An error occured when processing the event for the product 53446
com.tangosol.net.messaging.ConnectionException: TcpConnection(Id=0x000001427019141D0A1EBA1056DF67FCCEE03D203B6A682CC18ED457136D7ED8, Open=true, Member(Id=0, Timestamp=2013-11-19 11:22:40.969, Address=10.185.184.44:0, MachineId=0, Location=site:,machine:parvs1112686,process:27419), LocalAddress=0.0.0.0:59203, RemoteAddress=10.30.186.16:10495)
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.peer.initiator.TcpInitiator$TcpConnection$TcpReader.onNotify(TcpInitiator.CDB:49) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42) ~[coherence-3.7.1.9.jar:3.7.1.9]
at java.lang.Thread.run(Thread.java:662) [na:1.6.0_45]
Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168) ~[na:1.6.0_45]
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218) ~[na:1.6.0_45]
at java.io.BufferedInputStream.read(BufferedInputStream.java:237) ~[na:1.6.0_45]
at java.io.DataInputStream.readUnsignedByte(DataInputStream.java:271) ~[na:1.6.0_45]
at com.tangosol.util.ExternalizableHelper.readInt(ExternalizableHelper.java:540) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.peer.initiator.TcpInitiator$TcpConnection$TcpReader.onNotify(TcpInitiator.CDB:20) ~[coherence-3.7.1.9.jar:3.7.1.9]
... 2 common frames omitted
DEBUG [2013-11-19 12:38:03,220] b.s.r.event.handler.CallableExecutor - Product 19875READ DATA from the cache in 0 ms
ERROR [2013-11-19 12:38:03,221] b.s.r.event.handler.CallableExecutor - An error occured when processing the event for the product 42476
com.tangosol.net.messaging.ConnectionException: TcpConnection(Id=0x000001427019141D0A1EBA1056DF67FCCEE03D203B6A682CC18ED457136D7ED8, Open=true, Member(Id=0, Timestamp=2013-11-19 11:22:40.969, Address=10.185.184.44:0, MachineId=0, Location=site:,machine:parvs1112686,process:27419), LocalAddress=0.0.0.0:59203, RemoteAddress=10.30.186.16:10495)
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.peer.initiator.TcpInitiator$TcpConnection$TcpReader.onNotify(TcpInitiator.CDB:49) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42) ~[coherence-3.7.1.9.jar:3.7.1.9]
at java.lang.Thread.run(Thread.java:662) [na:1.6.0_45]
Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168) ~[na:1.6.0_45]
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218) ~[na:1.6.0_45]
at java.io.BufferedInputStream.read(BufferedInputStream.java:237) ~[na:1.6.0_45]
at java.io.DataInputStream.readUnsignedByte(DataInputStream.java:271) ~[na:1.6.0_45]
at com.tangosol.util.ExternalizableHelper.readInt(ExternalizableHelper.java:540) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.peer.initiator.TcpInitiator$TcpConnection$TcpReader.onNotify(TcpInitiator.CDB:20) ~[coherence-3.7.1.9.jar:3.7.1.9]
... 2 common frames omitted
ERROR [2013-11-19 12:38:03,221] b.s.r.event.handler.CallableExecutor - An error occured when processing the event for the product 25692
com.tangosol.net.messaging.ConnectionException: TcpConnection(Id=0x000001427019141D0A1EBA1056DF67FCCEE03D203B6A682CC18ED457136D7ED8, Open=true, Member(Id=0, Timestamp=2013-11-19 11:22:40.969, Address=10.185.184.44:0, MachineId=0, Location=site:,machine:parvs1112686,process:27419), LocalAddress=0.0.0.0:59203, RemoteAddress=10.30.186.16:10495)
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.peer.initiator.TcpInitiator$TcpConnection$TcpReader.onNotify(TcpInitiator.CDB:49) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42) ~[coherence-3.7.1.9.jar:3.7.1.9]
at java.lang.Thread.run(Thread.java:662) [na:1.6.0_45]
Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168) ~[na:1.6.0_45]
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218) ~[na:1.6.0_45]
at java.io.BufferedInputStream.read(BufferedInputStream.java:237) ~[na:1.6.0_45]
at java.io.DataInputStream.readUnsignedByte(DataInputStream.java:271) ~[na:1.6.0_45]
at com.tangosol.util.ExternalizableHelper.readInt(ExternalizableHelper.java:540) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.peer.initiator.TcpInitiator$TcpConnection$TcpReader.onNotify(TcpInitiator.CDB:20) ~[coherence-3.7.1.9.jar:3.7.1.9]
... 2 common frames omitted
ERROR [2013-11-19 12:38:03,221] b.s.r.event.handler.CallableExecutor - An error occured when processing the event for the product 54732
com.tangosol.net.messaging.ConnectionException: TcpConnection(Id=0x000001427019141D0A1EBA1056DF67FCCEE03D203B6A682CC18ED457136D7ED8, Open=true, Member(Id=0, Timestamp=2013-11-19 11:22:40.969, Address=10.185.184.44:0, MachineId=0, Location=site:,machine:parvs1112686,process:27419), LocalAddress=0.0.0.0:59203, RemoteAddress=10.30.186.16:10495)
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.peer.initiator.TcpInitiator$TcpConnection$TcpReader.onNotify(TcpInitiator.CDB:49) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.Daemon.run(Daemon.CDB:42) ~[coherence-3.7.1.9.jar:3.7.1.9]
at java.lang.Thread.run(Thread.java:662) [na:1.6.0_45]
Caused by: java.net.SocketException: Connection reset
at java.net.SocketInputStream.read(SocketInputStream.java:168) ~[na:1.6.0_45]
at java.io.BufferedInputStream.fill(BufferedInputStream.java:218) ~[na:1.6.0_45]
at java.io.BufferedInputStream.read(BufferedInputStream.java:237) ~[na:1.6.0_45]
at java.io.DataInputStream.readUnsignedByte(DataInputStream.java:271) ~[na:1.6.0_45]
at com.tangosol.util.ExternalizableHelper.readInt(ExternalizableHelper.java:540) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.daemon.queueProcessor.service.peer.initiator.TcpInitiator$TcpConnection$TcpReader.onNotify(TcpInitiator.CDB:20) ~[coherence-3.7.1.9.jar:3.7.1.9]
... 2 common frames omitted
DEBUG [2013-11-19 12:38:03,221] b.s.r.event.handler.CallableExecutor - Product 23014READ DATA from the cache in 0 ms
DEBUG [2013-11-19 12:38:03,221] b.s.r.event.handler.CallableExecutor - Product 20342READ DATA from the cache in 0 ms
DEBUG [2013-11-19 12:38:03,221] b.s.r.event.handler.CallableExecutor - Product 24641READ DATA from the cache in 0 ms
ERROR [2013-11-19 12:38:03,221] b.s.r.event.handler.CallableExecutor - An error occured when processing the event for the product 18517
com.tangosol.net.messaging.ConnectionException: TcpConnection(Id=0x000001427019141D0A1EBA1056DF67FCCEE03D203B6A682CC18ED457136D7ED8, Open=true, Member(Id=0, Timestamp=2013-11-19 11:22:40.969, Address=10.185.184.44:0, MachineId=0, Location=site:,machine:parvs1112686,process:27419), LocalAddress=0.0.0.0:59203, RemoteAddress=10.30.186.16:10495): connection is closing
at com.tangosol.coherence.component.net.extend.Connection.gateEnter(Connection.CDB:12) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.Channel.gateEnter(Channel.CDB:5) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.Channel.post(Channel.CDB:20) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.Channel.request(Channel.CDB:18) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.Channel.request(Channel.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.RemoteNamedCache$BinaryCache.put(RemoteNamedCache.CDB:15) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.RemoteNamedCache$BinaryCache.put(RemoteNamedCache.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.util.ConverterCollections$ConverterCacheMap.put(ConverterCollections.java:2613) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.RemoteNamedCache.put(RemoteNamedCache.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.SafeNamedCache.put(SafeNamedCache.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.net.cache.CachingMap.put(CachingMap.java:958) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.net.cache.CachingMap.put(CachingMap.java:917) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.net.cache.CachingMap.put(CachingMap.java:826) ~[coherence-3.7.1.9.jar:3.7.1.9]
at testpackage.set.realtime.cache.accessors.RealtimeDataCacheAccessor.putInCache(RealtimeDataCacheAccessor.java:29) ~[realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at testpackage.set.realtime.event.handler.CacheUpdateHandlerImpl.onEvent(CacheUpdateHandlerImpl.java:48) ~[realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at testpackage.set.realtime.event.handler.CacheUpdateHandlerImpl.onEvent(CacheUpdateHandlerImpl.java:15) ~[realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at testpackage.set.realtime.event.handler.CallableExecutor.onEvent(CallableExecutor.java:45) ~[realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at testpackage.set.realtime.event.handler.AsyncCompositeEventHandlerImpl$1.run(AsyncCompositeEventHandlerImpl.java:149) [realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:439) [na:1.6.0_45]
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) [na:1.6.0_45]
at java.util.concurrent.FutureTask.run(FutureTask.java:138) [na:1.6.0_45]
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895) [na:1.6.0_45]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918) [na:1.6.0_45]
at java.lang.Thread.run(Thread.java:662) [na:1.6.0_45]
DEBUG [2013-11-19 12:38:03,221] b.s.r.event.handler.CallableExecutor - Product 19932READ DATA from the cache in 0 ms
ERROR [2013-11-19 12:38:03,221] b.s.r.event.handler.CallableExecutor - An error occured when processing the event for the product 19875
com.tangosol.net.messaging.ConnectionException: TcpConnection(Id=0x000001427019141D0A1EBA1056DF67FCCEE03D203B6A682CC18ED457136D7ED8, Open=true, Member(Id=0, Timestamp=2013-11-19 11:22:40.969, Address=10.185.184.44:0, MachineId=0, Location=site:,machine:parvs1112686,process:27419), LocalAddress=0.0.0.0:59203, RemoteAddress=10.30.186.16:10495): connection is closing
at com.tangosol.coherence.component.net.extend.Connection.gateEnter(Connection.CDB:12) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.Channel.gateEnter(Channel.CDB:5) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.Channel.post(Channel.CDB:20) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.Channel.request(Channel.CDB:18) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.Channel.request(Channel.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.RemoteNamedCache$BinaryCache.put(RemoteNamedCache.CDB:15) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.RemoteNamedCache$BinaryCache.put(RemoteNamedCache.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.util.ConverterCollections$ConverterCacheMap.put(ConverterCollections.java:2613) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.net.extend.RemoteNamedCache.put(RemoteNamedCache.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.coherence.component.util.SafeNamedCache.put(SafeNamedCache.CDB:1) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.net.cache.CachingMap.put(CachingMap.java:958) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.net.cache.CachingMap.put(CachingMap.java:917) ~[coherence-3.7.1.9.jar:3.7.1.9]
at com.tangosol.net.cache.CachingMap.put(CachingMap.java:826) ~[coherence-3.7.1.9.jar:3.7.1.9]
at testpackage.set.realtime.cache.accessors.RealtimeDataCacheAccessor.putInCache(RealtimeDataCacheAccessor.java:29) ~[realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at testpackage.set.realtime.event.handler.CacheUpdateHandlerImpl.onEvent(CacheUpdateHandlerImpl.java:48) ~[realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at testpackage.set.realtime.event.handler.CacheUpdateHandlerImpl.onEvent(CacheUpdateHandlerImpl.java:15) ~[realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at testpackage.set.realtime.event.handler.CallableExecutor.onEvent(CallableExecutor.java:45) ~[realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at testpackage.set.realtime.event.handler.AsyncCompositeEventHandlerImpl$1.run(AsyncCompositeEventHandlerImpl.java:149) [realtime-gateway-0.0.7-SNAPSHOT.jar:na]
at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:439) [na:1.6.0_45]
at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303) [na:1.6.0_45]
at java.util.concurrent.FutureTask.run(FutureTask.java:138) [na:1.6.0_45]
at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895) [na:1.6.0_45]
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918) [na:1.6.0_45]