question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

I’m really not sure if this is the right tracker to submit this to, but nevertheless I willl do it. In my company we are developing a spring-boot application and we use embedded redis for managing spring-session sessions. With version 1.5.x of the spring-boot project every time I press Ctrl+C to kill the server it stops immediately (I know they are using jedis for managing connections to redis). With 2.0.0-SNAPSHOT of the sprnig-boot project, sometimes the server stops, and sometimes I have to wait about 3 minutes before it realizes that Redis is gone so it needs to kill itself (I believe they switched to lettuce for managing redis connections). Here’s a detailed dump of my application log:

2017-12-12 12:00:00,286 com.nemesis.platform.module.commerce.config.CommerceModuleSearchExportAutoConfiguration$$EnhancerBySpringCGLIB$$461e2637 [quartzScheduler_Worker-8] INFO : Exporting products modified after 1970-01-01T00:00 to search server: update , jobParameters= {type=update, session.currentSite=samplestore-telco}
2017-12-12 12:00:01,629 org.elasticsearch.cluster.metadata.MetaDataMappingService [elasticsearch[DhVUO9j][clusterService#updateTask][T#1]] INFO : [products/cw4Iu2aZSM-nAw08DmcaEA] update_mapping [product]
^C2017-12-12 12:01:42,894 org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext [Thread-12] INFO : Closing org.springframework.boot.web.servlet.context.AnnotationConfigServletWebServerApplicationContext@6c2d4cc6: startup date [Tue Dec 12 11:52:30 EET 2017]; root of context hierarchy
2017-12-12 12:01:42,900 org.springframework.context.support.DefaultLifecycleProcessor [Thread-12] INFO : Stopping beans in phase 2147483647
2017-12-12 12:01:43,002 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-eventExecutorLoop-2-2] INFO : Reconnecting, last destination was localhost/127.0.0.1:6379
2017-12-12 12:01:43,002 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-eventExecutorLoop-2-3] INFO : Reconnecting, last destination was localhost/127.0.0.1:6379
2017-12-12 12:01:43,019 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-nioEventLoop-4-3] WARN : Cannot reconnect: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:6379
2017-12-12 12:01:43,019 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-nioEventLoop-4-4] WARN : Cannot reconnect: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:6379
git s2017-12-12 12:01:45,538 org.quartz.core.QuartzSchedulerThread [quartzScheduler_QuartzSchedulerThread] ERROR: quartzSchedulerThreadLoop: RuntimeException Could not get a resource from the pool
redis.clients.jedis.exceptions.JedisConnectionException: Could not get a resource from the pool
	at redis.clients.util.Pool.getResource(Pool.java:53)
	at redis.clients.jedis.JedisPool.getResource(JedisPool.java:226)
	at redis.clients.jedis.JedisPool.getResource(JedisPool.java:16)
	at net.joelinn.quartz.jobstore.RedisJobStore.getResource(RedisJobStore.java:1161)
	at net.joelinn.quartz.jobstore.RedisJobStore.doWithLock(RedisJobStore.java:1134)
	at net.joelinn.quartz.jobstore.RedisJobStore.acquireNextTriggers(RedisJobStore.java:1020)
	at org.quartz.core.QuartzSchedulerThread.run(QuartzSchedulerThread.java:287)
Caused by: redis.clients.jedis.exceptions.JedisConnectionException: java.net.ConnectException: Connection refused (Connection refused)
	at redis.clients.jedis.Connection.connect(Connection.java:207)
	at redis.clients.jedis.BinaryClient.connect(BinaryClient.java:93)
	at redis.clients.jedis.BinaryJedis.connect(BinaryJedis.java:1767)
	at redis.clients.jedis.JedisFactory.makeObject(JedisFactory.java:106)
	at org.apache.commons.pool2.impl.GenericObjectPool.create(GenericObjectPool.java:888)
	at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:432)
	at org.apache.commons.pool2.impl.GenericObjectPool.borrowObject(GenericObjectPool.java:361)
	at redis.clients.util.Pool.getResource(Pool.java:49)
	... 6 more
