Re: [h2] Thread remain after deleting database

2015-11-18 Thread Thomas Mueller
Hi, The problem is the "shutdown". Without it, the thread will go away. Simply close the connection (all connections). Regards, Thomas On Thursday, November 19, 2015, wrote: > I want to know workaround. > > I measured the leak amount. > Each leaked thread uses 100~200KB. > > My system repeat

Re: [h2] Thread remain after deleting database

2015-11-18 Thread yonetosh
I want to know workaround. I measured the leak amount. Each leaked thread uses 100~200KB. My system repeat to create and delete database files. It may adversely affect my system. Is there any way to avoid this issue from current version? I tried to stop thread from outer. ( I know java doesn't r

Re: [h2] Thread remain after deleting database

2015-11-11 Thread yonetosh
Thank you for investigation! I'm waiting for fix. -- You received this message because you are subscribed to the Google Groups "H2 Database" group. To unsubscribe from this group and stop receiving emails from it, send an email to h2-database+unsubscr...@googlegroups.com. To post to this group,

Re: [h2] Thread remain after deleting database

2015-11-11 Thread Thomas Mueller
Hi, You are right, this is a bug. I will fix it. Regards, Thomas On Wednesday, November 11, 2015, wrote: > My system treats the multiple h2 databases. > Sometimes I deleted old database from my system. > org.h2.server.TcpServerThread is remained after deleting H2 databases by > using followin

[h2] Thread remain after deleting database

2015-11-11 Thread yonetosh
My system treats the multiple h2 databases. Sometimes I deleted old database from my system. org.h2.server.TcpServerThread is remained after deleting H2 databases by using following query. - query for deleting database DROP ALL OBJECTS DELETE FILES; SHUTDOWN; I checked the TcpServerThread that s