Hi all,
this might not be a Vaadin related issue, but I have run out of alternatives and would like to check in the forum if someone has had any similar issues. My application is caching some of its pages.
The app is a set of search and edition user cases. My problem is that when I edit an entity, after saving the changes and editing the same instance again, changes do not take effect. This happens very randomly, therefore making it extremely difficult to trace possible causes.
I am using Vaadin 7.5.3, with pojo model entities (hibernate @annotated), and a Hibernate 4.3.1 (EntityManager version) persistence layer over a MySQL 5.1 database in the backend. I use RESOURCE_LOCAL as the transaction settings in persistence.xml, and InnoDB as the table scheme type. The database server is Tomcat 7.0 (Servlet 3.0, so web.xml is skipped).
What I have already checked is:
-
that Hibernate is not caching: for that I have set in persistence.xml the setting to none, and activated the printout of statistics in the console via the property true, which is throwing the stats, and the L2C hits remains 0, which should mean that no usage of the cache is being done. This didn’t work.
-
in mysql I have set the query_cache_size to 0, and the innodb_buffer_pool_size to 0 too. Restarted the server and that hasn’t worked either. Besides running tremendously slow (had to set back the innodb_buffer_pool)
-
in the browser I try to delete all history data
After these three settings, I have checked if html headers in the application contain any cache related settings, and apparently not. So vaadin shouldn’t be either.
From what I have researched on the issue, nothing should be caching anything. But it still does. It doesn’t happen all the time. Curious behaviors are that restarting the browser (and many times deleting the cache in the browser) solves the issue. But not 100% of the time.
Don’t know where else to look at. Can’t find any reliable solution. Can anybody give me a hint please?
Here the main config files (persistence.xml, my.ini)
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
<persistence-unit name="SofiaPU" transaction-type="RESOURCE_LOCAL">
<provider>org.hibernate.ejb.HibernatePersistence</provider>
<class>ajustesnotificacion.AjusteNotificacion</class>
<class>com.sofia.modelmodel.AjustesPropietario</class>
<class>com.sofia.model.AlbaranExterno</class>
<class>com.sofia.model.Almacen</class>
<class>com.sofia.model.ApplicationEvent</class>
<class>com.sofia.model.ArchivoAdjunto</class>
<class>com.sofia.model.AsignacionDepartamento</class>
<class>com.sofia.model.AsignacionOperario</class>
<class>com.sofia.model.AsignacionTarea</class>
<class>com.sofia.model.AsignacionUbicacion</class>
<class>com.sofia.model.Auditoria</class>
<class>com.sofia.model.Chat</class>
<class>com.sofia.model.Ciclo</class>
<class>com.sofia.model.Coeficiente</class>
<class>com.sofia.model.ColeccionAdjuntos</class>
<class>com.sofia.model.ColeccionEntornosPreseleccionados</class>
<class>com.sofia.model.ConfiguracionEntornoCiclo</class>
<class>com.sofia.model.ConfiguracionEntornosContrato</class>
<class>com.sofia.model.ConfiguracionUsuario</class>
<class>com.sofia.model.CuentaBancaria</class>
<class>com.sofia.model.DatoDeContacto</class>
<class>com.sofia.model.Departamento</class>
<class>com.sofia.model.DepartamentoLocal</class>
<class>com.sofia.model.DepartamentoVivienda</class>
<class>com.sofia.model.Direccion</class>
<class>com.sofia.model.DocumentoEnCola</class>
<class>com.sofia.model.DocumentoImputable</class>
<class>com.sofia.model.DocumentoProveedor</class>
<class>com.sofia.model.Entorno</class>
<class>com.sofia.model.Entrada</class>
<class>com.sofia.model.EnvioEntrada</class>
<class>com.sofia.model.EnvioMailProgramado</class>
<class>com.sofia.model.EstadoIncidencia</class>
<class>com.sofia.model.Evento</class>
<class>com.sofia.model.FacturaProveedor</class>
<class>com.sofia.model.GestionCaja</class>
<class>com.sofia.model.GrupoValidacionPropietario</class>
<class>com.sofia.model.ImputacionDocumentoImputable</class>
<class>com.sofia.model.ItemValor</class>
<class>com.sofia.model.Login</class>
<class>com.sofia.model.MatizacionPresupuesto</class>
<class>com.sofia.model.MensajeChat</class>
<class>com.sofia.model.MensajeChatLeido</class>
<class>com.sofia.model.MiembroGrupoValidacion</class>
<class>com.sofia.model.Modulo</class>
<class>com.sofia.model.ModuloLateral</class>
<class>com.sofia.model.ModuloLateralUsuario</class>
<class>com.sofia.model.MovtoAlmacen</class>
<class>com.sofia.model.MovtoCaja</class>
<class>com.sofia.model.NotaIntervencion</class>
<class>com.sofia.model.Operario</class>
<class>com.sofia.model.OrdenTrabajo</class>
<class>com.sofia.model.PanelLateral</class>
<class>com.sofia.model.ParametrosAplicacion</class>
<class>com.sofia.model.PerfilUsuario</class>
<class>com.sofia.model.Persona</class>
<class>com.sofia.model.PersonaFisica</class>
<class>com.sofia.model.PersonaJuridica</class>
<class>com.sofia.model.PlantillaPropietario</class>
<class>com.sofia.model.Presupuesto</class>
<class>com.sofia.model.PrivilegioUsuario</class>
<class>com.sofia.model.Propietario</class>
<class>com.sofia.model.Proveedor</class>
<class>com.sofia.model.Recordatorio</class>
<class>com.sofia.model.RecursoEntornoPropietario</class>
<class>com.sofia.model.ReferenciaAlmacen</class>
<class>com.sofia.model.RepercusionFacturaProveedor</class>
<class>com.sofia.model.RepresentacionLegalPersona</class>
<class>com.sofia.model.Serie</class>
<class>com.sofia.model.SessionTrace</class>
<class>com.sofia.model.TableConfig</class>
<class>com.sofia.model.TableOrderConfig</class>
<class>com.sofia.model.TipoCoeficiente</class>
<class>com.sofia.model.TipoIva</class>
<class>com.sofia.model.TipoMarcaje</class>
<class>com.sofia.model.Ubicacion</class>
<class>com.sofia.model.UbicacionCoeficiente</class>
<class>com.sofia.model.Usuario</class>
<class>com.sofia.model.Validacion</class>
<class>com.sofia.model.ValidacionImputacionDocumentoImputable</class>
<class>com.sofia.model.ValidacionMiembro</class>
<class>com.sofia.model.ValidacionOrdenTrabajo</class>
<class>com.sofia.model.VisualizacionModuloLateral</class>
<class>com.sofia.model.WindowConfig</class>
<class>com.sofia.model.conceptosadicionales.ConceptoAdicional</class>
<class>com.sofia.model.conceptosadicionales.ConceptoAdicionalConceptoFacturablePropietario</class>
<class>com.sofia.model.conceptosadicionales.ConceptoAdicionalConceptoRecibo</class>
<class>com.sofia.model.conceptosadicionales.ProgramacionConceptosAdicionales</class>
<class>com.sofia.model.conceptosadicionales.RegistroAplicacionConceptosAdicionales</class>
<class>com.sofia.model.contratosinquilinos.CedulaHabitabilidad</class>
<class>com.sofia.model.contratosinquilinos.CertificadoCalificacionEnergetica</class>
<class>com.sofia.model.contratosinquilinos.Clausula</class>
<class>com.sofia.model.contratosinquilinos.ContratoInquilino</class>
<class>com.sofia.model.contratosinquilinos.Fianza</class>
<class>com.sofia.model.contratosinquilinos.ImplementacionModelo</class>
<class>com.sofia.model.contratosinquilinos.LiquidacionExtincion</class>
<class>com.sofia.model.contratosinquilinos.LiquidacionInicio</class>
<class>com.sofia.model.contratosinquilinos.ModeloContrato</class>
<class>com.sofia.model.contratosinquilinos.NotificacionRecibo</class>
<class>com.sofia.model.contratosinquilinos.OverrideClausula</class>
<class>com.sofia.model.contratosinquilinos.ParametroValor</class>
<class>com.sofia.model.contratosinquilinos.Seccion</class>
<class>com.sofia.model.contratosinquilinos.SeccionDescartada</class>
<class>com.sofia.model.contratosinquilinos.Subrogador</class>
<class>com.sofia.model.contratosinquilinos.VersionClausula</class>
<class>com.sofia.model.contratospropietarios.ContratoPropietario</class>
<class>com.sofia.model.devolucionesbancarias.MensajeBancarioDevolucion</class>
<class>com.sofia.model.devolucionesbancarias.RegistroDevolucion</class>
<class>com.sofia.model.documentosfotograficos.CarpetaDocumentoFotografico</class>
<class>com.sofia.model.documentosfotograficos.FotoDocumentoFotografico</class>
<class>com.sofia.model.documentosfotograficos.FotoThumbnail</class>
<class>com.sofia.model.facturables.ConceptoFacturable</class>
<class>com.sofia.model.facturables.ConceptoFacturableContratoPropietario</class>
<class>com.sofia.model.facturables.FacturaPropietario</class>
<class>com.sofia.model.facturables.FacturaPropietarioCobrada</class>
<class>com.sofia.model.facturables.ItemFacturable</class>
<class>com.sofia.model.municipios.ComunidadAutonoma</class>
<class>com.sofia.model.municipios.Municipio</class>
<class>com.sofia.model.municipios.Pais</class>
<class>com.sofia.model.municipios.Provincia</class>
<class>com.sofia.model.notificaciones.Notificacion</class>
<class>com.sofia.model.notificaciones.NotificacionContratoInquilino</class>
<class>com.sofia.model.notificaciones.NotificacionContratoPropietario</class>
<class>com.sofia.model.notificaciones.Plantilla</class>
<class>com.sofia.model.ofertas.ComercialOfertas</class>
<class>com.sofia.model.ofertas.DocumentoFotograficoEnviado</class>
<class>com.sofia.model.ofertas.Envio</class>
<class>com.sofia.model.ofertas.EnvioDocumentosFotograficos</class>
<class>com.sofia.model.ofertas.EnvioReserva</class>
<class>com.sofia.model.ofertas.Oferta</class>
<class>com.sofia.model.ofertas.Reserva</class>
<class>com.sofia.model.ofertas.Visita</class>
<class>com.sofia.model.ordenescobro.OrdenCobro</class>
<class>com.sofia.model.ordenescobro.OrdenCobroRecibo</class>
<class>com.sofia.model.ordenescobro.RealizacionCobro</class>
<class>com.sofia.model.ordenespagos.CompensacionOrdenPagoProveedor</class>
<class>com.sofia.model.ordenespagos.OrdenPago</class>
<class>com.sofia.model.ordenespagos.OrdenPagoAbono</class>
<class>com.sofia.model.ordenespagos.OrdenPagoContratoInquilino</class>
<class>com.sofia.model.ordenespagos.OrdenPagoContratoPropietario</class>
<class>com.sofia.model.ordenespagos.OrdenPagoFacturaProveedor</class>
<class>com.sofia.model.ordenespagos.OrdenPagoProveedor</class>
<class>com.sofia.model.ordenespagos.RealizacionPago</class>
<class>com.sofia.model.recibos.Concepto</class>
<class>com.sofia.model.recibos.ConceptoRecibo</class>
<class>com.sofia.model.recibos.DefinicionRemesa</class>
<class>com.sofia.model.recibos.ImplementacionConcepto</class>
<class>com.sofia.model.recibos.Incremento</class>
<class>com.sofia.model.recibos.IncrementoGeneralObras</class>
<class>com.sofia.model.recibos.IncrementoIndice</class>
<class>com.sofia.model.recibos.OrdenanteRemesa</class>
<class>com.sofia.model.recibos.ProgramacionRecibo</class>
<class>com.sofia.model.recibos.Recibo</class>
<class>com.sofia.model.recibos.ReciboCobrado</class>
<class>com.sofia.model.recibos.RegistroIndiceReferencia</class>
<class>com.sofia.model.recibos.Remesa</class>
<class>com.sofia.model.reports.eventospt.OcurrenciaEventoPT</class>
<class>com.sofia.model.reports.flexreports.FlexReport</class>
<class>com.sofia.model.reports.flexreports.LlamadaFlexReport</class>
<class>com.sofia.model.reports.flexreports.LlamadaPlantilla</class>
<class>com.sofia.model.reports.tareas.CondicionLanzamiento</class>
<class>com.sofia.model.reports.tareas.CondicionTemporal</class>
<class>com.sofia.model.reports.tareas.EventoProgramacionTarea</class>
<class>com.sofia.model.reports.tareas.FechaProgramacionTarea</class>
<class>com.sofia.model.reports.tareas.ProductorFlexReport</class>
<class>com.sofia.model.reports.tareas.ProductorPlantilla</class>
<class>com.sofia.model.reports.tareas.ProgramacionTarea</class>
<class>com.sofia.model.reports.tareas.Tarea</class>
<class>com.sofia.model.twilio.TwilioSettings</class>
<shared-cache-mode>NONE</shared-cache-mode>
<validation-mode>NONE</validation-mode>
<properties>
<property name="javax.persistence.jdbc.url" value="jdbc:mysql://*****:3306/*****"/>
<property name="javax.persistence.jdbc.password" value="*****"/>
<property name="javax.persistence.jdbc.driver" value="com.mysql.jdbc.Driver"/>
<property name="javax.persistence.jdbc.user" value="****"/>
<property name="hibernate.generate_statistics" value="true"/>
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect"/>
<property name="hibernate.connection.release_mode" value="on_close"/>
<property name="hibernate.show_sql" value="false"/>
</properties>
</persistence-unit>
</persistence>
[code]
MySQL Server Instance Configuration File
----------------------------------------------------------------------
Generated by the MySQL Server Instance Configuration Wizard
Installation Instructions
----------------------------------------------------------------------
On Linux you can copy this file to /etc/my.cnf to set global options,
mysql-data-dir/my.cnf to set server-specific options
(@localstatedir@ for this installation) or to
~/.my.cnf to set user-specific options.
On Windows you should keep this file in the installation directory
of your server (e.g. C:\Program Files\MySQL\MySQL Server X.Y). To
make sure the server reads the config file use the startup option
“–defaults-file”.
To run run the server from the command line, execute this in a
command line shell, e.g.
mysqld --defaults-file=“C:\Program Files\MySQL\MySQL Server X.Y\my.ini”
To install the server as a Windows service manually, execute this in a
command line shell, e.g.
mysqld --install MySQLXY --defaults-file=“C:\Program Files\MySQL\MySQL Server X.Y\my.ini”
And then execute this in a command line shell to start the server, e.g.
net start MySQLXY
Guildlines for editing this file
----------------------------------------------------------------------
In this file, you can use all long options that the program supports.
If you want to know the options a program supports, start the program
with the “–help” option.
More detailed information about the individual options can also be
found in the manual.
CLIENT SECTION
----------------------------------------------------------------------
The following options will be read by MySQL client applications.
Note that only client applications shipped by MySQL are guaranteed
to read this section. If you want your own MySQL client program to
honor these values, you need to specify it as an option during the
MySQL client library initialization.
[client]
port=3306
[mysql]
default-character-set=latin1
max_allowed_packet=10M
SERVER SECTION
----------------------------------------------------------------------
The following options will be read by the MySQL Server. Make sure that
you have installed the server correctly (see above) so it reads this
file.
[mysqld]
master-slave replication part
log-bin=mysql-bin
server-id=1
The TCP/IP Port the MySQL Server will listen on
port=3306
#Path to installation directory. All paths are usually resolved relative to this.
basedir=“C:/Program Files (x86)/MySQL/MySQL Server 5.1/”
#Path to the database root
datadir=“C:/ProgramData/MySQL/MySQL Server 5.1/Data/”
The default character set that will be used when a new schema or table is
created and no character set is defined
default-character-set=latin1
The default storage engine that will be used when create new tables when
default-storage-engine=INNODB
Set the SQL mode to strict
sql-mode=“STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION”
The maximum amount of concurrent sessions the MySQL server will
allow. One of these connections will be reserved for a user with
SUPER privileges to allow the administrator to login even if the
connection limit has been reached.
max_connections=100
Query cache is used to cache SELECT results and later return them
without actual executing the same query once again. Having the query
cache enabled may result in significant speed improvements, if your
have a lot of identical queries and rarely changing tables. See the
“Qcache_lowmem_prunes” status variable to check if the current value
is high enough for your load.
Note: In case your tables change very often or if your queries are
textually different every time, the query cache may result in a
slowdown instead of a performance improvement.
query_cache_size=0
The number of open tables for all threads. Increasing this value
increases the number of file descriptors that mysqld requires.
Therefore you have to make sure to set the amount of open files
allowed to at least 4096 in the variable “open-files-limit” in
section [mysqld_safe]
table_cache=256
Maximum size for internal (in-memory) temporary tables. If a table
grows larger than this value, it is automatically converted to disk
based table This limitation is for a single table. There can be many
of them.
tmp_table_size=34M
How many threads we should keep in a cache for reuse. When a client
disconnects, the client’s threads are put in the cache if there aren’t
more than thread_cache_size threads from before. This greatly reduces
the amount of thread creations needed if you have a lot of new
connections. (Normally this doesn’t give a notable performance
improvement if you have a good thread implementation.)
thread_cache_size=8
#*** MyISAM Specific options
The maximum size of the temporary file MySQL is allowed to use while
recreating the index (during REPAIR, ALTER TABLE or LOAD DATA INFILE.
If the file-size would be bigger than this, the index will be created
through the key cache (which is slower).
myisam_max_sort_file_size=100G
If the temporary file used for fast index creation would be bigger
than using the key cache by the amount specified here, then prefer the
key cache method. This is mainly used to force long character keys in
large tables to use the slower key cache method to create the index.
myisam_sort_buffer_size=68M
Size of the Key Buffer, used to cache index blocks for MyISAM tables.
Do not set it larger than 30% of your available memory, as some memory
is also required by the OS to cache rows. Even if you’re not using
MyISAM tables, you should still set it to 8-64M as it will also be
used for internal temporary disk tables.
key_buffer_size=55M
Size of the buffer used for doing full table scans of MyISAM tables.
Allocated per thread, if a full scan is needed.
read_buffer_size=64K
read_rnd_buffer_size=256K
This buffer is allocated when MySQL needs to rebuild the index in
REPAIR, OPTIMZE, ALTER table statements as well as in LOAD DATA INFILE
into an empty table. It is allocated per thread so be careful with
large settings.
sort_buffer_size=256K
#*** INNODB Specific options ***
Use this option if you have a MySQL server with InnoDB support enabled
but you do not plan to use it. This will save memory and disk space
and speed up some things.
#skip-innodb
Additional memory pool that is used by InnoDB to store metadata
information. If InnoDB requires more memory for this purpose it will
start to allocate it from the OS. As this is fast enough on most
recent operating systems, you normally do not need to change this
value. SHOW INNODB STATUS will display the current amount used.
innodb_additional_mem_pool_size=3M
If set to 1, InnoDB will flush (fsync) the transaction logs to the
disk at each commit, which offers full ACID behavior. If you are
willing to compromise this safety, and you are running small
transactions, you may set this to 0 or 2 to reduce disk I/O to the
logs. Value 0 means that the log is only written to the log file and
the log file flushed to disk approximately once per second. Value 2
means the log is written to the log file at each commit, but the log
file is only flushed to disk approximately once per second.
innodb_flush_log_at_trx_commit=1
The size of the buffer InnoDB uses for buffering log data. As soon as
it is full, InnoDB will have to flush it to disk. As it is flushed
once per second anyway, it does not make sense to have it very large
(even with long transactions).
innodb_log_buffer_size=2M
InnoDB, unlike MyISAM, uses a buffer pool to cache both indexes and
row data. The bigger you set this the less disk I/O is needed to
access data in tables. On a dedicated database server you may set this
parameter up to 80% of the machine physical memory size. Do not set it
too large, though, because competition of the physical memory may
cause paging in the operating system. Note that on 32bit systems you
might be limited to 2-3.5G of user level memory per process, so do not
set it too high.
innodb_buffer_pool_size=512M
Size of each log file in a log group. You should set the combined size
of log files to about 25%-100% of your buffer pool size to avoid
unneeded buffer pool flush activity on log file overwrite. However,
note that a larger logfile size will increase the time needed for the
recovery process.
innodb_log_file_size=53M
Number of threads allowed inside the InnoDB kernel. The optimal value
depends highly on the application, hardware as well as the OS
scheduler properties. A too high value may lead to thread thrashing.
innodb_thread_concurrency=8
max_allowed_packet = 500Mshow variables
[/code]I think with all this info it should be enough, but if you need anyother info pls say it and will upload it.
Many thanks in advance,
Carlos Conti.