Page 1 of 1

net.sf.ehcache.util.UpdateChecker

PostPosted:Thu Feb 16, 2017 10:36 am
by alexkcy
Dear all,

I found the following messages / errors in the log (first run), are they matter ?

Interestingly, it appears that I can still use OpenKM.
Code: Select all
[net.sf.ehcache.CacheManager@849a074] INFO  net.sf.ehcache.util.UpdateChecker- New update(s) found: 2.4.7 [http://www.terracotta.org/confluence/display/release/Release+Notes+Ehcache+Core+2.4]. Please check http://ehcache.org for the latest version.
[localhost-startStop-1] WARN  net.sf.ehcache.hibernate.AbstractEhcacheRegionFactory- Couldn't find a specific ehcache configuration for                                                                              cache named [org.jbpm.taskmgmt.def.TaskMgmtDefinition.swimlanes]; using defaults 
[localhost-startStop-1] ERROR org.hibernate.tool.hbm2ddl.SchemaExport- Specified key was too long; max key length is 767 bytes
[localhost-startStop-1] ERROR org.hibernate.tool.hbm2ddl.SchemaExport- Unsuccessful: create index IDX_DB_MD_VAL_COL06 on OKM_DB_METADATA_VALUE (DMV_COL06)
Thanks

Alex

Re: net.sf.ehcache.util.UpdateChecker

PostPosted:Fri Feb 17, 2017 7:44 pm
by jllort
All of these are warning. The first indicates that there's a new version of ehcache tool. The second is a problem with MySQL where can not be created indexes greater than 767 bytes, but in this table is not relevant. This is a known issue and must not be worried for it.

Re: net.sf.ehcache.util.UpdateChecker

PostPosted:Sat Feb 18, 2017 4:26 pm
by alexkcy
Thank you !