Caused by: java.net.ConnectException: Connection refused (Connection refused)
	at java.net.PlainSocketImpl.socketConnect(Native Method)
	at java.net.AbstractPlainSocketImpl.doConnect(AbstractPlainSocketImpl.java:350)
	at java.net.AbstractPlainSocketImpl.connectToAddress(AbstractPlainSocketImpl.java:206)
	at java.net.AbstractPlainSocketImpl.connect(AbstractPlainSocketImpl.java:188)
	at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:392)
	at java.net.Socket.connect(Socket.java:589)
	at redis.clients.jedis.Connection.connect(Connection.java:184)
	... 13 more
Exception in thread "quartzScheduler_QuartzSchedulerThread" java.lang.AbstractMethodError: net.joelinn.quartz.jobstore.RedisJobStore.getAcquireRetryDelay(I)J
	at org.quartz.core.QuartzSchedulerThread.computeDelayForRepeatedErrors(QuartzSchedulerThread.java:450)
	at org.quartz.core.QuartzSchedulerThread.run(QuartzSchedulerThread.java:272)
2017-12-12 12:01:52,097 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-eventExecutorLoop-2-3] INFO : Reconnecting, last destination was localhost:6379
2017-12-12 12:01:52,097 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-eventExecutorLoop-2-2] INFO : Reconnecting, last destination was localhost:6379
2017-12-12 12:01:52,100 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-nioEventLoop-4-4] WARN : Cannot reconnect: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:6379
2017-12-12 12:01:52,100 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-nioEventLoop-4-3] WARN : Cannot reconnect: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:6379
2017-12-12 12:02:00,297 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-eventExecutorLoop-2-4] INFO : Reconnecting, last destination was localhost:6379
2017-12-12 12:02:00,297 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-eventExecutorLoop-2-5] INFO : Reconnecting, last destination was localhost:6379
2017-12-12 12:02:00,301 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-nioEventLoop-4-5] WARN : Cannot reconnect: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:6379
2017-12-12 12:02:00,301 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-nioEventLoop-4-6] WARN : Cannot reconnect: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:6379
2017-12-12 12:02:16,698 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-eventExecutorLoop-2-7] INFO : Reconnecting, last destination was localhost:6379
2017-12-12 12:02:16,698 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-eventExecutorLoop-2-6] INFO : Reconnecting, last destination was localhost:6379
2017-12-12 12:02:16,699 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-nioEventLoop-4-7] WARN : Cannot reconnect: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:6379
2017-12-12 12:02:16,699 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-nioEventLoop-4-8] WARN : Cannot reconnect: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:6379
^C
^C
^C
^C
^C
2017-12-12 12:02:42,903 org.springframework.context.support.DefaultLifecycleProcessor [Thread-12] WARN : Failed to stop bean 'redisMessageListenerContainer'
io.lettuce.core.RedisCommandTimeoutException: Command timed out
	at io.lettuce.core.LettuceFutures.awaitOrCancel(LettuceFutures.java:114)
	at io.lettuce.core.FutureSyncInvocationHandler.handleInvocation(FutureSyncInvocationHandler.java:62)
	at io.lettuce.core.internal.AbstractInvocationHandler.invoke(AbstractInvocationHandler.java:80)
	at com.sun.proxy.$Proxy587.punsubscribe(Unknown Source)
	at org.springframework.data.redis.connection.lettuce.LettuceSubscription.doPUnsubscribe(LettuceSubscription.java:59)
	at org.springframework.data.redis.connection.util.AbstractSubscription.pUnsubscribe(AbstractSubscription.java:163)
	at org.springframework.data.redis.connection.util.AbstractSubscription.pUnsubscribe(AbstractSubscription.java:134)
	at org.springframework.data.redis.listener.RedisMessageListenerContainer$SubscriptionTask.cancel(RedisMessageListenerContainer.java:855)
	at org.springframework.data.redis.listener.RedisMessageListenerContainer.stop(RedisMessageListenerContainer.java:225)
	at org.springframework.data.redis.listener.RedisMessageListenerContainer.stop(RedisMessageListenerContainer.java:183)
	at org.springframework.context.support.DefaultLifecycleProcessor.doStop(DefaultLifecycleProcessor.java:238)
	at org.springframework.context.support.DefaultLifecycleProcessor.access$300(DefaultLifecycleProcessor.java:52)
	at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.stop(DefaultLifecycleProcessor.java:375)
	at org.springframework.context.support.DefaultLifecycleProcessor.stopBeans(DefaultLifecycleProcessor.java:211)
	at org.springframework.context.support.DefaultLifecycleProcessor.onClose(DefaultLifecycleProcessor.java:129)
	at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1005)
	at org.springframework.context.support.AbstractApplicationContext$1.run(AbstractApplicationContext.java:933)
