blob: 926697f4e9c8093eb6e7a5c0bee638789668c6fd [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package accord.coordinate;
import java.util.HashSet;
import java.util.Set;
import accord.api.Result;
import accord.coordinate.tracking.QuorumTracker;
import accord.local.Node;
import accord.local.Node.Id;
import accord.messages.Apply;
import accord.messages.Apply.ApplyReply;
import accord.messages.Callback;
import accord.messages.Commit;
import accord.messages.Commit.Kind;
import accord.messages.InformHomeDurable;
import accord.primitives.Deps;
import accord.primitives.Txn;
import accord.primitives.*;
import accord.topology.Shard;
import accord.topology.Topologies;
import static accord.coordinate.tracking.RequestStatus.Success;
import static accord.local.Status.Durability.Durable;
import static accord.local.Status.Durability.Universal;
public class Persist implements Callback<ApplyReply>
{
final Node node;
final TxnId txnId;
final FullRoute<?> route;
final Txn txn;
final Timestamp executeAt;
final Deps deps;
final QuorumTracker tracker;
final Set<Id> persistedOn;
boolean isDone;
public static void persist(Node node, Topologies sendTo, Topologies applyTo, TxnId txnId, FullRoute<?> route, Txn txn, Timestamp executeAt, Deps deps, Writes writes, Result result)
{
Persist persist = new Persist(node, applyTo, txnId, route, txn, executeAt, deps);
node.send(sendTo.nodes(), to -> new Apply(to, sendTo, applyTo, executeAt.epoch(), txnId, route, txn, executeAt, deps, writes, result), persist);
}
public static void persistAndCommit(Node node, TxnId txnId, FullRoute<?> route, Txn txn, Timestamp executeAt, Deps deps, Writes writes, Result result)
{
Topologies sendTo = node.topology().preciseEpochs(route, txnId.epoch(), executeAt.epoch());
Topologies applyTo = node.topology().forEpoch(route, executeAt.epoch());
Persist persist = new Persist(node, sendTo, txnId, route, txn, executeAt, deps);
node.send(sendTo.nodes(), to -> new Apply(to, sendTo, applyTo, executeAt.epoch(), txnId, route, txn, executeAt, deps, writes, result), persist);
}
private Persist(Node node, Topologies topologies, TxnId txnId, FullRoute<?> route, Txn txn, Timestamp executeAt, Deps deps)
{
this.node = node;
this.txnId = txnId;
this.txn = txn;
this.deps = deps;
this.route = route;
this.tracker = new QuorumTracker(topologies);
this.executeAt = executeAt;
this.persistedOn = new HashSet<>();
}
@Override
public void onSuccess(Id from, ApplyReply reply)
{
switch (reply)
{
default: throw new IllegalStateException();
case Redundant:
case Applied:
persistedOn.add(from);
if (tracker.recordSuccess(from) == Success)
{
if (!isDone)
{
// TODO (low priority, consider, efficiency): send to non-home replicas also, so they may clear their log more easily?
Shard homeShard = node.topology().forEpochIfKnown(route.homeKey(), txnId.epoch());
node.send(homeShard, new InformHomeDurable(txnId, route.homeKey(), executeAt, Durable, new HashSet<>(persistedOn)));
isDone = true;
}
else if (!tracker.hasInFlight() && !tracker.hasFailures())
{
Shard homeShard = node.topology().forEpochIfKnown(route.homeKey(), txnId.epoch());
node.send(homeShard, new InformHomeDurable(txnId, route.homeKey(), executeAt, Universal, new HashSet<>(persistedOn)));
}
}
break;
case Insufficient:
Topologies topologies = node.topology().preciseEpochs(route, txnId.epoch(), executeAt.epoch());
// TODO (easy, cleanup): use static method in Commit
node.send(from, new Commit(Kind.Maximal, from, topologies.forEpoch(txnId.epoch()), topologies, txnId, txn, route, null, executeAt, deps, false));
}
}
@Override
public void onFailure(Id from, Throwable failure)
{
// TODO (desired, consider): send knowledge of partial persistence?
}
@Override
public void onCallbackFailure(Id from, Throwable failure)
{
}
}