Search in sources :

Example 1 with PredicateConfig

use of com.hazelcast.config.PredicateConfig in project hazelcast by hazelcast.

the class QueryCacheConfigBuilderHelper method queryCachePredicateHandler.

private void queryCachePredicateHandler(Node childNode, QueryCacheConfig queryCacheConfig) {
    NamedNodeMap predicateAttributes = childNode.getAttributes();
    String predicateType = getTextContent(predicateAttributes.getNamedItem("type"));
    String textContent = getTextContent(childNode);
    PredicateConfig predicateConfig = new PredicateConfig();
    if ("class-name".equals(predicateType)) {
        predicateConfig.setClassName(textContent);
    } else if ("sql".equals(predicateType)) {
        predicateConfig.setSql(textContent);
    }
    queryCacheConfig.setPredicateConfig(predicateConfig);
}
Also used : NamedNodeMap(org.w3c.dom.NamedNodeMap) PredicateConfig(com.hazelcast.config.PredicateConfig)

Example 2 with PredicateConfig

use of com.hazelcast.config.PredicateConfig in project hazelcast by hazelcast.

the class QueryCacheXmlConfigBuilderHelper method queryCachePredicateHandler.

protected void queryCachePredicateHandler(Node childNode, QueryCacheConfig queryCacheConfig) {
    String predicateType = getTextContent(getNamedItemNode(childNode, "type"));
    String textContent = getTextContent(childNode);
    PredicateConfig predicateConfig = new PredicateConfig();
    if (matches("class-name", predicateType)) {
        predicateConfig.setClassName(textContent);
    } else if (matches("sql", predicateType)) {
        predicateConfig.setSql(textContent);
    }
    queryCacheConfig.setPredicateConfig(predicateConfig);
}
Also used : PredicateConfig(com.hazelcast.config.PredicateConfig)

Example 3 with PredicateConfig

use of com.hazelcast.config.PredicateConfig in project hazelcast by hazelcast.

the class QueryCachePredicateConfigTest method test_whenClassNameIsSet.

@Test
public void test_whenClassNameIsSet() {
    String mapName = randomString();
    String cacheName = randomString();
    Config config = new Config();
    MapConfig mapConfig = config.getMapConfig(mapName);
    QueryCacheConfig cacheConfig = new QueryCacheConfig(cacheName);
    PredicateConfig predicateConfig = cacheConfig.getPredicateConfig();
    predicateConfig.setClassName("com.hazelcast.map.impl.querycache.TestPredicate");
    mapConfig.addQueryCacheConfig(cacheConfig);
    HazelcastInstance node = createHazelcastInstance(config);
    IMap<Integer, Employee> map = getMap(node, mapName);
    for (int i = 0; i < 15; i++) {
        map.put(i, new Employee(i));
    }
    QueryCache<Integer, Employee> cache = map.getQueryCache(cacheName);
    assertEquals(0, cache.size());
}
Also used : HazelcastInstance(com.hazelcast.core.HazelcastInstance) Employee(com.hazelcast.map.impl.querycache.utils.Employee) QueryCacheConfig(com.hazelcast.config.QueryCacheConfig) Config(com.hazelcast.config.Config) MapConfig(com.hazelcast.config.MapConfig) PredicateConfig(com.hazelcast.config.PredicateConfig) QueryCacheConfig(com.hazelcast.config.QueryCacheConfig) PredicateConfig(com.hazelcast.config.PredicateConfig) MapConfig(com.hazelcast.config.MapConfig) ParallelJVMTest(com.hazelcast.test.annotation.ParallelJVMTest) QuickTest(com.hazelcast.test.annotation.QuickTest) Test(org.junit.Test)

Example 4 with PredicateConfig

use of com.hazelcast.config.PredicateConfig in project hazelcast by hazelcast.

the class QueryCacheTest method testQueryCache_with_attribute_inPredicate.

