blob: e9261c8183f3076a7c7af9f4d526c9854a751325 [file] [log] [blame]
Madan Jampani15b8ef52016-02-02 17:35:05 -08001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Madan Jampani15b8ef52016-02-02 17:35:05 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onosproject.store.primitives.impl;
17
18import io.atomix.catalyst.serializer.Serializer;
19import io.atomix.catalyst.transport.Address;
20import io.atomix.resource.ResourceType;
Madan Jampani15b8ef52016-02-02 17:35:05 -080021
22import java.io.File;
23import java.util.Collection;
24import java.util.Optional;
Madan Jampanif172d402016-03-04 00:56:38 -080025import java.util.Set;
Madan Jampani15b8ef52016-02-02 17:35:05 -080026import java.util.concurrent.CompletableFuture;
Jordan Halterman9bdc24f2017-04-19 23:45:12 -070027import java.util.concurrent.Executor;
Madan Jampani15b8ef52016-02-02 17:35:05 -080028import java.util.concurrent.atomic.AtomicBoolean;
Madan Jampanif172d402016-03-04 00:56:38 -080029import java.util.stream.Collectors;
Madan Jampani15b8ef52016-02-02 17:35:05 -080030
31import org.onosproject.cluster.ClusterService;
32import org.onosproject.cluster.ControllerNode;
Madan Jampani15b8ef52016-02-02 17:35:05 -080033import org.onosproject.cluster.NodeId;
34import org.onosproject.cluster.Partition;
Madan Jampani33547452016-02-29 16:45:04 -080035import org.onosproject.cluster.PartitionId;
Madan Jampani15b8ef52016-02-02 17:35:05 -080036import org.onosproject.store.cluster.messaging.MessagingService;
37import org.onosproject.store.primitives.resources.impl.AtomixConsistentMap;
Madan Jampani39fff102016-02-14 13:17:28 -080038import org.onosproject.store.primitives.resources.impl.AtomixLeaderElector;
Madan Jampanie14a09c2016-02-11 10:43:21 -080039import org.onosproject.store.service.PartitionInfo;
Madan Jampani15b8ef52016-02-02 17:35:05 -080040
41import com.google.common.collect.Collections2;
42import com.google.common.collect.ImmutableSet;
43
44/**
45 * Storage partition.
46 */
Madan Jampani33547452016-02-29 16:45:04 -080047public class StoragePartition implements Managed<StoragePartition> {
Madan Jampani15b8ef52016-02-02 17:35:05 -080048
49 private final AtomicBoolean isOpened = new AtomicBoolean(false);
Madan Jampani15b8ef52016-02-02 17:35:05 -080050 private final Serializer serializer;
Jordan Halterman9bdc24f2017-04-19 23:45:12 -070051 private final Executor sharedExecutor;
Madan Jampani15b8ef52016-02-02 17:35:05 -080052 private final MessagingService messagingService;
53 private final ClusterService clusterService;
54 private final File logFolder;
Madan Jampani33547452016-02-29 16:45:04 -080055 private Partition partition;
Madan Jampani15b8ef52016-02-02 17:35:05 -080056 private NodeId localNodeId;
Madan Jampani33547452016-02-29 16:45:04 -080057 private StoragePartitionServer server;
Madan Jampani15b8ef52016-02-02 17:35:05 -080058 private StoragePartitionClient client;
59
Madan Jampani65f24bb2016-03-15 15:16:18 -070060 public static final Collection<ResourceType> RESOURCE_TYPES = ImmutableSet.of(
Madan Jampani65f24bb2016-03-15 15:16:18 -070061 new ResourceType(AtomixLeaderElector.class),
62 new ResourceType(AtomixConsistentMap.class));
63
Madan Jampani15b8ef52016-02-02 17:35:05 -080064 public StoragePartition(Partition partition,
65 MessagingService messagingService,
66 ClusterService clusterService,
67 Serializer serializer,
Jordan Halterman9bdc24f2017-04-19 23:45:12 -070068 Executor sharedExecutor,
Madan Jampani15b8ef52016-02-02 17:35:05 -080069 File logFolder) {
Madan Jampani33547452016-02-29 16:45:04 -080070 this.partition = partition;
Madan Jampani15b8ef52016-02-02 17:35:05 -080071 this.messagingService = messagingService;
72 this.clusterService = clusterService;
73 this.localNodeId = clusterService.getLocalNode().id();
74 this.serializer = serializer;
Jordan Halterman9bdc24f2017-04-19 23:45:12 -070075 this.sharedExecutor = sharedExecutor;
Madan Jampani15b8ef52016-02-02 17:35:05 -080076 this.logFolder = logFolder;
77 }
78
Madan Jampani3a9911c2016-02-21 11:25:45 -080079 /**
80 * Returns the partition client instance.
81 * @return client
82 */
Madan Jampani15b8ef52016-02-02 17:35:05 -080083 public StoragePartitionClient client() {
84 return client;
85 }
86
87 @Override
88 public CompletableFuture<Void> open() {
Madan Jampanif172d402016-03-04 00:56:38 -080089 if (partition.getMembers().contains(localNodeId)) {
90 openServer();
91 }
Madan Jampanic94b4852016-02-23 18:18:37 -080092 return openClient().thenAccept(v -> isOpened.set(true))
Madan Jampani15b8ef52016-02-02 17:35:05 -080093 .thenApply(v -> null);
94 }
95
96 @Override
97 public CompletableFuture<Void> close() {
Madan Jampani33547452016-02-29 16:45:04 -080098 // We do not explicitly close the server and instead let the cluster
99 // deal with this as an unclean exit.
Madan Jampani65f24bb2016-03-15 15:16:18 -0700100 return closeClient();
Madan Jampani15b8ef52016-02-02 17:35:05 -0800101 }
102
Madan Jampani33547452016-02-29 16:45:04 -0800103 /**
104 * Returns the identifier of the {@link Partition partition} associated with this instance.
105 * @return partition identifier
106 */
107 public PartitionId getId() {
108 return partition.getId();
Madan Jampani15b8ef52016-02-02 17:35:05 -0800109 }
110
Madan Jampani33547452016-02-29 16:45:04 -0800111 /**
112 * Returns the identifiers of partition members.
113 * @return partition member instance ids
114 */
115 public Collection<NodeId> getMembers() {
116 return partition.getMembers();
117 }
118
119 /**
120 * Returns the {@link Address addresses} of partition members.
121 * @return partition member addresses
122 */
123 public Collection<Address> getMemberAddresses() {
124 return Collections2.transform(partition.getMembers(), this::toAddress);
125 }
126
Madan Jampanif172d402016-03-04 00:56:38 -0800127 /**
128 * Attempts to rejoin the partition.
129 * @return future that is completed after the operation is complete
130 */
Madan Jampani33547452016-02-29 16:45:04 -0800131 private CompletableFuture<Void> openServer() {
132 if (!partition.getMembers().contains(localNodeId) || server != null) {
Madan Jampani15b8ef52016-02-02 17:35:05 -0800133 return CompletableFuture.completedFuture(null);
134 }
135 StoragePartitionServer server = new StoragePartitionServer(toAddress(localNodeId),
136 this,
137 serializer,
Jordan Haltermane9c37092017-03-21 11:16:14 -0700138 () -> new CopycatTransport(partition.getId(), messagingService),
Madan Jampani15b8ef52016-02-02 17:35:05 -0800139 logFolder);
Madan Jampani33547452016-02-29 16:45:04 -0800140 return server.open().thenRun(() -> this.server = server);
Madan Jampani15b8ef52016-02-02 17:35:05 -0800141 }
142
Madan Jampanif172d402016-03-04 00:56:38 -0800143 /**
144 * Attempts to join the partition as a new member.
145 * @return future that is completed after the operation is complete
146 */
147 private CompletableFuture<Void> joinCluster() {
148 Set<NodeId> otherMembers = partition.getMembers()
149 .stream()
150 .filter(nodeId -> !nodeId.equals(localNodeId))
151 .collect(Collectors.toSet());
152 StoragePartitionServer server = new StoragePartitionServer(toAddress(localNodeId),
153 this,
154 serializer,
Jordan Haltermane9c37092017-03-21 11:16:14 -0700155 () -> new CopycatTransport(partition.getId(), messagingService),
Madan Jampanif172d402016-03-04 00:56:38 -0800156 logFolder);
157 return server.join(Collections2.transform(otherMembers, this::toAddress)).thenRun(() -> this.server = server);
158 }
159
Madan Jampani15b8ef52016-02-02 17:35:05 -0800160 private CompletableFuture<StoragePartitionClient> openClient() {
161 client = new StoragePartitionClient(this,
162 serializer,
Jordan Halterman9bdc24f2017-04-19 23:45:12 -0700163 new CopycatTransport(partition.getId(), messagingService),
164 sharedExecutor);
Madan Jampani15b8ef52016-02-02 17:35:05 -0800165 return client.open().thenApply(v -> client);
166 }
167
Madan Jampani33547452016-02-29 16:45:04 -0800168 /**
169 * Closes the partition server if it was previously opened.
170 * @return future that is completed when the operation completes
171 */
Madan Jampanif172d402016-03-04 00:56:38 -0800172 public CompletableFuture<Void> leaveCluster() {
Madan Jampani33547452016-02-29 16:45:04 -0800173 return server != null ? server.closeAndExit() : CompletableFuture.completedFuture(null);
174 }
175
176 @Override
177 public boolean isOpen() {
Madan Jampani65f24bb2016-03-15 15:16:18 -0700178 return isOpened.get();
Madan Jampani15b8ef52016-02-02 17:35:05 -0800179 }
180
181 private CompletableFuture<Void> closeClient() {
182 if (client != null) {
183 return client.close();
184 }
185 return CompletableFuture.completedFuture(null);
186 }
187
188 private Address toAddress(NodeId nodeId) {
189 ControllerNode node = clusterService.getNode(nodeId);
190 return new Address(node.ip().toString(), node.tcpPort());
191 }
192
Madan Jampanie14a09c2016-02-11 10:43:21 -0800193 /**
194 * Returns the partition information if this partition is locally managed i.e.
195 * this node is a active member of the partition.
196 * @return partition info
197 */
198 public Optional<PartitionInfo> info() {
Madan Jampani65f24bb2016-03-15 15:16:18 -0700199 return server != null && server.isOpen() ? Optional.of(server.info()) : Optional.empty();
Madan Jampani33547452016-02-29 16:45:04 -0800200 }
201
Jon Hall1195afb2016-06-28 18:54:07 -0700202 /**
203 * Process updates to partitions and handles joining or leaving a partition.
204 * @param newValue new Partition
205 */
Madan Jampanif172d402016-03-04 00:56:38 -0800206 public void onUpdate(Partition newValue) {
Jon Hall1195afb2016-06-28 18:54:07 -0700207
208 boolean wasPresent = partition.getMembers().contains(localNodeId);
209 boolean isPresent = newValue.getMembers().contains(localNodeId);
Madan Jampanif172d402016-03-04 00:56:38 -0800210 this.partition = newValue;
Jon Hall1195afb2016-06-28 18:54:07 -0700211 if ((wasPresent && isPresent) || (!wasPresent && !isPresent)) {
212 // no action needed
213 return;
214 }
215 //only need to do action if our membership changed
216 if (wasPresent) {
Madan Jampanif172d402016-03-04 00:56:38 -0800217 leaveCluster();
Jon Hall1195afb2016-06-28 18:54:07 -0700218 } else if (isPresent) {
219 joinCluster();
Madan Jampani33547452016-02-29 16:45:04 -0800220 }
Madan Jampanie14a09c2016-02-11 10:43:21 -0800221 }
Madan Jampani15b8ef52016-02-02 17:35:05 -0800222}