Uses of Class
org.apache.ignite.configuration.CacheConfiguration
-
-
Uses of CacheConfiguration in org.apache.ignite
Methods in org.apache.ignite with parameters of type CacheConfiguration Modifier and Type Method Description <K,V>
voidIgnite. addCacheConfiguration(CacheConfiguration<K,V> cacheCfg)Adds cache configuration template.<K,V>
IgniteCache<K,V>Ignite. createCache(CacheConfiguration<K,V> cacheCfg)Dynamically starts new cache with the given cache configuration.<K,V>
IgniteCache<K,V>Ignite. createCache(CacheConfiguration<K,V> cacheCfg, NearCacheConfiguration<K,V> nearCfg)Dynamically starts new cache with the given cache configuration.<K,V>
IgniteCache<K,V>Ignite. getOrCreateCache(CacheConfiguration<K,V> cacheCfg)Gets existing cache with the given name or creates new one with the given configuration.<K,V>
IgniteCache<K,V>Ignite. getOrCreateCache(CacheConfiguration<K,V> cacheCfg, NearCacheConfiguration<K,V> nearCfg)Gets existing cache with the given cache configuration or creates one if it does not exist.Method parameters in org.apache.ignite with type arguments of type CacheConfiguration Modifier and Type Method Description Collection<IgniteCache>Ignite. createCaches(Collection<CacheConfiguration> cacheCfgs)Dynamically starts new caches with the given cache configurations.Collection<IgniteCache>Ignite. getOrCreateCaches(Collection<CacheConfiguration> cacheCfgs)Gets existing caches with the given name or created one with the given configuration. -
Uses of CacheConfiguration in org.apache.ignite.cdc
Methods in org.apache.ignite.cdc that return CacheConfiguration Modifier and Type Method Description CacheConfiguration<?,?>CdcCacheEvent. configuration()Note,getQueryEntities()value not changed on table schema change. -
Uses of CacheConfiguration in org.apache.ignite.configuration
Methods in org.apache.ignite.configuration that return CacheConfiguration Modifier and Type Method Description CacheConfiguration<K,V>CacheConfiguration. clearQueryEntities()Clear query entities.CacheConfiguration[]IgniteConfiguration. getCacheConfiguration()Gets configuration (descriptors) for all caches.CacheConfiguration<K,V>CacheConfiguration. setAffinity(AffinityFunction aff)Sets affinity for cache keys.CacheConfiguration<K,V>CacheConfiguration. setAffinityMapper(AffinityKeyMapper affMapper)Sets custom affinity mapper.CacheConfiguration<K,V>CacheConfiguration. setAtomicityMode(CacheAtomicityMode atomicityMode)Sets cache atomicity mode.CacheConfiguration<K,V>CacheConfiguration. setBackups(int backups)Sets number of nodes used to back up single partition forCacheMode.PARTITIONEDcache.CacheConfiguration<K,V>CacheConfiguration. setCacheLoaderFactory(javax.cache.configuration.Factory<? extends javax.cache.integration.CacheLoader<K,V>> factory)CacheConfiguration<K,V>CacheConfiguration. setCacheMode(CacheMode cacheMode)Sets caching mode.CacheConfiguration<K,V>CacheConfiguration. setCacheStoreFactory(javax.cache.configuration.Factory<? extends CacheStore<? super K,? super V>> storeFactory)Sets factory for persistent storage for cache data.CacheConfiguration<K,V>CacheConfiguration. setCacheStoreSessionListenerFactories(javax.cache.configuration.Factory<? extends CacheStoreSessionListener>... storeSesLsnrs)Cache store session listener factories.CacheConfiguration<K,V>CacheConfiguration. setCacheWriterFactory(javax.cache.configuration.Factory<? extends javax.cache.integration.CacheWriter<? super K,? super V>> factory)CacheConfiguration<K,V>CacheConfiguration. setCopyOnRead(boolean cpOnRead)Sets copy on read flag.CacheConfiguration<K,V>CacheConfiguration. setDataRegionName(@Nullable String dataRegionName)Sets a name ofDataRegionConfigurationfor this cache.CacheConfiguration<K,V>CacheConfiguration. setDefaultLockTimeout(long dfltLockTimeout)Deprecated.Default lock timeout configuration property has no effect.CacheConfiguration<K,V>CacheConfiguration. setDiskPageCompression(DiskPageCompression diskPageCompression)Sets disk page compression algorithm.CacheConfiguration<K,V>CacheConfiguration. setDiskPageCompressionLevel(Integer diskPageCompressionLevel)Setsalgorithmspecific disk page compression level.CacheConfiguration<K,V>CacheConfiguration. setEagerTtl(boolean eagerTtl)Sets eager ttl flag.CacheConfiguration<K,V>CacheConfiguration. setEncryptionEnabled(boolean encryptionEnabled)Sets encrypted flag.CacheConfiguration<K,V>CacheConfiguration. setEventsDisabled(boolean evtsDisabled)Sets events disabled flag.CacheConfiguration<K,V>CacheConfiguration. setEvictionFilter(EvictionFilter<K,V> evictFilter)Sets eviction filter.CacheConfiguration<K,V>CacheConfiguration. setEvictionPolicy(@Nullable EvictionPolicy evictPlc)Deprecated.UsesetEvictionPolicyFactory(Factory)instead.CacheConfiguration<K,V>CacheConfiguration. setEvictionPolicyFactory(@Nullable javax.cache.configuration.Factory<? extends EvictionPolicy<? super K,? super V>> evictPlcFactory)Sets cache eviction policy factory.CacheConfiguration<K,V>CacheConfiguration. setExpiryPolicyFactory(javax.cache.configuration.Factory<? extends javax.cache.expiry.ExpiryPolicy> factory)CacheConfiguration<K,V>CacheConfiguration. setGroupName(String grpName)Sets the cache group name.CacheConfiguration<K,V>CacheConfiguration. setIndexedTypes(Class<?>... indexedTypes)Array of key and value type pairs to be indexed (thus array length must be always even).CacheConfiguration<K,V>CacheConfiguration. setInterceptor(CacheInterceptor<K,V> interceptor)Sets cache interceptor.CacheConfiguration<K,V>CacheConfiguration. setInvalidate(boolean invalidate)Sets invalidation flag for near cache entries in this transaction.CacheConfiguration<K,V>CacheConfiguration. setKeyConfiguration(CacheKeyConfiguration... cacheKeyCfg)Sets cache key configuration.CacheConfiguration<K,V>CacheConfiguration. setLoadPreviousValue(boolean loadPrevVal)Sets flag indicating whether value should be loaded from store if it is not in the cache for following cache operations:IgniteCache.putIfAbsent(Object, Object)IgniteCache.replace(Object, Object)IgniteCache.replace(Object, Object, Object)IgniteCache.remove(Object, Object)IgniteCache.getAndPut(Object, Object)IgniteCache.getAndRemove(Object)IgniteCache.getAndReplace(Object, Object)IgniteCache.getAndPutIfAbsent(Object, Object)When not set, default value isDFLT_LOAD_PREV_VAL.CacheConfiguration<K,V>CacheConfiguration. setLongQueryWarningTimeout(long longQryWarnTimeout)Deprecated.UseIgniteConfiguration.setLongQueryWarningTimeout(long)instead.CacheConfiguration<K,V>CacheConfiguration. setManagementEnabled(boolean enabled)CacheConfiguration<K,V>CacheConfiguration. setMaxConcurrentAsyncOperations(int maxConcurrentAsyncOps)Sets maximum number of concurrent asynchronous operations.CacheConfiguration<K,V>CacheConfiguration. setMaxQueryIteratorsCount(int maxQryIterCnt)Sets maximum number of query iterators that can be stored.CacheConfiguration<K,V>CacheConfiguration. setMemoryPolicyName(String memPlcName)Deprecated.UsesetDataRegionName(String)instead.CacheConfiguration<K,V>CacheConfiguration. setName(String name)Sets cache name.CacheConfiguration<K,V>CacheConfiguration. setNearConfiguration(NearCacheConfiguration<K,V> nearCfg)Sets the near cache configuration to use on all cache nodes.CacheConfiguration<K,V>CacheConfiguration. setNodeFilter(IgnitePredicate<ClusterNode> nodeFilter)Sets filter which determines on what nodes the cache should be started.CacheConfiguration<K,V>CacheConfiguration. setOnheapCacheEnabled(boolean onheapCache)Configures on-heap cache for the off-heap based page memory.CacheConfiguration<K,V>CacheConfiguration. setPartitionLossPolicy(PartitionLossPolicy partLossPlc)Sets partition loss policy.CacheConfiguration<K,V>CacheConfiguration. setPlatformCacheConfiguration(PlatformCacheConfiguration platformCfg)Sets platform cache configuration.CacheConfiguration<K,V>CacheConfiguration. setPluginConfigurations(CachePluginConfiguration... pluginCfgs)Sets cache plugin configurations.CacheConfiguration<K,V>CacheConfiguration. setQueryDetailMetricsSize(int qryDetailMetricsSz)Sets size of queries detail metrics that will be stored in memory for monitoring purposes.CacheConfiguration<K,V>CacheConfiguration. setQueryEntities(Collection<QueryEntity> qryEntities)Sets query entities configuration.CacheConfiguration<K,V>CacheConfiguration. setQueryParallelism(int qryParallelism)Sets query parallelism.CacheConfiguration<K,V>CacheConfiguration. setReadFromBackup(boolean readFromBackup)Sets read from backup flag.CacheConfiguration<K,V>CacheConfiguration. setReadThrough(boolean isReadThrough)CacheConfiguration<K,V>CacheConfiguration. setRebalanceBatchesPrefetchCount(long rebalanceBatchesCnt)Deprecated.CacheConfiguration<K,V>CacheConfiguration. setRebalanceBatchSize(int rebalanceBatchSize)Deprecated.UseIgniteConfiguration.setRebalanceBatchSize(int)instead.CacheConfiguration<K,V>CacheConfiguration. setRebalanceDelay(long rebalanceDelay)Deprecated.Use baseline topology feature instead.CacheConfiguration<K,V>CacheConfiguration. setRebalanceMode(CacheRebalanceMode rebalanceMode)Sets cache rebalance mode.CacheConfiguration<K,V>CacheConfiguration. setRebalanceOrder(int rebalanceOrder)Sets cache rebalance order.CacheConfiguration<K,V>CacheConfiguration. setRebalanceThreadPoolSize(int rebalancePoolSize)Deprecated.CacheConfiguration<K,V>CacheConfiguration. setRebalanceThrottle(long rebalanceThrottle)Deprecated.UseIgniteConfiguration.setRebalanceThrottle(long)instead.CacheConfiguration<K,V>CacheConfiguration. setRebalanceTimeout(long rebalanceTimeout)Deprecated.UseIgniteConfiguration.setRebalanceTimeout(long)instead.CacheConfiguration<K,V>CacheConfiguration. setSqlEscapeAll(boolean sqlEscapeAll)Iftrueall the SQL table and field names will be escaped with double quotes like ("tableName"."fieldsName").CacheConfiguration<K,V>CacheConfiguration. setSqlFunctionClasses(Class<?>... cls)Sets classes with methods annotated byQuerySqlFunctionto be used as user-defined functions from SQL queries.CacheConfiguration<K,V>CacheConfiguration. setSqlIndexMaxInlineSize(int sqlIdxMaxInlineSize)Sets maximum inline size for sql indexes.CacheConfiguration<K,V>CacheConfiguration. setSqlOnheapCacheEnabled(boolean sqlOnheapCache)Sets whether SQL on-heap cache is enabled.CacheConfiguration<K,V>CacheConfiguration. setSqlOnheapCacheMaxSize(int sqlOnheapCacheMaxSize)Sets maximum SQL on-heap cache.CacheConfiguration<K,V>CacheConfiguration. setSqlSchema(String sqlSchema)Sets sql schema to be used for current cache.CacheConfiguration<K,V>CacheConfiguration. setStatisticsEnabled(boolean enabled)CacheConfiguration<K,V>CacheConfiguration. setStoreByValue(boolean isStoreByVal)CacheConfiguration<K,V>CacheConfiguration. setStoreConcurrentLoadAllThreshold(int storeConcurrentLoadAllThreshold)Sets the concurrent load-all threshold used for cases when keys' values are being loaded fromCacheStorein parallel.CacheConfiguration<K,V>CacheConfiguration. setStoreKeepBinary(boolean storeKeepBinary)Sets keep binary in store flag.CacheConfiguration<K,V>CacheConfiguration. setTopologyValidator(TopologyValidator topValidator)Sets topology validator.CacheConfiguration<K,V>CacheConfiguration. setTransactionManagerLookupClassName(String tmLookupClsName)Deprecated.CacheConfiguration<K,V>CacheConfiguration. setTypes(Class<K> keyType, Class<V> valType)CacheConfiguration<K,V>CacheConfiguration. setWriteBehindBatchSize(int writeBehindBatchSize)Sets maximum batch size for write-behind cache.CacheConfiguration<K,V>CacheConfiguration. setWriteBehindCoalescing(boolean writeBehindCoalescing)Sets write coalescing flag for write-behind cache.CacheConfiguration<K,V>CacheConfiguration. setWriteBehindEnabled(boolean writeBehindEnabled)Sets flag indicating whether write-behind is enabled.CacheConfiguration<K,V>CacheConfiguration. setWriteBehindFlushFrequency(long writeBehindFlushFreq)Sets write-behind flush frequency.CacheConfiguration<K,V>CacheConfiguration. setWriteBehindFlushSize(int writeBehindFlushSize)Sets write-behind flush size.CacheConfiguration<K,V>CacheConfiguration. setWriteBehindFlushThreadCount(int writeBehindFlushThreadCnt)Sets flush thread count for write-behind cache.CacheConfiguration<K,V>CacheConfiguration. setWriteSynchronizationMode(CacheWriteSynchronizationMode writeSync)Sets write synchronization mode.CacheConfiguration<K,V>CacheConfiguration. setWriteThrough(boolean isWriteThrough)Methods in org.apache.ignite.configuration that return types with arguments of type CacheConfiguration Modifier and Type Method Description Map<String,CacheConfiguration<?,?>>CommunicationFailureContext. startedCaches()Methods in org.apache.ignite.configuration with parameters of type CacheConfiguration Modifier and Type Method Description IgniteConfigurationIgniteConfiguration. setCacheConfiguration(CacheConfiguration... cacheCfg)Sets cache configurations. -
Uses of CacheConfiguration in org.apache.ignite.internal
Methods in org.apache.ignite.internal that return CacheConfiguration Modifier and Type Method Description CacheConfigurationGridCachePluginContext. igniteCacheConfiguration()Methods in org.apache.ignite.internal with parameters of type CacheConfiguration Modifier and Type Method Description <K,V>
voidIgniteKernal. addCacheConfiguration(CacheConfiguration<K,V> cacheCfg)Adds cache configuration template.<K,V>
IgniteCache<K,V>IgniteKernal. createCache(CacheConfiguration<K,V> cacheCfg)Dynamically starts new cache with the given cache configuration.<K,V>
IgniteCache<K,V>IgniteKernal. createCache(CacheConfiguration<K,V> cacheCfg, NearCacheConfiguration<K,V> nearCfg)Dynamically starts new cache with the given cache configuration.<K,V>
IgniteCache<K,V>IgniteKernal. getOrCreateCache(CacheConfiguration<K,V> cacheCfg)Gets existing cache with the given name or creates new one with the given configuration.<K,V>
IgniteCache<K,V>IgniteKernal. getOrCreateCache(CacheConfiguration<K,V> cacheCfg, NearCacheConfiguration<K,V> nearCfg)Gets existing cache with the given cache configuration or creates one if it does not exist.<K,V>
IgniteBiTuple<IgniteCache<K,V>,Boolean>IgniteEx. getOrCreateCache0(CacheConfiguration<K,V> cacheCfg, boolean sql)Gets existing cache with the given name or creates new one with the given configuration.<K,V>
IgniteBiTuple<IgniteCache<K,V>,Boolean>IgniteKernal. getOrCreateCache0(CacheConfiguration<K,V> cacheCfg, boolean sql)Gets existing cache with the given name or creates new one with the given configuration.Method parameters in org.apache.ignite.internal with type arguments of type CacheConfiguration Modifier and Type Method Description Collection<IgniteCache>IgniteKernal. createCaches(Collection<CacheConfiguration> cacheCfgs)Dynamically starts new caches with the given cache configurations.Collection<IgniteCache>IgniteKernal. getOrCreateCaches(Collection<CacheConfiguration> cacheCfgs)Gets existing caches with the given name or created one with the given configuration.Constructors in org.apache.ignite.internal with parameters of type CacheConfiguration Constructor Description GridCachePluginContext(GridKernalContext ctx, CacheConfiguration igniteCacheCfg) -
Uses of CacheConfiguration in org.apache.ignite.internal.management.cache
Methods in org.apache.ignite.internal.management.cache with parameters of type CacheConfiguration Modifier and Type Method Description protected CacheConfigurationCacheConfigurationCollectorJob. config(CacheConfiguration ccfg, IgniteUuid dynamicDeploymentId)Constructors in org.apache.ignite.internal.management.cache with parameters of type CacheConfiguration Constructor Description CacheAffinityConfiguration(CacheConfiguration ccfg)Create data transfer object for affinity configuration properties.CacheConfiguration(IgniteEx ignite, CacheConfiguration ccfg, IgniteUuid dynamicDeploymentId)Create data transfer object for cache configuration properties.CacheEvictionConfiguration(CacheConfiguration ccfg)Create data transfer object for eviction configuration properties.CacheNearConfiguration(CacheConfiguration ccfg)Create data transfer object for near cache configuration properties.CacheRebalanceConfiguration(CacheConfiguration ccfg)Create data transfer object for rebalance configuration properties.CacheStoreConfiguration(IgniteEx ignite, CacheConfiguration ccfg)Create data transfer object for cache store configuration properties.QueryConfiguration(CacheConfiguration ccfg)Create data transfer object with cache query configuration data. -
Uses of CacheConfiguration in org.apache.ignite.internal.managers.discovery
Methods in org.apache.ignite.internal.managers.discovery that return types with arguments of type CacheConfiguration Modifier and Type Method Description Map<String,CacheConfiguration>GridDiscoveryManager. nodePublicCaches(ClusterNode node) -
Uses of CacheConfiguration in org.apache.ignite.internal.pagemem.store
Methods in org.apache.ignite.internal.pagemem.store with parameters of type CacheConfiguration Modifier and Type Method Description voidIgnitePageStoreManager. cleanupPersistentSpace(CacheConfiguration cacheConfiguration)Cleanup persistent space for cache.voidIgnitePageStoreManager. initializeForCache(CacheGroupDescriptor grpDesc, CacheConfiguration<?,?> ccfg)Callback called when a cache is starting. -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.affinity
Methods in org.apache.ignite.internal.processors.affinity with parameters of type CacheConfiguration Modifier and Type Method Description static GridAffinityAssignmentCacheGridAffinityAssignmentCache. create(GridKernalContext ctx, AffinityFunction aff, CacheConfiguration<?,?> ccfg) -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.cache
Fields in org.apache.ignite.internal.processors.cache declared as CacheConfiguration Modifier and Type Field Description protected CacheConfigurationGridCacheAdapter. cacheCfgCache configuration.Methods in org.apache.ignite.internal.processors.cache that return CacheConfiguration Modifier and Type Method Description CacheConfigurationCacheConfigurationOverride. apply(CacheConfiguration ccfg)Apply overrides to specified cache configuration.CacheConfigurationCacheData. cacheConfiguration()CacheConfigurationDynamicCacheDescriptor. cacheConfiguration()CacheConfigurationGridCacheProcessor. cacheConfiguration(String name)Get configuration for the given cache.CacheConfiguration<?,?>CacheGroupContext. config()CacheConfiguration<?,?>CacheGroupData. config()CacheConfiguration<?,?>CacheGroupDescriptor. config()CacheConfigurationGridCacheContext. config()CacheConfiguration<K,V>GridCacheContextInfo. config()CacheConfiguration<?,?>StoredCacheData. config()CacheConfigurationGridCacheAdapter. configuration()Gets configuration bean for this cache.CacheConfigurationGridCacheAttributes. configuration()CacheConfigurationGridCacheProxyImpl. configuration()Gets configuration bean for this cache.CacheConfigurationIgniteInternalCache. configuration()Gets configuration bean for this cache.CacheConfiguration<?,?>StoredCacheData. configuration()Note,getQueryEntities()value not changed on table schema change.CacheConfiguration<?,?>CacheConfigurationEnricher. enrich(CacheConfiguration<?,?> ccfg, @Nullable CacheConfigurationEnrichment enrichment, boolean affinityNode)Enriches cache configuration fields with deserialized values from givenenrichment.CacheConfiguration<?,?>CacheConfigurationEnricher. enrichFully(CacheConfiguration<?,?> ccfg, CacheConfigurationEnrichment enrichment)CacheConfigurationGridCacheProcessor. getConfigFromTemplate(String cacheName)CacheConfigurationStartCacheInfo. getStartedConfiguration()static <K,V>
CacheConfiguration<K,V>GridCacheUtils. patchCacheConfiguration(CacheConfiguration<K,V> oldCfg, Collection<QueryEntity> entities, String sqlSchema, boolean isSqlEscape, int qryParallelism)Patch cache configuration withSchemaAddQueryEntityOperation.static <K,V>
CacheConfiguration<K,V>GridCacheUtils. patchCacheConfiguration(CacheConfiguration<K,V> oldCfg, SchemaAddQueryEntityOperation op)Patch cache configuration withSchemaAddQueryEntityOperation.CacheConfigurationDynamicCacheChangeRequest. startCacheConfiguration()Methods in org.apache.ignite.internal.processors.cache that return types with arguments of type CacheConfiguration Modifier and Type Method Description T2<CacheConfiguration,CacheConfigurationEnrichment>CacheConfigurationSplitter. split(CacheConfiguration ccfg)Splits the given cache configuration into two partsCacheConfigurationandCacheConfigurationEnrichmentthat are serialized separately.default T2<CacheConfiguration,CacheConfigurationEnrichment>CacheConfigurationSplitter. split(CacheGroupDescriptor desc)Splits cache configuration associated with the givendescinto two partsCacheConfigurationandCacheConfigurationEnrichmentthat are serialized separately.default T2<CacheConfiguration,CacheConfigurationEnrichment>CacheConfigurationSplitter. split(DynamicCacheDescriptor desc)Splits cache configuration associated with the givendescinto two partsCacheConfigurationandCacheConfigurationEnrichmentthat are serialized separately.T2<CacheConfiguration,CacheConfigurationEnrichment>CacheConfigurationSplitterImpl. split(CacheConfiguration ccfg)Splits the given cache configuration into two partsCacheConfigurationandCacheConfigurationEnrichmentthat are serialized separately.Methods in org.apache.ignite.internal.processors.cache with parameters of type CacheConfiguration Modifier and Type Method Description voidGridCacheProcessor. addCacheConfiguration(CacheConfiguration cacheCfg)CacheConfigurationCacheConfigurationOverride. apply(CacheConfiguration ccfg)Apply overrides to specified cache configuration.voidDynamicCacheDescriptor. cacheConfiguration(CacheConfiguration cacheCfg)FileGridLocalConfigManager. cacheConfigurationFile(CacheConfiguration<?,?> ccfg)static StringGridLocalConfigManager. cacheDataFilename(CacheConfiguration<?,?> ccfg)static intGridCacheUtils. cacheGroupId(CacheConfiguration<?,?> ccfg)static StringGridCacheUtils. cacheOrGroupName(CacheConfiguration<?,?> ccfg)static <C extends CachePluginConfiguration>
CGridCacheUtils. cachePluginConfiguration(CacheConfiguration cfg, Class<C> cl)FileGridLocalConfigManager. cacheWorkDir(CacheConfiguration<?,?> ccfg)static voidGridCacheUtils. checkAttributeMismatch(IgniteLogger log, CacheConfiguration locCfg, CacheConfiguration rmtCfg, UUID rmtNodeId, T2<String,String> attr, boolean fail)Checks that local and remove configurations have the same value of given attribute.voidGridCacheProcessor. checkReadOnlyState(String opName, CacheConfiguration... cfgs)Checks that cluster in aClusterState.ACTIVE_READ_ONLYstate.voidCacheGroupDescriptor. config(CacheConfiguration cacheCfg)voidStoredCacheData. config(CacheConfiguration<?,?> ccfg)IgniteInternalFuture<Boolean>GridCacheProcessor. dynamicStartCache(@Nullable CacheConfiguration ccfg, String cacheName, @Nullable NearCacheConfiguration nearCfg, boolean failIfExists, boolean failIfNotStarted, boolean checkThreadTx)Dynamically starts cache.IgniteInternalFuture<Boolean>GridCacheProcessor. dynamicStartCache(@Nullable CacheConfiguration ccfg, String cacheName, @Nullable NearCacheConfiguration nearCfg, CacheType cacheType, boolean sql, boolean failIfExists, boolean failIfNotStarted, boolean checkThreadTx)Dynamically starts cache.IgniteInternalFuture<Boolean>GridCacheProcessor. dynamicStartSqlCache(CacheConfiguration ccfg)Dynamically starts cache as a result of SQLCREATE TABLEcommand.CacheConfiguration<?,?>CacheConfigurationEnricher. enrich(CacheConfiguration<?,?> ccfg, @Nullable CacheConfigurationEnrichment enrichment, boolean affinityNode)Enriches cache configuration fields with deserialized values from givenenrichment.CacheConfiguration<?,?>CacheConfigurationEnricher. enrichFully(CacheConfiguration<?,?> ccfg, CacheConfigurationEnrichment enrichment)<K,V>
IgniteInternalCache<K,V>GridCacheProcessor. getOrStartCache(String name, CacheConfiguration ccfg)static voidGridCacheUtils. initializeConfigDefaults(IgniteLogger log, CacheConfiguration cfg, CacheObjectContext cacheObjCtx)static booleanGridCacheUtils. isNearEnabled(CacheConfiguration cfg)Checks if near cache is enabled for cache configuration.static booleanGridCacheUtils. isPersistentCache(CacheConfiguration ccfg, DataStorageConfiguration dsCfg)Checks if cache configuration belongs to persistent cache.static <K,V>
CacheConfiguration<K,V>GridCacheUtils. patchCacheConfiguration(CacheConfiguration<K,V> oldCfg, Collection<QueryEntity> entities, String sqlSchema, boolean isSqlEscape, int qryParallelism)Patch cache configuration withSchemaAddQueryEntityOperation.static <K,V>
CacheConfiguration<K,V>GridCacheUtils. patchCacheConfiguration(CacheConfiguration<K,V> oldCfg, SchemaAddQueryEntityOperation op)Patch cache configuration withSchemaAddQueryEntityOperation.T2<CacheConfiguration,CacheConfigurationEnrichment>CacheConfigurationSplitter. split(CacheConfiguration ccfg)Splits the given cache configuration into two partsCacheConfigurationandCacheConfigurationEnrichmentthat are serialized separately.T2<CacheConfiguration,CacheConfigurationEnrichment>CacheConfigurationSplitterImpl. split(CacheConfiguration ccfg)Splits the given cache configuration into two partsCacheConfigurationandCacheConfigurationEnrichmentthat are serialized separately.voidDynamicCacheChangeRequest. startCacheConfiguration(CacheConfiguration startCfg)static booleanGridCacheUtils. storeCacheConfig(GridCacheSharedContext<?,?> cctx, CacheConfiguration<?,?> cacheCfg)Checks whether given cache configuration should be persisted.static voidGridCacheUtils. validateCacheGroupsAttributesMismatch(IgniteLogger log, CacheConfiguration cfg1, CacheConfiguration cfg2, String attrName, String attrMsg, Object val1, Object val2, boolean fail)static @Nullable StringGridLocalConfigManager. validateIncomingConfiguration(Collection<CacheConfiguration<?,?>> cacheConfigs, CacheConfiguration<?,?> cfg)Validates already processed cache configuration instead a newly defined.Method parameters in org.apache.ignite.internal.processors.cache with type arguments of type CacheConfiguration Modifier and Type Method Description IgniteInternalFuture<Boolean>GridCacheProcessor. dynamicStartCaches(Collection<CacheConfiguration> ccfgList, boolean failIfExists, boolean checkThreadTx, boolean disabledAfterStart)Dynamically starts multiple caches.voidGridLocalConfigManager. readConfigurationFiles(List<CacheConfiguration<?,?>> ccfgs, BiConsumer<CacheConfiguration<?,?>,File> ccfgCons)voidGridLocalConfigManager. readConfigurationFiles(List<CacheConfiguration<?,?>> ccfgs, BiConsumer<CacheConfiguration<?,?>,File> ccfgCons)static voidGridCacheUtils. validateConfigurationCacheNames(Collection<CacheConfiguration> ccfgs)static @Nullable StringGridLocalConfigManager. validateIncomingConfiguration(Collection<CacheConfiguration<?,?>> cacheConfigs, CacheConfiguration<?,?> cfg)Validates already processed cache configuration instead a newly defined. -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.cache.binary
Methods in org.apache.ignite.internal.processors.cache.binary with parameters of type CacheConfiguration Modifier and Type Method Description CacheObjectContextCacheObjectBinaryProcessorImpl. contextForCache(CacheConfiguration ccfg)booleanCacheObjectBinaryProcessorImpl. isBinaryEnabled(CacheConfiguration<?,?> ccfg)Checks whether given class is binary. -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.cache.jta
Methods in org.apache.ignite.internal.processors.cache.jta with parameters of type CacheConfiguration Modifier and Type Method Description abstract voidCacheJtaManagerAdapter. registerCache(CacheConfiguration<?,?> cfg)voidCacheNoopJtaManager. registerCache(CacheConfiguration<?,?> cfg) -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.cache.persistence.file
Methods in org.apache.ignite.internal.processors.cache.persistence.file with parameters of type CacheConfiguration Modifier and Type Method Description static StringFilePageStoreManager. cacheDirName(CacheConfiguration<?,?> ccfg)FileFilePageStoreManager. cacheWorkDir(CacheConfiguration<?,?> ccfg)voidFilePageStoreManager. cleanupPersistentSpace(CacheConfiguration cacheConfiguration)Cleanup persistent space for cache.voidFilePageStoreManager. initializeForCache(CacheGroupDescriptor grpDesc, CacheConfiguration<?,?> ccfg)Callback called when a cache is starting. -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.cache.persistence.snapshot
Methods in org.apache.ignite.internal.processors.cache.persistence.snapshot with parameters of type CacheConfiguration Modifier and Type Method Description booleanIgniteSnapshotManager. isRestoring(CacheConfiguration<?,?> ccfg)Check if the cache or group with the specified name is currently being restored from the snapshot.booleanSnapshotRestoreProcess. isRestoring(CacheConfiguration<?,?> ccfg) -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.cache.store
Methods in org.apache.ignite.internal.processors.cache.store that return CacheConfiguration Modifier and Type Method Description protected CacheConfigurationCacheOsStoreManager. cacheConfiguration()protected abstract CacheConfigurationGridCacheStoreManagerAdapter. cacheConfiguration()Constructors in org.apache.ignite.internal.processors.cache.store with parameters of type CacheConfiguration Constructor Description CacheOsStoreManager(GridKernalContext ctx, CacheConfiguration cfg)Constructor. -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.cacheobject
Methods in org.apache.ignite.internal.processors.cacheobject with parameters of type CacheConfiguration Modifier and Type Method Description CacheObjectContextIgniteCacheObjectProcessor. contextForCache(CacheConfiguration ccfg)booleanIgniteCacheObjectProcessor. isBinaryEnabled(CacheConfiguration<?,?> ccfg)Checks whether given class is binary. -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.compress
Methods in org.apache.ignite.internal.processors.compress with parameters of type CacheConfiguration Modifier and Type Method Description static CompressionHandlerCompressionHandler. create(GridKernalContext ctx, CacheConfiguration cfg)Creates compression handler. -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.localtask
Methods in org.apache.ignite.internal.processors.localtask with parameters of type CacheConfiguration Modifier and Type Method Description <R> IgniteInternalFuture<R>DurableBackgroundTasksProcessor. executeAsync(DurableBackgroundTask<R> t, CacheConfiguration cacheCfg) -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.platform.client.cache
Methods in org.apache.ignite.internal.processors.platform.client.cache with parameters of type CacheConfiguration Modifier and Type Method Description static voidClientCacheCreateWithConfigurationRequest. checkClientCacheConfiguration(CacheConfiguration<?,?> cfg)static booleanClientCachePartitionsRequest. isDefaultMapping(CacheConfiguration<?,?> ccfg) -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.platform.utils
Methods in org.apache.ignite.internal.processors.platform.utils that return CacheConfiguration Modifier and Type Method Description static CacheConfigurationPlatformConfigurationUtils. readCacheConfiguration(BinaryRawReaderEx in)Reads cache configuration from a stream.Methods in org.apache.ignite.internal.processors.platform.utils with parameters of type CacheConfiguration Modifier and Type Method Description static voidPlatformConfigurationUtils. writeCacheConfiguration(BinaryRawWriter writer, CacheConfiguration ccfg)Writes cache configuration. -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.plugin
Methods in org.apache.ignite.internal.processors.plugin with parameters of type CacheConfiguration Modifier and Type Method Description voidCachePluginManager. validateRemotes(CacheConfiguration rmtCfg, ClusterNode rmtNode)Checks that remote caches has configuration compatible with the local.Constructors in org.apache.ignite.internal.processors.plugin with parameters of type CacheConfiguration Constructor Description CachePluginManager(GridKernalContext ctx, CacheConfiguration cfg) -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.query
Methods in org.apache.ignite.internal.processors.query with parameters of type CacheConfiguration Modifier and Type Method Description static voidQueryUtils. checkNotNullAllowed(CacheConfiguration cfg)Performs checks to forbid cache configurations that are not compatible with NOT NULL query fields.static SchemaOperationExceptionQueryUtils. checkQueryEntityConflicts(CacheConfiguration<?,?> ccfg, Collection<DynamicCacheDescriptor> descs)Check givenCacheConfigurationfor conflicts in table and index names from any query entities found in collection ofDynamicCacheDescriptors and belonging to the same schema.static booleanQueryUtils. isEnabled(CacheConfiguration<?,?> ccfg)QuerySchemaPatchQuerySchema. makePatch(CacheConfiguration<?,?> targetCfg, Collection<QueryEntity> target)Make query schema patch.static Collection<QueryEntity>QueryUtils. normalizeQueryEntities(GridKernalContext ctx, Collection<QueryEntity> entities, CacheConfiguration<?,?> cfg)Normalize cache query entities. -
Uses of CacheConfiguration in org.apache.ignite.internal.processors.rest.handlers.top
Methods in org.apache.ignite.internal.processors.rest.handlers.top with parameters of type CacheConfiguration Modifier and Type Method Description GridClientCacheBeanGridTopologyCommandHandler. createCacheBean(CacheConfiguration ccfg)Creates cache bean. -
Uses of CacheConfiguration in org.apache.ignite.plugin
Methods in org.apache.ignite.plugin that return CacheConfiguration Modifier and Type Method Description CacheConfigurationCachePluginContext. igniteCacheConfiguration()Methods in org.apache.ignite.plugin with parameters of type CacheConfiguration Modifier and Type Method Description voidCachePluginProvider. validateRemote(CacheConfiguration locCfg, CacheConfiguration rmtCfg, ClusterNode rmtNode)Checks that remote caches has configuration compatible with the local. -
Uses of CacheConfiguration in org.apache.ignite.spi.systemview.view
Methods in org.apache.ignite.spi.systemview.view with parameters of type CacheConfiguration Modifier and Type Method Description static StringCacheGroupView. nodeFilter(CacheConfiguration<?,?> ccfg)
-