@Test
public void testQueryCache_with_attribute_inPredicate() {
    String ATTRIBUTE_NAME = "booleanAttribute";
    Config config = new Config();
    config.getMapConfig(mapName).addQueryCacheConfig(new QueryCacheConfig(cacheName).setIncludeValue(true).setPredicateConfig(new PredicateConfig(Predicates.equal(ATTRIBUTE_NAME, true)))).addAttributeConfig(new AttributeConfig().setExtractorClassName(EvenNumberEmployeeValueExtractor.class.getName()).setName(ATTRIBUTE_NAME));
    IMap<Integer, Employee> map = getIMap(config);
    QueryCache<Integer, Employee> queryCache = map.getQueryCache(cacheName);
    populateMap(map, 100);
    assertQueryCacheSizeEventually(50, queryCache);
}
Also used : AtomicInteger(java.util.concurrent.atomic.AtomicInteger) Employee(com.hazelcast.map.impl.querycache.utils.Employee) QueryCacheConfig(com.hazelcast.config.QueryCacheConfig) AttributeConfig(com.hazelcast.config.AttributeConfig) PredicateConfig(com.hazelcast.config.PredicateConfig) QueryCacheConfig(com.hazelcast.config.QueryCacheConfig) Config(com.hazelcast.config.Config) PredicateConfig(com.hazelcast.config.PredicateConfig) AttributeConfig(com.hazelcast.config.AttributeConfig) ParallelJVMTest(com.hazelcast.test.annotation.ParallelJVMTest) QuickTest(com.hazelcast.test.annotation.QuickTest) Test(org.junit.Test)

Example 5 with PredicateConfig

use of com.hazelcast.config.PredicateConfig in project hazelcast by hazelcast.

the class AbstractDynamicConfigGeneratorTest method testMap.