2017-12-12 12:02:42,904 org.springframework.messaging.simp.broker.SimpleBrokerMessageHandler [Thread-12] INFO : Stopping...
2017-12-12 12:02:42,904 org.springframework.messaging.simp.broker.SimpleBrokerMessageHandler [Thread-12] INFO : BrokerAvailabilityEvent[available=false, SimpleBrokerMessageHandler [DefaultSubscriptionRegistry[cache[0 destination(s)], registry[0 sessions]]]]
2017-12-12 12:02:42,905 org.springframework.messaging.simp.broker.SimpleBrokerMessageHandler [Thread-12] INFO : Stopped.
2017-12-12 12:02:42,905 org.quartz.core.QuartzScheduler [Thread-12] INFO : Scheduler quartzScheduler_$_petar-XPS-15-95501513072407391 paused.
2017-12-12 12:02:46,797 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-eventExecutorLoop-2-1] INFO : Reconnecting, last destination was localhost:6379
2017-12-12 12:02:46,797 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-eventExecutorLoop-2-8] INFO : Reconnecting, last destination was localhost:6379
2017-12-12 12:02:46,800 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-nioEventLoop-4-2] WARN : Cannot reconnect: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:6379
2017-12-12 12:02:46,800 io.lettuce.core.protocol.ConnectionWatchdog [lettuce-nioEventLoop-4-1] WARN : Cannot reconnect: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:6379
2017-12-12 12:03:00,001 org.springframework.scheduling.support.TaskUtils$LoggingErrorHandler [defaultTaskScheduler-2] ERROR: Unexpected error occurred in scheduled task.
org.springframework.dao.QueryTimeoutException: Redis command timed out; nested exception is io.lettuce.core.RedisCommandTimeoutException: Command timed out
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:70)
	at org.springframework.data.redis.connection.lettuce.LettuceExceptionConverter.convert(LettuceExceptionConverter.java:41)
	at org.springframework.data.redis.PassThroughExceptionTranslationStrategy.translate(PassThroughExceptionTranslationStrategy.java:44)
	at org.springframework.data.redis.FallbackExceptionTranslationStrategy.translate(FallbackExceptionTranslationStrategy.java:42)
	at org.springframework.data.redis.connection.lettuce.LettuceConnection.convertLettuceAccessException(LettuceConnection.java:257)
	at org.springframework.data.redis.connection.lettuce.LettuceSetCommands.convertLettuceAccessException(LettuceSetCommands.java:520)
	at org.springframework.data.redis.connection.lettuce.LettuceSetCommands.sMembers(LettuceSetCommands.java:245)
	at org.springframework.data.redis.connection.DefaultedRedisConnection.sMembers(DefaultedRedisConnection.java:550)
	at org.springframework.data.redis.core.DefaultSetOperations.lambda$members$6(DefaultSetOperations.java:158)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:224)
	at org.springframework.data.redis.core.RedisTemplate.execute(RedisTemplate.java:184)
	at org.springframework.data.redis.core.AbstractOperations.execute(AbstractOperations.java:95)
	at org.springframework.data.redis.core.DefaultSetOperations.members(DefaultSetOperations.java:158)
	at org.springframework.data.redis.core.DefaultBoundSetOperations.members(DefaultBoundSetOperations.java:152)
	at org.springframework.session.data.redis.RedisSessionExpirationPolicy.cleanExpiredSessions(RedisSessionExpirationPolicy.java:132)
	at org.springframework.session.data.redis.RedisOperationsSessionRepository.cleanupExpiredSessions(RedisOperationsSessionRepository.java:393)
	at org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration.lambda$configureTasks$0(RedisHttpSessionConfiguration.java:234)
	at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54)
	at org.springframework.scheduling.concurrent.ReschedulingRunnable.run(ReschedulingRunnable.java:93)
	at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
	at java.util.concurrent.FutureTask.run(FutureTask.java:266)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$201(ScheduledThreadPoolExecutor.java:180)
	at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:293)
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at java.lang.Thread.run(Thread.java:748)
Caused by: io.lettuce.core.RedisCommandTimeoutException: Command timed out
	at io.lettuce.core.LettuceFutures.awaitOrCancel(LettuceFutures.java:114)
	at io.lettuce.core.FutureSyncInvocationHandler.handleInvocation(FutureSyncInvocationHandler.java:62)
	at io.lettuce.core.internal.AbstractInvocationHandler.invoke(AbstractInvocationHandler.java:80)
	at com.sun.proxy.$Proxy579.smembers(Unknown Source)
	at org.springframework.data.redis.connection.lettuce.LettuceSetCommands.sMembers(LettuceSetCommands.java:243)
	... 19 more
