Java tutorial
/** * 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 com.github.oscerd.camel.cassandra.embedded; import io.teknek.farsandra.Farsandra; import io.teknek.farsandra.LineHandler; import io.teknek.farsandra.ProcessHandler; import java.io.File; import java.util.Arrays; import java.util.concurrent.CountDownLatch; import org.apache.camel.test.junit4.CamelTestSupport; import org.apache.commons.lang.RandomStringUtils; import com.datastax.driver.core.Cluster; import com.datastax.driver.core.Session; /** * Sample on how to spin up an embedded Cassandra instance * using in-memory storage. */ public class CassandraBaseTest extends CamelTestSupport { private Farsandra fs; @Override public void doPostSetup() { String id = RandomStringUtils.random(12, "0123456789abcdefghijklmnopqrstuvwxyz"); fs = new Farsandra(); fs.withVersion("2.0.3"); fs.withCleanInstanceOnStart(true); fs.withInstanceName("target" + File.separator + id); fs.withCreateConfigurationFiles(true); fs.withHost("localhost"); fs.withSeeds(Arrays.asList("localhost")); final CountDownLatch started = new CountDownLatch(1); fs.getManager().addOutLineHandler(new LineHandler() { @Override public void handleLine(String line) { if (line.contains("Listening for thrift clients...")) { started.countDown(); } } }); fs.getManager().addProcessHandler(new ProcessHandler() { @Override public void handleTermination(int exitValue) { started.countDown(); } }); fs.start(); try { started.await(); Thread.sleep(3000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } Cluster cluster = Cluster.builder().addContactPoint("127.0.0.1").build(); Session session = cluster.connect(); session.execute("CREATE KEYSPACE IF NOT EXISTS simplex WITH replication " + "= {'class':'SimpleStrategy', 'replication_factor':3};"); session.execute("CREATE TABLE IF NOT EXISTS simplex.airport (" + "id int PRIMARY KEY," + "ident text," + "type text," + "name text," + "latitude_deg float," + "longitude_deg float," + "elevation_ft int," + "continent text," + "iso_country text," + "iso_region text," + "municipality text," + "scheduled_service text," + "gps_code text," + "iata_code text," + "local_code text," + "home_link text," + "wikipedia_link text," + "keywords text," + ");"); session.execute("CREATE INDEX IF NOT EXISTS name_idx ON simplex.airport(name);"); session.execute("CREATE INDEX IF NOT EXISTS continent_idx ON simplex.airport(continent);"); session.close(); cluster.close(); try { Thread.sleep(5 * 1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } } @Override public void tearDown() throws Exception { //Shutting down everything in an orderly fashion fs.getManager().destroyAndWaitForShutdown(10); super.tearDown(); } }