Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HHH-13331 : Query Cache should not be allowed for queris having Non Cacheable Query Spaces #2823

Open
wants to merge 2 commits into
base: 5.2
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import org.hibernate.engine.spi.SessionFactoryImplementor;
import org.hibernate.engine.spi.SharedSessionContractImplementor;
import org.hibernate.internal.CoreMessageLogger;

import org.hibernate.loader.Loader;
import org.jboss.logging.Logger;

/**
Expand Down Expand Up @@ -68,7 +68,9 @@ public void preInvalidate(Serializable[] spaces, SharedSessionContractImplemento
if ( DEBUG_ENABLED ) {
LOG.debugf( "Pre-invalidating space [%s], timestamp: %s", space, ts );
}

if (!Loader.validateSpace(space)) {
continue;
}
try {
session.getEventListenerManager().cachePutStart();

Expand Down Expand Up @@ -104,6 +106,9 @@ public void invalidate(Serializable[] spaces, SharedSessionContractImplementor s
if ( DEBUG_ENABLED ) {
LOG.debugf( "Invalidating space [%s], timestamp: %s", space, ts );
}
if (!Loader.validateSpace(space)) {
continue;
}

try {
session.getEventListenerManager().cachePutStart();
Expand Down
52 changes: 50 additions & 2 deletions hibernate-core/src/main/java/org/hibernate/loader/Loader.java
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ public abstract class Loader {

protected static final CoreMessageLogger LOG = CoreLogging.messageLogger( Loader.class );
protected static final boolean DEBUG_ENABLED = LOG.isDebugEnabled();

private static Boolean metadataInitialized = false;
private static final Set<Serializable> cacheableSpacesSet = new HashSet<>();

private final SessionFactoryImplementor factory;
private volatile ColumnNameCache columnNameCache;
Expand Down Expand Up @@ -2415,10 +2418,13 @@ protected List list(
final QueryParameters queryParameters,
final Set<Serializable> querySpaces,
final Type[] resultTypes) throws HibernateException {
if (!metadataInitialized) {
initializeMetadata();
}
final boolean cacheable = factory.getSessionFactoryOptions().isQueryCacheEnabled() &&
queryParameters.isCacheable();

if ( cacheable ) {
if ( cacheable && validateSpaces(querySpaces) ) {
return listUsingQueryCache( session, queryParameters, querySpaces, resultTypes );
}
else {
Expand Down Expand Up @@ -2809,4 +2815,46 @@ protected String processDistinctKeyword(
}
return sql;
}

public static boolean validateSpaces(Set<Serializable> querySpaces) {
if(querySpaces==null || querySpaces.isEmpty()) {
return true;
}
for(Serializable space : querySpaces) {
if(!cacheableSpacesSet.contains(space)) {
return false;
}
}
return true;
}

public static boolean validateSpace(Serializable space) {
return (space != null && cacheableSpacesSet.contains(space)) ? true : false;
}

private synchronized void initializeMetadata() {
if (!metadataInitialized && factory != null && factory.getMetamodel() != null
&& factory.getMetamodel().entityPersisters() != null
&& factory.getMetamodel().collectionPersisters() != null) {

Map<String, EntityPersister> entityPersisters = factory.getMetamodel().entityPersisters();
for (Map.Entry<String, EntityPersister> entry : entityPersisters.entrySet()) {
if (entry.getValue().getCacheAccessStrategy() != null) {
for (Serializable space : entry.getValue().getQuerySpaces()) {
cacheableSpacesSet.add(space);
}
}
}

Map<String, CollectionPersister> collectionPersister = factory.getMetamodel().collectionPersisters();
for (Map.Entry<String, CollectionPersister> entry : collectionPersister.entrySet()) {
if (entry.getValue().getCacheAccessStrategy() != null) {
for (Serializable space : entry.getValue().getCollectionSpaces()) {
cacheableSpacesSet.add(space);
}
}
}
}
metadataInitialized = true;
}
}