2017-12-12 12:03:12,907 org.springframework.context.support.DefaultLifecycleProcessor [Thread-12] WARN : Failed to shut down 1 bean with phase value 2147483647 within timeout of 30000: [redisMessageListenerContainer]
2017-12-12 12:03:12,907 org.springframework.context.support.DefaultLifecycleProcessor [Thread-12] INFO : Stopping beans in phase 0
2017-12-12 12:03:12,907 org.springframework.integration.endpoint.EventDrivenConsumer [Thread-12] INFO : Removing {logging-channel-adapter:_org.springframework.integration.errorLogger} as a subscriber to the 'errorChannel' channel
2017-12-12 12:03:12,908 org.springframework.integration.channel.PublishSubscribeChannel [Thread-12] INFO : Channel 'Samplestore:mysql:8112.errorChannel' has 0 subscriber(s).
2017-12-12 12:03:12,908 org.springframework.integration.endpoint.EventDrivenConsumer [Thread-12] INFO : stopped _org.springframework.integration.errorLogger
2017-12-12 12:03:12,920 org.springframework.beans.factory.support.DisposableBeanAdapter [Thread-12] WARN : Invocation of destroy method 'close' failed on bean with name 'defaultWishlistReminderReader': org.springframework.batch.item.ItemStreamException: Error while closing item reader
2017-12-12 12:03:12,931 org.springframework.jmx.export.annotation.AnnotationMBeanExporter [Thread-12] INFO : Unregistering JMX-exposed beans on shutdown
2017-12-12 12:03:12,933 org.springframework.jmx.export.annotation.AnnotationMBeanExporter [Thread-12] INFO : Unregistering JMX-exposed beans
2017-12-12 12:03:12,992 org.quartz.core.QuartzScheduler [Thread-12] INFO : Scheduler quartzScheduler_$_petar-XPS-15-95501513072407391 shutting down.
2017-12-12 12:03:12,992 org.quartz.core.QuartzScheduler [Thread-12] INFO : Scheduler quartzScheduler_$_petar-XPS-15-95501513072407391 paused.
2017-12-12 12:03:12,993 org.quartz.core.QuartzScheduler [Thread-12] INFO : Scheduler quartzScheduler_$_petar-XPS-15-95501513072407391 shutdown complete.
2017-12-12 12:03:12,997 org.elasticsearch.node.Node [Thread-12] INFO : stopping ...
2017-12-12 12:03:13,588 org.elasticsearch.node.Node [Thread-12] INFO : stopped
2017-12-12 12:03:13,589 org.elasticsearch.node.Node [Thread-12] INFO : closing ...
2017-12-12 12:03:13,604 org.elasticsearch.node.Node [Thread-12] INFO : closed
2017-12-12 12:03:13,683 org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean [Thread-12] INFO : Closing JPA EntityManagerFactory for persistence unit 'default'
2017-12-12 12:03:13,684 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.generator.NumberSeriesEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,685 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'org.hibernate.cache.internal.StandardQueryCache' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,685 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'org.hibernate.cache.spi.UpdateTimestampsCache' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,688 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.leasing.LeasingSchemeEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,689 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.i18n.CountryEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,689 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.productscompare.core.entity.ProductsCompareWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,690 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.selector.core.entity.SelectorWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,690 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.filter.CustomerOfTypeFilterEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,691 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.SearchIndexQueryConfigEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,692 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.bundle.core.entity.BundlePriceEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,693 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.PromotionGroupEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,694 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'productDto' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,694 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.business.core.entity.BusinessQuoteNegotiationEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,695 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.email.EmailMessageEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,695 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.faq.core.entity.FaqWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,696 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.batch.BatchStepExecutionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,696 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.ReturnRequestEntryEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,697 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.batch.BatchJobExecutionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,697 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'emailMessageDto' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,698 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.samplestore.core.entity.cms.PartnerTechnicalCapabilityEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,698 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.PromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,699 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'orderDto' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,699 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.social.core.entity.SocialConnectionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,699 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'regionDto' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,699 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.samplestore.core.entity.commerce.ColorEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,700 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.voucher.core.entity.VoucherEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,700 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.business.core.entity.DepartmentEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,700 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.order.OrderThresholdFixedDiscountPromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,700 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'org.hibernate.cache.internal.StandardQueryCache' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,700 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.PromotionResultEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,700 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.AbstractOrderEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,701 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'siteDto' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,701 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.batch.CronjobParameterEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,701 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'categoryUrl' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,701 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.navigation.core.entity.NavigationNodeEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,701 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.samplestore.core.entity.cms.PartnerEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,701 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.CmsSlotEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,702 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.personalization.core.entity.AclObjectIdentityEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,702 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.ListerPageEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,702 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.filter.PrincipalInUserGroupFilterEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,702 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.catalog.ManufacturerEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,702 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.product.ProductBundlePromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,703 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.blog.core.entity.BlogEntryEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,703 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.batch.BatchStepExecutionContextEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,703 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.keyword.SearchKeywordRedirectEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,703 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.CreditCardPaymentInfoEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,703 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.creditaccount.core.entity.CreditAccountBalanceEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,703 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.payment.paypal.core.entity.PaypalPaymentInfoEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,703 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.sitemap.core.entity.SitemapConfigEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,704 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.keyword.UrlKeywordDestinationEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,704 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'org.hibernate.cache.UpdateTimestampsCache' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,704 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.bundle.core.entity.FixedNumberBundleSelectionCriteriaEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,704 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.batch.BatchJobInstanceEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,704 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'widgetDto' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,704 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.deeplink.core.entity.DeeplinkUrlEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,704 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.TerritoryDeliveryModeValueEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,705 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.storelocator.core.entity.WeekdayWorkingEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,705 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.catalog.CatalogVersionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,705 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.banner.core.entity.SimpleBannerWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,705 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.filter.CustomerHasBirthdayTodayFilterEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,705 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.catalog.CatalogEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,705 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.batch.CronjobEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,706 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.wishlist.core.entity.WishlistEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,706 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.SearchIndexConfigEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,706 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.storelocator.core.entity.WorkingDayEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,706 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'cmsSlotsOnPageForSlot' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,706 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'pageUrl' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,707 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.order.OrderPromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,707 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.CartEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,707 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.price.PriceEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,707 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'productUrl' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,707 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.facet.SearchFacetTermProfileEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,708 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.user.UserEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,708 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.product.ProductBOGOFPromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,708 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.DetailsPageEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,708 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.classification.core.entity.TaxonomyDelegateEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,708 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.facet.SearchFacetCategoryConfigEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,708 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.navigation.core.entity.NavigationBarWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,708 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'widgetsForSlot' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,709 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.product.ProductPromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,709 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'current_site_catalog_version_ids' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,709 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.keyword.CategoryKeywordDestinationEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,709 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.batch.StringCronjobParameterEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,709 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.batch.DecimalCronjobParameterEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,709 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.product.ProductMultibuyPromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,709 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.sitemap.core.entity.SitemapPageEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,710 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.productreferences.core.entity.ProductReferencesWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,710 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.business.core.entity.PurchaseLimitEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,710 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.catalog.UnitEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,710 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.classification.core.entity.TaxonEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,710 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.modification.AbstractModifiableEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,711 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.cms.SiteEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,711 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.catalog.ProductReferenceEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,711 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.classification.core.entity.TaxonAttributeEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,711 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'mediaFiles' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,711 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.link.core.entity.ProductLinkWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,711 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'pageDto' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,711 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'locale' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,712 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.order.OrderThresholdFreeGiftPromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,712 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.voucher.core.entity.VoucherInvalidationEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,712 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.storelocator.core.entity.StoreLocatorConfigurationEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,712 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.AbstractTemplateEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,712 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.product.ProductSteppedMultibuyPromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,712 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.SiteThemeEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,712 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.social.core.entity.SocialWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,712 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'currencyUnit' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,713 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.keyword.SearchKeywordDestinationEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,713 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.media.MediaContainerEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,713 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.TerritoryEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,713 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'message' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,713 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.business.core.entity.BusinessQuoteCommentEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,713 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.bundle.core.entity.RangeBundleSelectionCriteriaEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,714 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.leasing.LeasingProviderEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,714 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.wishlist.core.entity.WishlistEntryEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,714 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.AbstractPageEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,714 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.SearchIndexedTypeEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,714 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.batch.BatchJobExecutionContextEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,714 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.media.MediaFormatEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,714 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.TerritoryDeliveryModeEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,715 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.faq.core.entity.FaqEntryEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,715 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.personalization.core.entity.AclClassEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,715 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.SearchServerConfigEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,715 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.barcode.core.entity.BarcodeMediaEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,715 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.social.core.entity.filter.SocialPreferenceFilterEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,715 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.leasing.LeasingPaymentEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,715 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.personalization.core.entity.AclMaskEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,716 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.filter.AbstractFilterEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,716 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.OrderEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,716 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.filter.CmsUiExperienceFilterEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,716 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.OrderEntryEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,716 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.faq.core.entity.FaqSectionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,716 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.customerreview.core.entity.CustomerReviewEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,717 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.CmsCatalogEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,717 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.storelocator.core.entity.OpeningScheduleEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,717 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.catalog.VariantProductEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,717 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.filter.CustomerDefaultShippingAddressCountryFilterEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,717 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.order.PromotionDeliveryModeEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,717 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.user.TitleEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,717 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.carousel.core.entity.ProductCarouselWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,717 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.CartEntryEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,718 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.product.ProductFixedPricePromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,718 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'countryDto' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,718 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'productKeywordDestinationUrl' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,718 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.product.ProductOneToOnePerfectPartnerBundlePromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,718 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.location.OrganizationEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,718 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.search.ProductKeywordDestinationEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,718 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.SearchIndexedPropertyEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,719 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.bloglister.core.entity.BlogListerWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,719 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.ruleservices.core.entity.RuleEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,719 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.catalog.VariantAttributeDescriptorEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,719 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.order.OrderThresholdFreeVoucherPromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,719 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.location.WarehouseEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,719 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.user.UserGroupEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,720 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.catalog.KeywordEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,720 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.facet.SearchFacetSliderProfileEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,720 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.PaymentModeEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,720 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.IndexedPropertyQueryConfigEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,720 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.minicart.core.entity.MiniCartWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,720 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'pageTemplateDto' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,721 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.AdvancePaymentInfoEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,721 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.order.OrderThresholdPerfectPartnerPromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,722 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.bundle.core.entity.BundleSelectionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,723 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'cmsPageKeywordDestinationUrl' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,723 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.user.EmployeeEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,723 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.product.ProductPerfectPartnerBundlePromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,723 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.user.CustomerEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,723 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.business.core.entity.BusinessQuoteEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,723 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.categorylister.core.entity.CategoryListerWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,724 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.media.MediaWatermarkEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,724 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.EmailPageEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,724 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.stackexchangequestions.core.entity.StackExchangeQuestionsWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,724 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.ReturnRequestEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,724 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.batch.AbstractBatchEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,724 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'acl_cache' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,724 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.user.PrincipalEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,725 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.personalization.core.entity.AclEntryEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,725 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.PageTemplateEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,725 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.i18n.RegionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,725 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'currencies' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,725 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.banner.core.entity.SuperBannerWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,725 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.social.core.entity.SocialPreferenceEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,725 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'cmsSlotDto' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,726 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.WidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,726 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.search.PageKeywordDestinationEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,726 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.price.DiscountEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,726 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'categoryKeywordDestinationUrl' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,726 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.carousel.core.entity.SimpleCarouselWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,726 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.samplestore.core.entity.commerce.ProductMaterialEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,726 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.batch.IntegerCronjobParameterEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,727 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.catalog.VariantTypeEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,727 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.SearchIndexBuilderConfigEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,727 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.bundle.core.entity.BundleSelectionCriteriaEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,727 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.bundle.core.entity.BundleTemplateEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,727 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.paragraph.core.entity.ParagraphWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,727 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.media.MediaEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,727 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'markup' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,728 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.facet.SearchFacetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,728 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'urlKeywordDestinationUrl' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,728 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.PaymentInfoEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,728 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'categoryDto' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,728 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.core.entity.PopupWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,728 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.catalog.StockLevelEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,728 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.CmsPageEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,729 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.marketing.NotificationSettingsEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,729 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.PaymentModeValueEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,729 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.AbstractEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,729 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.batch.DateCronjobParameterEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,729 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.location.StoreEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,729 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.link.core.entity.LinkWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,729 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.media.MediaFolderEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,729 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.price.TaxEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,730 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'media' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,730 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.product.ProductPercentageDiscountPromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,730 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.classification.core.entity.TaxonomyValueEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,730 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.user.AddressEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,730 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.price.PackagingEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,730 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.catalog.CategoryEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,731 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.cms.core.entity.message.MessageSourcePropertyEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,731 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.PaymentTransactionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,731 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.InvoiceEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,731 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.DeliveryModeEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,731 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'media_content_type' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,731 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.price.BidEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,731 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.search.core.entity.facet.SearchFacetProfileEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,732 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.business.core.entity.BudgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,732 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.product.ProductPerfectPartnerPromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,732 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.invoice.core.entity.InvoicePageEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,732 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'cmsSlotsForPage' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,732 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.promotion.core.entity.order.OrderThresholdChangeDeliveryModePromotionEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,732 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.productshowcase.core.entity.ProductShowcaseWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,732 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.core.entity.modification.EntityModificationEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,733 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.widget.footer.core.entity.FooterWidgetEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,733 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.catalog.ProductEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,733 org.ehcache.core.EhcacheManager [Thread-12] INFO : Cache 'com.nemesis.platform.module.commerce.core.entity.order.AbstractOrderEntryEntity' removed from Eh107InternalCacheManager.
2017-12-12 12:03:13,733 com.zaxxer.hikari.HikariDataSource [Thread-12] INFO : samplestoreDB - Shutdown initiated...
2017-12-12 12:03:13,738 com.zaxxer.hikari.HikariDataSource [Thread-12] INFO : samplestoreDB - Shutdown completed.

