Remove 32K limit from queries with collection parameters
[cps.git] / cps-service / src / main / java / org / onap / cps / cache / AnchorDataCacheConfig.java
1 /*
2  * ============LICENSE_START========================================================
3  *  Copyright (C) 2022 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an "AS IS" BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  *  ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.cache;
22
23 import com.hazelcast.config.Config;
24 import com.hazelcast.config.MapConfig;
25 import com.hazelcast.config.NamedConfig;
26 import com.hazelcast.core.Hazelcast;
27 import com.hazelcast.core.HazelcastInstance;
28 import com.hazelcast.map.IMap;
29 import org.springframework.context.annotation.Bean;
30 import org.springframework.context.annotation.Configuration;
31
32 /**
33  * Core infrastructure of the hazelcast distributed cache for anchor data config use cases.
34  */
35 @Configuration
36 public class AnchorDataCacheConfig {
37
38     private static final MapConfig anchorDataCacheMapConfig = createMapConfig("anchorDataCacheMapConfig");
39
40     /**
41      * Distributed instance of anchor data cache that contains module prefix by anchor name as properties.
42      *
43      * @return configured map of anchor data cache
44      */
45     @Bean
46     public IMap<String, AnchorDataCacheEntry> anchorDataCache() {
47         return createHazelcastInstance("hazelCastInstanceCpsCore", anchorDataCacheMapConfig)
48                 .getMap("anchorDataCache");
49     }
50
51     private HazelcastInstance createHazelcastInstance(final String hazelcastInstanceName,
52             final NamedConfig namedConfig) {
53         return Hazelcast.newHazelcastInstance(initializeConfig(hazelcastInstanceName, namedConfig));
54     }
55
56     private Config initializeConfig(final String instanceName, final NamedConfig namedConfig) {
57         final Config config = new Config(instanceName);
58         config.addMapConfig((MapConfig) namedConfig);
59         config.setClusterName("cps-service-caches");
60         return config;
61     }
62
63     private static MapConfig createMapConfig(final String configName) {
64         final MapConfig mapConfig = new MapConfig(configName);
65         mapConfig.setBackupCount(3);
66         mapConfig.setAsyncBackupCount(3);
67         return mapConfig;
68     }
69
70 }