]
Galder Zamarreño updated ISPN-8579:
-----------------------------------
Status: Pull Request Sent (was: Open)
Git Pull Request:
CacheNotFoundException error too noisy
--------------------------------------
Key: ISPN-8579
URL:
https://issues.jboss.org/browse/ISPN-8579
Project: Infinispan
Issue Type: Enhancement
Components: Remote Protocols
Affects Versions: 9.2.0.Beta1, 9.1.3.Final
Reporter: Galder Zamarreño
Assignee: Galder Zamarreño
Fix For: 9.2.0.Beta2, 9.2.0.Final
For JCache Remote, creating a cache requires checking first of the cache exists server
side, and if not create one using admin operations.
From the server perspective, if the cache is not defined, a noisy exception is logged:
{code}
11:52:22,361 ERROR [org.infinispan.server.hotrod.CacheDecodeContext]
(HotRod-ServerWorker-4-5) ISPN005003: Exception reported:
org.infinispan.server.hotrod.CacheNotFoundException: Cache with name
'org.jsr107.tck.event.CacheListenerTest' not found amongst the configured caches
at
org.infinispan.server.hotrod.CacheDecodeContext.obtainCache(CacheDecodeContext.java:289)
{code}
This is too noisy. The server should log something, on debug maybe but we should not
treat this as an error. The client already knows that the cache returned is null, so it
needs to create the cache in the server somehow, that should be enough.