Just see how many times I’ve tried to kill it (search for ^C). I think what’s happening is that when I press Ctrl+C then sometimes I first kill the embedded redis process and then that’s why this is displayed:

Caused by: io.lettuce.core.RedisCommandTimeoutException: Command timed out

And I believe sometimes I kill the java process first and then the redis process second and then it works fine.

I will come up with a test-project soon to demonstrate this.

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Reactions:2
  • Comments:21 (12 by maintainers)

github_iconTop GitHub Comments

2reactions
vpaviccommented, Jun 1, 2018

Thanks for the feedback @mp911de.

Disabling auto-reconnect and reducing timeouts to minimum was what I did up front, but this didn’t change anything. Given that the Spring context shuts down via a JVM shutdown hook in a use case like this, there’s little that it can done until Lettuce supports cancellation of pending commands on shutdown.

I was however able to work around this by moving the lifecycle of Redis container to Spring context (and having LettuceConnectionFactory depend on it) rather than managing it using JUnit. If someone else runs into this problem, the described approach can be seen in vpavic/spring-session-demos@e487f3f.

0reactions
vpaviccommented, Jun 5, 2018

Thanks for the analysis and Data Redis improvement proposal @mp911de! 👍

Read more comments on GitHub >

github_iconTop Results From Across the Web

Distinguish wait-shutdown command from standard k8s ...
As of v0.26.0, we can specify /wait-shutdown as a pre-stop hook in our deployment spec. As currently implemented, it sends SIGTERM to the ......
Read more >
SQL Server SHUTDOWN Wait
This wait type only occurs if a shutdown request is blocked waiting for queries being run by connections logged into the server as...
Read more >
There is a delay when you shut down, restart, or log off a ...
Fixes a problem in which there is a six-second delay during shutdown, restart, or logoff a computer that is running Windows 7 or...
Read more >
Put a shutdown timer on your Windows desktop with ... - CNET
To create a shutdown timer manually, open Command Prompt and type the command shutdown -s -t XXXX. The "XXXX" should be the time...
Read more >
SHUTDOWN - MariaDB Knowledge Base
The SHUTDOWN command shuts the server down. WAIT FOR ALL SLAVES. MariaDB starting with 10.4.4. The WAIT FOR ALL SLAVES option was first...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found