All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.voltdb.utils.TopologyZKUtils Maven / Gradle / Ivy

There is a newer version: 10.1.1
Show newest version
/* This file is part of VoltDB.
 * Copyright (C) 2008-2018 VoltDB Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with VoltDB.  If not, see .
 */

package org.voltdb.utils;

import org.apache.zookeeper_voltpatches.CreateMode;
import org.apache.zookeeper_voltpatches.KeeperException;
import org.apache.zookeeper_voltpatches.ZooDefs.Ids;
import org.apache.zookeeper_voltpatches.ZooKeeper;
import org.apache.zookeeper_voltpatches.data.Stat;
import org.json_voltpatches.JSONException;
import org.voltdb.AbstractTopology;
import org.voltdb.VoltDB;
import org.voltdb.VoltZK;

import com.google_voltpatches.common.base.Charsets;

public abstract class TopologyZKUtils {

    public static AbstractTopology registerTopologyToZK(ZooKeeper zk, AbstractTopology topology) {
        // First, race to write the topology to ZK using Highlander rules
        // (In the end, there can be only one)
        try {
            byte[] payload = topology.topologyToJSON().toString().getBytes(Charsets.UTF_8);
            zk.create(VoltZK.topology, payload, Ids.OPEN_ACL_UNSAFE, CreateMode.PERSISTENT);
        } catch (KeeperException.NodeExistsException nee) {
            // It's fine if we didn't win, we'll pick up the topology below
        } catch (KeeperException | InterruptedException | JSONException e) {
            VoltDB.crashLocalVoltDB("Unable to write topology to ZK, dying", true, e);
        }

        // Then, have everyone read the topology data back from ZK
        return readTopologyFromZK(zk);
    }

    public static AbstractTopology readTopologyFromZK(ZooKeeper zk) {
        AbstractTopology topology = null;
        try {
            byte[] data = zk.getData(VoltZK.topology, false, null);
            String jsonTopology = new String(data, Charsets.UTF_8);
            topology = AbstractTopology.topologyFromJSON(jsonTopology);
        } catch (KeeperException | InterruptedException | JSONException e) {
            VoltDB.crashLocalVoltDB("Unable to read topology from ZK, dying", true, e);
        }
        return topology;
    }

    public static void updateTopologyToZK(ZooKeeper zk, AbstractTopology topology) {
        Stat stat = new Stat();
        try {
            zk.getData(VoltZK.topology, false, stat);
            byte[] payload = topology.topologyToJSON().toString().getBytes(Charsets.UTF_8);
            zk.setData(VoltZK.topology, payload, stat.getVersion());
        } catch (KeeperException | InterruptedException | JSONException e) {
            VoltDB.crashLocalVoltDB("Unable to update topology to ZK, dying", true, e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy