Creation of DataNodeBuilder with module name prefix is very slow
[cps.git] / cps-ri / src / main / java / org / onap / cps / spi / 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.spi.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 java.util.concurrent.TimeUnit;
30 import org.springframework.context.annotation.Bean;
31 import org.springframework.context.annotation.Configuration;
32
33 /**
34  * Core infrastructure of the hazelcast distributed cache for anchor data config use cases.
35  */
36 @Configuration
37 public class AnchorDataCacheConfig {
38
39     public static final long ANCHOR_DATA_CACHE_TTL_SECS = TimeUnit.HOURS.toSeconds(1);
40     private static final MapConfig anchorDataCacheMapConfig = createMapConfig("anchorDataCacheMapConfig");
41
42     /**
43      * Distributed instance of anchor data cache that contains module prefix by anchor name as properties.
44      *
45      * @return configured map of anchor data cache
46      */
47     @Bean
48     public IMap<String, AnchorDataCacheEntry> anchorDataCache() {
49         return createHazelcastInstance("hazelCastInstanceCpsRi", anchorDataCacheMapConfig)
50                 .getMap("anchorDataCache");
51     }
52
53     private HazelcastInstance createHazelcastInstance(final String hazelcastInstanceName,
54             final NamedConfig namedConfig) {
55         return Hazelcast.newHazelcastInstance(initializeConfig(hazelcastInstanceName, namedConfig));
56     }
57
58     private Config initializeConfig(final String instanceName, final NamedConfig namedConfig) {
59         final Config config = new Config(instanceName);
60         config.addMapConfig((MapConfig) namedConfig);
61         config.setClusterName("cps-ri-caches");
62         return config;
63     }
64
65     private static MapConfig createMapConfig(final String configName) {
66         final MapConfig mapConfig = new MapConfig(configName);
67         mapConfig.setBackupCount(3);
68         mapConfig.setAsyncBackupCount(3);
69         return mapConfig;
70     }
71
72 }