Package org.infinispan.query.logging
Interface Log
- All Superinterfaces:
org.jboss.logging.BasicLogger
,org.infinispan.query.core.impl.Log
@MessageLogger(projectCode="ISPN")
public interface Log
extends org.infinispan.query.core.impl.Log
Log abstraction for the query module. For this module, message ids
ranging from 14001 to 14500 inclusively have been reserved.
- Since:
- 5.0
- Author:
- Galder ZamarreƱo, Sanne Grinovero
-
Field Summary
Fields inherited from interface org.infinispan.query.core.impl.Log
LOG_ROOT
-
Method Summary
Modifier and TypeMethodDescriptioncacheIsStoppingNoCommandAllowed
(String cacheName) cannotLoadIndexedClass
(String name, Throwable t) cannotRunLuceneQueriesIfNotIndexed
(String cacheName) classNotIndexable
(String className) void
commandsBackendInitialized
(String indexName) void
void
couldNotInstantiateTransformerClass
(Class<?> transformer, Exception e) void
failedToParseSystemProperty
(String propertyName, Exception e) void
flushingIndex
(String entityType) void
ignoringBooleanQueryMaxClauseCount
(String sysPropName, int maxClauseCount, int currentMaxClauseCount) void
indexingDocumentsCompleted
(long doneCount, long elapsedMs) void
indexingEntitiesCompleted
(long nbrOfEntities, long elapsedMs) void
invalidPropertyKey
(Object propertyKey) void
keyClassNotFound
(String keyClassName, Exception e) void
massIndexerIndexingInstance
(String entityName) org.hibernate.search.util.common.SearchException
massIndexingEntityFailures
(long finalFailureCount, EntityReference firstFailureEntity, String firstFailureMessage, Throwable firstFailure) noTransformerForKey
(String keyClassName) noTypeIsIndexed
(String ickle) void
void
purgingIndex
(String entityType) void
registeringQueryInterceptor
(String cacheName) void
settingBooleanQueryMaxClauseCount
(String sysPropName, int maxClauseCount) void
typeIsUsingDefaultTransformer
(Class<?> keyClass) unableToResumeSuspendedTx
(javax.transaction.Transaction transaction, Throwable cause) unableToSuspendTx
(Throwable cause) Methods inherited from interface org.jboss.logging.BasicLogger
debug, debug, debug, debug, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugf, debugv, debugv, debugv, debugv, debugv, debugv, debugv, debugv, error, error, error, error, errorf, errorf, errorf, errorf, errorf, errorf, errorf, errorf, errorv, errorv, errorv, errorv, errorv, errorv, errorv, errorv, fatal, fatal, fatal, fatal, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalf, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, fatalv, info, info, info, info, infof, infof, infof, infof, infof, infof, infof, infof, infov, infov, infov, infov, infov, infov, infov, infov, isDebugEnabled, isEnabled, isInfoEnabled, isTraceEnabled, log, log, log, log, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logf, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, logv, trace, trace, trace, trace, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracef, tracev, tracev, tracev, tracev, tracev, tracev, tracev, tracev, warn, warn, warn, warn, warnf, warnf, warnf, warnf, warnf, warnf, warnf, warnf, warnv, warnv, warnv, warnv, warnv, warnv, warnv, warnv
Methods inherited from interface org.infinispan.query.core.impl.Log
cannotHaveAggregationsInGroupByClause, deleteStatementsCannotUsePaging, entryIteratorDoesNotAllowProjections, expressionMustBePartOfAggregateFunctionOrShouldBeIncludedInGroupByClause, groupingAndAggregationQueriesMustUseProjections, multivaluedPropertyCannotBeProjected, multivaluedPropertyCannotBeUsedInGroupBy, multivaluedPropertyCannotBeUsedInOrderBy, partitionDegraded, queryMustNotUseGroupingOrAggregation, unsupportedStatement
-
Field Details
-
CONTAINER
-
-
Method Details
-
classNotIndexable
@Message(value="The configured entity class %s is not indexable. Please remove it from the indexing configuration.", id=404) CacheConfigurationException classNotIndexable(String className) -
keyClassNotFound
-
couldNotInstantiateTransformerClass
-
registeringQueryInterceptor
@LogMessage(level=INFO) @Message(value="Registering Query interceptor for cache %s", id=14003) void registeringQueryInterceptor(String cacheName) -
commandsBackendInitialized
@LogMessage(level=DEBUG) @Message(value="Custom commands backend initialized backing index %s", id=14004) void commandsBackendInitialized(String indexName) -
typeIsUsingDefaultTransformer
@LogMessage(level=WARN) @Message(value="Indexed type \'%1$s\' is using a default Transformer. This is slow! Register a custom implementation using @Transformable", id=14009) void typeIsUsingDefaultTransformer(Class<?> keyClass) -
cacheIsStoppingNoCommandAllowed
@Message(value="Cache named \'%1$s\' is being shut down. No longer accepting remote commands.", id=14013) CacheException cacheIsStoppingNoCommandAllowed(String cacheName) -
indexingEntitiesCompleted
@LogMessage(level=INFO) @Message(value="Reindexed %1$d entities in %2$d ms", id=14014) void indexingEntitiesCompleted(long nbrOfEntities, long elapsedMs) -
indexingDocumentsCompleted
@LogMessage(level=DEBUG) @Message(value="%1$d documents indexed in %2$d ms", id=14015) void indexingDocumentsCompleted(long doneCount, long elapsedMs) -
purgingIndex
@LogMessage(level=INFO) @Message(value="Purging instances of \'%s\' from the index", id=14016) void purgingIndex(String entityType) -
flushingIndex
@LogMessage(level=INFO) @Message(value="Flushing index \'%s\'", id=14017) void flushingIndex(String entityType) -
cannotRunLuceneQueriesIfNotIndexed
@Message(value="Cannot run Lucene queries on a cache \'%s\' that does not have indexing enabled", id=14019) IllegalStateException cannotRunLuceneQueriesIfNotIndexed(String cacheName) -
unableToResumeSuspendedTx
@Message(value="Unable to resume suspended transaction %s", id=14033) CacheException unableToResumeSuspendedTx(javax.transaction.Transaction transaction, @Cause Throwable cause) -
unableToSuspendTx
@Message(value="Unable to suspend transaction", id=14034) CacheException unableToSuspendTx(@Cause Throwable cause) -
getPrefixWildcardOrRegexpQueriesCannotBeFuzzy
@Message(value="Prefix, wildcard or regexp queries cannot be fuzzy: %s", id=14036) ParsingException getPrefixWildcardOrRegexpQueriesCannotBeFuzzy(String s) -
groupAggregationsNotSupported
@Message(value="Queries containing groups or aggregations cannot be converted to an indexed query", id=14039) CacheException groupAggregationsNotSupported() -
filterNotSupportedWithQueryString
@Message(value="Unable to define filters, please use filters in the query string instead.", id=14040) CacheException filterNotSupportedWithQueryString() -
noTransformerForKey
@Message(value="Cannot find an appropriate Transformer for key type %s. Indexing only works with entries keyed on Strings, primitives, byte[], UUID, classes that have the @Transformable annotation or classes for which you have defined a suitable Transformer in the indexing configuration. Alternatively, see org.infinispan.query.spi.SearchManagerImplementor.registerKeyTransformer.", id=14043) CacheException noTransformerForKey(String keyClassName) -
failedToParseSystemProperty
-
settingBooleanQueryMaxClauseCount
@LogMessage(level=INFO) @Message(value="Setting org.apache.lucene.search.BooleanQuery.setMaxClauseCount from system property %s to value %d", id=14046) void settingBooleanQueryMaxClauseCount(String sysPropName, int maxClauseCount) -
ignoringBooleanQueryMaxClauseCount
@LogMessage(level=WARN) @Message(value="Ignoring system property %s because the value %d is smaller than the current value (%d) of org.apache.lucene.search.BooleanQuery.getMaxClauseCount()", id=14047) void ignoringBooleanQueryMaxClauseCount(String sysPropName, int maxClauseCount, int currentMaxClauseCount) -
interruptedWhileWaitingForRequestCompletion
@Message(value="Interrupted while waiting for completions of some batch indexing operations.", id=14050) CacheException interruptedWhileWaitingForRequestCompletion(@Cause Exception cause) -
massIndexingEntityFailures
@Message(value="%1$s entities could not be indexed. See the logs for details. First failure on entity \'%2$s\': %3$s", id=14051) org.hibernate.search.util.common.SearchException massIndexingEntityFailures(long finalFailureCount, EntityReference firstFailureEntity, String firstFailureMessage, @Cause Throwable firstFailure) -
massIndexerIndexingInstance
-
invalidPropertyKey
@Message(value="Invalid property key \'%1$s`, it\'s not a string.", id=14053) CacheException invalidPropertyKey(Object propertyKey) -
noTypeIsIndexed
@Message(value="Trying to execute query `%1$s`, but no type is indexed on cache.", id=14054) CacheException noTypeIsIndexed(String ickle) -
mappingIsRestarting
@LogMessage(level=WARN) @Message(value="The indexing engine is restarting, index updates will be skipped for the current data changes.", id=14059) void mappingIsRestarting() -
concurrentReindexingOnGetStatistics
@LogMessage(level=INFO) @Message(value="We\'re getting some errors from Hibernate Search or Lucene while we compute the index count/size for statistics. There is probably a concurrent reindexing ongoing.", id=14060) void concurrentReindexingOnGetStatistics(@Cause Throwable cause) -
cannotLoadIndexedClass
@Message(value="Failed to load declared indexed class \'%s\'", id=14061) CacheConfigurationException cannotLoadIndexedClass(String name, @Cause Throwable t) -
preIndexingReloading
@LogMessage(level=DEBUG) @Message(value="Search engine is reloaded before the reindexing.", id=14062) void preIndexingReloading() -
indexingStarting
@LogMessage(level=INFO) @Message(value="Reindexing starting.", id=14063) void indexingStarting()
-