// UTILITY - TESTS
private void testMap(MapStoreConfig mapStoreConfig) {
    AttributeConfig attrConfig = new AttributeConfig().setName("power").setExtractorClassName("com.car.PowerExtractor");
    EvictionConfig evictionConfig1 = new EvictionConfig().setSize(10).setMaxSizePolicy(MaxSizePolicy.FREE_NATIVE_MEMORY_SIZE);
    IndexConfig indexConfig = new IndexConfig().addAttribute("attribute").setType(IndexType.SORTED);
    EntryListenerConfig listenerConfig = new EntryListenerConfig("com.hazelcast.entrylistener", false, false);
    EvictionConfig evictionConfig2 = new EvictionConfig().setMaxSizePolicy(MaxSizePolicy.FREE_NATIVE_MEMORY_SIZE).setSize(100).setComparatorClassName("comparatorClassName").setEvictionPolicy(EvictionPolicy.LRU);
    PredicateConfig predicateConfig1 = new PredicateConfig();
    predicateConfig1.setClassName("className");
    PredicateConfig predicateConfig2 = new PredicateConfig();
    predicateConfig2.setSql("sqlQuery");
    QueryCacheConfig queryCacheConfig1 = new QueryCacheConfig().setName("queryCache1").setPredicateConfig(predicateConfig1).addEntryListenerConfig(listenerConfig).setBatchSize(230).setDelaySeconds(20).setPopulate(false).setBufferSize(8).setInMemoryFormat(InMemoryFormat.BINARY).setEvictionConfig(evictionConfig2).setIncludeValue(false).setCoalesce(false).addIndexConfig(indexConfig);
    QueryCacheConfig queryCacheConfig2 = new QueryCacheConfig().setName("queryCache2").setPredicateConfig(predicateConfig2).addEntryListenerConfig(listenerConfig).setBatchSize(500).setDelaySeconds(10).setPopulate(true).setBufferSize(10).setInMemoryFormat(InMemoryFormat.OBJECT).setEvictionConfig(evictionConfig2).setIncludeValue(true).setCoalesce(true).addIndexConfig(indexConfig);
    MapConfig expectedConfig = newMapConfig().setName("carMap").setEvictionConfig(evictionConfig1).setInMemoryFormat(InMemoryFormat.NATIVE).setMetadataPolicy(MetadataPolicy.CREATE_ON_UPDATE).setMaxIdleSeconds(100).setTimeToLiveSeconds(1000).setCacheDeserializedValues(CacheDeserializedValues.ALWAYS).setStatisticsEnabled(true).setPerEntryStatsEnabled(false).setReadBackupData(true).setBackupCount(2).setAsyncBackupCount(3).setMapStoreConfig(mapStoreConfig).setWanReplicationRef(wanReplicationRef()).setPartitioningStrategyConfig(new PartitioningStrategyConfig("partitionStrategyClass")).setMerkleTreeConfig(merkleTreeConfig()).setEventJournalConfig(eventJournalConfig()).setDataPersistenceConfig(dataPersistenceConfig()).addEntryListenerConfig(listenerConfig).setIndexConfigs(singletonList(indexConfig)).addAttributeConfig(attrConfig).setPartitionLostListenerConfigs(singletonList(new MapPartitionLostListenerConfig("partitionLostListener")));
    expectedConfig.setQueryCacheConfigs(asList(queryCacheConfig1, queryCacheConfig2));
    Config config = new Config().addMapConfig(expectedConfig);
    Config decConfig = getNewConfigViaGenerator(config);
    MapConfig actualConfig = decConfig.getMapConfig("carMap");
    AttributeConfig decAttrConfig = actualConfig.getAttributeConfigs().get(0);
    assertEquals(attrConfig.getName(), decAttrConfig.getName());
    assertEquals(attrConfig.getExtractorClassName(), decAttrConfig.getExtractorClassName());
    ConfigCompatibilityChecker.checkMapConfig(expectedConfig, actualConfig);
}
Also used : PartitioningStrategyConfig(com.hazelcast.config.PartitioningStrategyConfig) IndexConfig(com.hazelcast.config.IndexConfig) QueryCacheConfig(com.hazelcast.config.QueryCacheConfig) MapPartitionLostListenerConfig(com.hazelcast.config.MapPartitionLostListenerConfig) EvictionConfig(com.hazelcast.config.EvictionConfig) PredicateConfig(com.hazelcast.config.PredicateConfig) ListConfig(com.hazelcast.config.ListConfig) EventJournalConfig(com.hazelcast.config.EventJournalConfig) AwsConfig(com.hazelcast.config.AwsConfig) ReliableTopicConfig(com.hazelcast.config.ReliableTopicConfig) CacheSimpleConfig(com.hazelcast.config.CacheSimpleConfig) MapConfig(com.hazelcast.config.MapConfig) PredicateConfig(com.hazelcast.config.PredicateConfig) MultiMapConfig(com.hazelcast.config.MultiMapConfig) PartitioningStrategyConfig(com.hazelcast.config.PartitioningStrategyConfig) ExecutorConfig(com.hazelcast.config.ExecutorConfig) DiscoveryStrategyConfig(com.hazelcast.config.DiscoveryStrategyConfig) DiskTierConfig(com.hazelcast.config.DiskTierConfig) IndexConfig(com.hazelcast.config.IndexConfig) NearCacheConfig(com.hazelcast.config.NearCacheConfig) MapStoreConfig(com.hazelcast.config.MapStoreConfig) QueueStoreConfig(com.hazelcast.config.QueueStoreConfig) ItemListenerConfig(com.hazelcast.config.ItemListenerConfig) MergePolicyConfig(com.hazelcast.config.MergePolicyConfig) CacheSimpleEntryListenerConfig(com.hazelcast.config.CacheSimpleEntryListenerConfig) RingbufferStoreConfig(com.hazelcast.config.RingbufferStoreConfig) WanConsumerConfig(com.hazelcast.config.WanConsumerConfig) AttributeConfig(com.hazelcast.config.AttributeConfig) SetConfig(com.hazelcast.config.SetConfig) PNCounterConfig(com.hazelcast.config.PNCounterConfig) QueueConfig(com.hazelcast.config.QueueConfig) ListenerConfig(com.hazelcast.config.ListenerConfig) CardinalityEstimatorConfig(com.hazelcast.config.CardinalityEstimatorConfig) WanCustomPublisherConfig(com.hazelcast.config.WanCustomPublisherConfig) WanBatchPublisherConfig(com.hazelcast.config.WanBatchPublisherConfig) EntryListenerConfig(com.hazelcast.config.EntryListenerConfig) RingbufferConfig(com.hazelcast.config.RingbufferConfig) EvictionConfig(com.hazelcast.config.EvictionConfig) TieredStoreConfig(com.hazelcast.config.TieredStoreConfig) QueryCacheConfig(com.hazelcast.config.QueryCacheConfig) ScheduledExecutorConfig(com.hazelcast.config.ScheduledExecutorConfig) TopicConfig(com.hazelcast.config.TopicConfig) Config(com.hazelcast.config.Config) DiscoveryConfig(com.hazelcast.config.DiscoveryConfig) CachePartitionLostListenerConfig(com.hazelcast.config.CachePartitionLostListenerConfig) DataPersistenceConfig(com.hazelcast.config.DataPersistenceConfig) DurableExecutorConfig(com.hazelcast.config.DurableExecutorConfig) MapPartitionLostListenerConfig(com.hazelcast.config.MapPartitionLostListenerConfig) WanReplicationConfig(com.hazelcast.config.WanReplicationConfig) FlakeIdGeneratorConfig(com.hazelcast.config.FlakeIdGeneratorConfig) MerkleTreeConfig(com.hazelcast.config.MerkleTreeConfig) MemoryTierConfig(com.hazelcast.config.MemoryTierConfig) ReplicatedMapConfig(com.hazelcast.config.ReplicatedMapConfig) MapConfig(com.hazelcast.config.MapConfig) MultiMapConfig(com.hazelcast.config.MultiMapConfig) ReplicatedMapConfig(com.hazelcast.config.ReplicatedMapConfig) CacheSimpleEntryListenerConfig(com.hazelcast.config.CacheSimpleEntryListenerConfig) EntryListenerConfig(com.hazelcast.config.EntryListenerConfig) AttributeConfig(com.hazelcast.config.AttributeConfig)

