web-dev-qa-db-fra.com

Est-il possible de démarrer une instance de serveur de zookeeper en cours, par exemple pour des tests unitaires?

L'appel de org.Apache.zookeeper.server.quorum.QuorumPeerMain.main () ne fonctionne pas.

44
marathon

Pour démarrer ZooKeeper, vous devez exécuter ZooKeeperServerMain class.

Vous pouvez utiliser le code suivant pour démarrer ZooKeeper en mode intégré.

Properties startupProperties = ...

QuorumPeerConfig quorumConfiguration = new QuorumPeerConfig();
try {
    quorumConfiguration.parseProperties(startupProperties);
} catch(Exception e) {
    throw new RuntimeException(e);
}

zooKeeperServer = new ZooKeeperServerMain();
final ServerConfig configuration = new ServerConfig();
configuration.readFrom(quorumConfiguration);

new Thread() {
    public void run() {
        try {
            zooKeeperServer.runFromConfig(configuration);
        } catch (IOException e) {
            log.error("ZooKeeper Failed", e);
        }
    }
}.start();
45
Mairbek Khadikov

Netfix opensourced Curator un cadre pour rendre Zookeeper encore plus pratique. Il a construit dans la classe de serveur de test. Ajoutez simplement cette dépendance test à votre descripteur de projet, que ce soit maven, gradle ou autre:

org.Apache.curator:curator-framework:4.0.1
org.Apache.curator:curator-test:4.0.1

Et voici l'essentiel du test.

TestingServer zkTestServer;
CuratorFramework cli;

@Before
public void startZookeeper() throws Exception {
    zkTestServer = new TestingServer(2181);
    cli = CuratorFrameworkFactory.newClient(zkTestServer.getConnectString(), new RetryOneTime(2000));
    cli.start();
}

@After
public void stopZookeeper() throws IOException {
    cli.close();
    zkTestServer.stop();
}

Avec cli, créer des données de test est très facile (nécessite la dépendance curator-framework).

cli.create()
   .creatingParentsIfNeeded()
   .forPath("/a1", "testvalue".getBytes("UTF-8"));
58
gertas

Vous pouvez utiliser quelque chose comme ça.

int clientPort = 21818; // none-standard
int numConnections = 5000;
int tickTime = 2000;
String dataDirectory = System.getProperty("Java.io.tmpdir");

File dir = new File(dataDirectory, "zookeeper").getAbsoluteFile();

ZooKeeperServer server = new ZooKeeperServer(dir, dir, tickTime);
NIOServerCnxn.Factory standaloneServerFactory = new NIOServerCnxn.Factory(new InetSocketAddress(clientPort), numConnections);

standaloneServerFactory.startup(server); // start the server.

Et pour l'arrêter, appelez simplement standaloneServerFactory.shutdown()

12
271828183

Construire sur la réponse de 1 en ajoutant l’utilisation d’un port éphémère (indiqué par zkPort) et mis à jour pour la dernière API ZK:

int tickTime = 2000;
int numConnections = 5000;
String dataDirectory = System.getProperty("Java.io.tmpdir");

File dir = new File(dataDirectory, "zookeeper").getAbsoluteFile();

ZooKeeperServer server = new ZooKeeperServer(dir, dir, tickTime);
standaloneServerFactory = ServerCnxnFactory.createFactory(0, numConnections);
int zkPort = standaloneServerFactory.getLocalPort();

standaloneServerFactory.startup(server);
3
itzg
ServerConfig config = new ServerConfig();
config.parse(new String[] {port, dir});
ZooKeeperServerMain zk = new ZooKeeperServerMain();
zk.runFromConfig(config);
2
Nikita Prokopov

Une version mise à jour de la réponse de GeoffBourne.

    int clientPort = 2199; // not standard
    int numConnections = 5000;
    int tickTime = 2000;
    String dataDirectory = System.getProperty("Java.io.tmpdir");

    File dir = new File(dataDirectory, "zookeeper").getAbsoluteFile();

    ZooKeeperServer server = new ZooKeeperServer(dir, dir, tickTime);
    ServerCnxnFactory factory = new NIOServerCnxnFactory();
    factory.configure(new InetSocketAddress(clientPort), numConnections);

    factory.startup(server); // start the server.

    // ...shutdown some time later
    factory.shutdown();
0
8xomaster