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 Details

    • CONTAINER

      static final Log 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

      @LogMessage(level=ERROR) @Message(value="Could not locate key class %s", id=14001) void keyClassNotFound(String keyClassName, @Cause Exception e)
    • couldNotInstantiateTransformerClass

      @LogMessage(level=ERROR) @Message(value="Cannot instantiate Transformer class %s", id=14002) void couldNotInstantiateTransformerClass(Class<?> transformer, @Cause Exception e)
    • 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

      @LogMessage(level=ERROR) @Message(value="Failed to parse system property %s", id=14044) void failedToParseSystemProperty(String propertyName, @Cause Exception e)
    • 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

      @Message(value="Indexing instance of entity \'%s\' during mass indexing", id=14052) String massIndexerIndexingInstance(String entityName)
    • 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)
    • searchMappingUnavailable

      @Message(value="Cannot index entry since the search mapping failed to initialize.", id=14055) CacheException searchMappingUnavailable()
    • 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()