Aggregations

PredicateConfig (com.hazelcast.config.PredicateConfig)21 QueryCacheConfig (com.hazelcast.config.QueryCacheConfig)14 Config (com.hazelcast.config.Config)11 MapConfig (com.hazelcast.config.MapConfig)9 ParallelJVMTest (com.hazelcast.test.annotation.ParallelJVMTest)7 QuickTest (com.hazelcast.test.annotation.QuickTest)7 Test (org.junit.Test)7 HazelcastInstance (com.hazelcast.core.HazelcastInstance)6 Employee (com.hazelcast.map.impl.querycache.utils.Employee)6 EntryListenerConfig (com.hazelcast.config.EntryListenerConfig)5 NearCacheConfig (com.hazelcast.config.NearCacheConfig)5 AtomicInteger (java.util.concurrent.atomic.AtomicInteger)4 ClientConfig (com.hazelcast.client.config.ClientConfig)3 AttributeConfig (com.hazelcast.config.AttributeConfig)3 IndexConfig (com.hazelcast.config.IndexConfig)3 Before (org.junit.Before)3 TestHazelcastFactory (com.hazelcast.client.test.TestHazelcastFactory)2 AwsConfig (com.hazelcast.config.AwsConfig)2 CachePartitionLostListenerConfig (com.hazelcast.config.CachePartitionLostListenerConfig)2 CacheSimpleConfig (com.hazelcast.config.CacheSimpleConfig)2