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

Conversation

debashishbharali
Copy link

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

Analysis:

  • When query is cacheable i.e. 'org.hibernate.cacheable=true', and is having query spaces which are non cacheable, then this may lead to the well known 'N+1' issue.
  • I.e. the cached query result containing the 'N' ids, will further result in N queries of 'findById' to the database.

Expectation:

  • Query Cache should not be allowed for queries having Non Cacheable Query Spaces. Either throw an exception while loading the query, or rather ignore the query cache in this case.
  • With this, even high number of puts to 'UpdateTimestampCache' can be avoided. Which are originating from all the high number of transactional DMLs being executed to a query space which is non-cacheable.

Resolution : org.hibernate.loader.Loader.list() Mehod

  • Maintained a set of all the cacheable 'query space (String)' - called it 'cacheableSpacesSet' etc
  • Within the method 'Loader.list()', additional check of validating the current query's spaces from the initially maintained 'cacheableSpacesSet'
  • With the above additional validation, even though the system is configured as 'hibernate.cache.use_query_cache=true', and corresponding query is set as cacheable (i.e. 'org.hibernate.cacheable=true'), still the 'cacheable boolean' within the list() method will be set as false for query having query spaces which are not cacheable.

Performance:

  • This newly added additional validation uses 'HashSet.contains()' method internally. Which is having time complexity of O(1)
  • On a simple laptop, for individual call with one query space, it took an additional 24us to 40us for the complete additional logic.
  • On a server, this time is expected to reduce significantly.

@gbadner gbadner added the 5.2 label May 23, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants