public void testCatalogUpdateAfterRejoin() throws Exception { System.out.println("testCatalogUpdateAfterRejoin"); VoltProjectBuilder builder = getBuilderForTest(); LocalCluster cluster = new LocalCluster("rejoin.jar", 2, 2, 1, BackendTarget.NATIVE_EE_JNI); boolean success = cluster.compile(builder); assertTrue(success); MiscUtils.copyFile( builder.getPathToDeployment(), Configuration.getPathToCatalogForTest("rejoin.xml")); try { cluster.startUp(); for (int ii = 0; ii < 3; ii++) { cluster.shutDownSingleHost(1); Thread.sleep(1000); cluster.recoverOne(1, 0, "localhost"); File newCatalog = new File(Configuration.getPathToCatalogForTest("rejoin.jar")); File deployment = new File(Configuration.getPathToCatalogForTest("rejoin.xml")); Client client = ClientFactory.createClient(); client.createConnection("localhost"); VoltTable[] results = client.updateApplicationCatalog(newCatalog, deployment).getResults(); assertTrue(results.length == 1); client.close(); } } finally { cluster.shutDown(); } }
public void testLocalClusterRecoveringMode() throws Exception { VoltProjectBuilder builder = getBuilderForTest(); LocalCluster cluster = new LocalCluster( "rejoin.jar", 2, 2, 1, BackendTarget.NATIVE_EE_JNI, LocalCluster.FailureState.ONE_FAILURE, false, true); boolean success = cluster.compile(builder); assertTrue(success); MiscUtils.copyFile( builder.getPathToDeployment(), Configuration.getPathToCatalogForTest("rejoin.xml")); cluster.setHasLocalServer(false); cluster.startUp(); Thread.sleep(100); cluster.shutDown(); cluster = new LocalCluster( "rejoin.jar", 2, 3, 1, BackendTarget.NATIVE_EE_JNI, LocalCluster.FailureState.ONE_RECOVERING, false, true); success = cluster.compile(builder); assertTrue(success); MiscUtils.copyFile( builder.getPathToDeployment(), Configuration.getPathToCatalogForTest("rejoin.xml")); cluster.setHasLocalServer(false); cluster.startUp(); Thread.sleep(100); cluster.shutDown(); }
public void testRejoinInlineStringBug() throws Exception { VoltProjectBuilder builder = getBuilderForTest(); LocalCluster cluster = new LocalCluster("rejoin.jar", 1, 2, 1, BackendTarget.NATIVE_EE_JNI, true); boolean success = cluster.compile(builder); assertTrue(success); MiscUtils.copyFile( builder.getPathToDeployment(), Configuration.getPathToCatalogForTest("rejoin.xml")); cluster.setHasLocalServer(false); cluster.startUp(); Client client; client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost"); ProcedureCallback callback = new ProcedureCallback() { @Override public void clientCallback(ClientResponse clientResponse) throws Exception { if (clientResponse.getStatus() != ClientResponse.SUCCESS) { System.out.println(clientResponse.getStatusString()); } } }; StringBuffer shortBuffer = new StringBuffer(); for (int ii = 0; ii < 33; ii++) { shortBuffer.append('a'); } String shortString = shortBuffer.toString(); StringBuffer longBuffer = new StringBuffer(); for (int ii = 0; ii < 17700; ii++) { longBuffer.append('a'); } String longString = longBuffer.toString(); for (int ii = 0; ii < 119; ii++) { client.callProcedure(callback, "InsertInlinedString", ii, shortString, longString); } shortBuffer.append("aaa"); client.callProcedure(callback, "InsertInlinedString", 120, shortBuffer.toString(), longString); client.drain(); client.close(); cluster.shutDownSingleHost(0); cluster.recoverOne(0, 1, "localhost"); cluster.shutDown(); }
TestEnv( String pathToCatalog, String pathToDeployment, int siteCount, int hostCount, int kFactor, boolean enableIv2) { m_builder = new VoltProjectBuilder(); try { m_builder.addLiteralSchema( "create table BLAH (" + "IVAL bigint default 0 not null, " + "TVAL timestamp default null," + "DVAL decimal default null," + "PRIMARY KEY(IVAL));"); m_builder.addPartitionInfo("BLAH", "IVAL"); m_builder.addStmtProcedure("Insert", "INSERT into BLAH values (?, ?, ?);", null); m_builder.addStmtProcedure( "InsertWithDate", "INSERT INTO BLAH VALUES (974599638818488300, '2011-06-24 10:30:26.002', 5);"); // add more partitioned and replicated tables, PARTED[1-3] and REPED[1-2] AdHocQueryTester.setUpSchema(m_builder, pathToCatalog, pathToDeployment); } catch (Exception e) { e.printStackTrace(); fail("Failed to set up schema"); } m_cluster = new LocalCluster( pathToCatalog, siteCount, hostCount, kFactor, BackendTarget.NATIVE_EE_JNI, LocalCluster.FailureState.ALL_RUNNING, m_debug, false, enableIv2); boolean success = m_cluster.compile(m_builder); assert (success); try { MiscUtils.copyFile(m_builder.getPathToDeployment(), pathToDeployment); } catch (Exception e) { fail( String.format( "Failed to copy \"%s\" to \"%s\"", m_builder.getPathToDeployment(), pathToDeployment)); } m_cluster.setHasLocalServer(true); }
public static Test suite() throws IOException { // the suite made here will all be using the tests from this class MultiConfigSuiteBuilder builder = new MultiConfigSuiteBuilder(TestJDBCConnectionFail.class); // build up a project builder for the workload VoltProjectBuilder project = getBuilderForTest(); boolean success; m_config = new LocalCluster("decimal-default.jar", 4, 5, kfactor, BackendTarget.NATIVE_EE_JNI); m_config.setHasLocalServer(true); success = m_config.compile(project); assertTrue(success); // add this config to the set of tests to run builder.addServerConfig(m_config); return builder; }
public void testRejoinDataTransfer() throws Exception { System.out.println("testRejoinDataTransfer"); VoltProjectBuilder builder = getBuilderForTest(); builder.setSecurityEnabled(true); LocalCluster cluster = new LocalCluster("rejoin.jar", 2, 2, 1, BackendTarget.NATIVE_EE_JNI, true); boolean success = cluster.compile(builder); assertTrue(success); MiscUtils.copyFile( builder.getPathToDeployment(), Configuration.getPathToCatalogForTest("rejoin.xml")); cluster.setHasLocalServer(false); cluster.startUp(); ClientResponse response; Client client; client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost"); response = client.callProcedure("InsertSinglePartition", 0); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("Insert", 1); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("InsertReplicated", 0); assertEquals(ClientResponse.SUCCESS, response.getStatus()); cluster.shutDownSingleHost(0); Thread.sleep(1000); VoltDB.Configuration config = new VoltDB.Configuration(); config.m_pathToCatalog = Configuration.getPathToCatalogForTest("rejoin.jar"); config.m_pathToDeployment = Configuration.getPathToCatalogForTest("rejoin.xml"); config.m_rejoinToHostAndPort = m_username + ":" + m_password + "@localhost:21213"; config.m_isRejoinTest = true; ServerThread localServer = new ServerThread(config); localServer.start(); localServer.waitForInitialization(); Thread.sleep(2000); client.close(); client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost", 21213); // // Check that the recovery data transferred // response = client.callProcedure("SelectBlahSinglePartition", 0); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 0); response = client.callProcedure("SelectBlah", 1); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 1); response = client.callProcedure("SelectBlahReplicated", 0); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 0); // // Try to insert new data // response = client.callProcedure("InsertSinglePartition", 2); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("Insert", 3); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("InsertReplicated", 1); assertEquals(ClientResponse.SUCCESS, response.getStatus()); // // See that it was inserted // response = client.callProcedure("SelectBlahSinglePartition", 2); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 2); response = client.callProcedure("SelectBlah", 3); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 3); response = client.callProcedure("SelectBlahReplicated", 1); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 1); // // Kill one of the old ones (not the recovered partition) // cluster.shutDownSingleHost(1); Thread.sleep(1000); client.close(); client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost", 21212); // // See that the cluster is available and the data is still there. // response = client.callProcedure("SelectBlahSinglePartition", 2); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 2); response = client.callProcedure("SelectBlah", 3); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 3); response = client.callProcedure("SelectBlahReplicated", 1); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 1); client.close(); localServer.shutdown(); cluster.shutDown(); }
public void testRejoinWithExport() throws Exception { VoltProjectBuilder builder = getBuilderForTest(); // builder.setTableAsExportOnly("blah", false); // builder.setTableAsExportOnly("blah_replicated", false); // builder.setTableAsExportOnly("PARTITIONED", false); // builder.setTableAsExportOnly("PARTITIONED_LARGE", false); builder.addExport( "org.voltdb.export.processors.RawProcessor", true, // enabled null); // authGroups (off) LocalCluster cluster = new LocalCluster("rejoin.jar", 2, 3, 1, BackendTarget.NATIVE_EE_JNI, true); boolean success = cluster.compile(builder); assertTrue(success); MiscUtils.copyFile( builder.getPathToDeployment(), Configuration.getPathToCatalogForTest("rejoin.xml")); cluster.setHasLocalServer(false); cluster.startUp(); ClientResponse response; Client client; client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost"); response = client.callProcedure("InsertSinglePartition", 0); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("Insert", 1); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("InsertReplicated", 0); assertEquals(ClientResponse.SUCCESS, response.getStatus()); client.close(); client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost", 21213); response = client.callProcedure("InsertSinglePartition", 2); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("Insert", 3); assertEquals(ClientResponse.SUCCESS, response.getStatus()); client.close(); TrivialExportClient exportClient = new TrivialExportClient(); exportClient.work(); exportClient.work(); Thread.sleep(4000); exportClient.work(); Thread.sleep(4000); exportClient.work(); cluster.shutDownSingleHost(0); Thread.sleep(100); VoltDB.Configuration config = new VoltDB.Configuration(); config.m_pathToCatalog = Configuration.getPathToCatalogForTest("rejoin.jar"); config.m_pathToDeployment = Configuration.getPathToCatalogForTest("rejoin.xml"); config.m_rejoinToHostAndPort = m_username + ":" + m_password + "@localhost:21213"; config.m_isRejoinTest = true; ServerThread localServer = new ServerThread(config); localServer.start(); localServer.waitForInitialization(); Thread.sleep(1000); while (VoltDB.instance().recovering()) { Thread.sleep(100); } client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost"); response = client.callProcedure("InsertSinglePartition", 5); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("Insert", 6); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("InsertReplicated", 7); assertEquals(ClientResponse.SUCCESS, response.getStatus()); client.close(); client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost", 21213); response = client.callProcedure("InsertSinglePartition", 8); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("Insert", 9); assertEquals(ClientResponse.SUCCESS, response.getStatus()); client.close(); exportClient = new TrivialExportClient(); exportClient.work(); Thread.sleep(4000); exportClient.work(); Thread.sleep(4000); exportClient.work(); localServer.shutdown(); cluster.shutDown(); }
public void testRejoin() throws Exception { // Reset the VoltFile prefix that may have been set by previous tests in this suite org.voltdb.utils.VoltFile.resetSubrootForThisProcess(); VoltProjectBuilder builder = getBuilderForTest(); builder.setSecurityEnabled(true); LocalCluster cluster = new LocalCluster("rejoin.jar", 2, 3, 1, BackendTarget.NATIVE_EE_JNI, true); boolean success = cluster.compile(builder); assertTrue(success); MiscUtils.copyFile( builder.getPathToDeployment(), Configuration.getPathToCatalogForTest("rejoin.xml")); cluster.setHasLocalServer(false); cluster.startUp(); ClientResponse response; Client client; client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost"); response = client.callProcedure("InsertSinglePartition", 0); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("Insert", 1); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("InsertReplicated", 0); assertEquals(ClientResponse.SUCCESS, response.getStatus()); client.close(); client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost", 21213); response = client.callProcedure("InsertSinglePartition", 2); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("Insert", 3); assertEquals(ClientResponse.SUCCESS, response.getStatus()); client.close(); cluster.shutDownSingleHost(0); Thread.sleep(100); VoltDB.Configuration config = new VoltDB.Configuration(); config.m_pathToCatalog = Configuration.getPathToCatalogForTest("rejoin.jar"); config.m_pathToDeployment = Configuration.getPathToCatalogForTest("rejoin.xml"); config.m_rejoinToHostAndPort = m_username + ":" + m_password + "@localhost:21213"; config.m_isRejoinTest = true; ServerThread localServer = new ServerThread(config); localServer.start(); localServer.waitForInitialization(); Thread.sleep(5000); client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost"); response = client.callProcedure("InsertSinglePartition", 5); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("Insert", 6); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("InsertReplicated", 7); assertEquals(ClientResponse.SUCCESS, response.getStatus()); client.close(); client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost", 21213); response = client.callProcedure("InsertSinglePartition", 8); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("Insert", 9); assertEquals(ClientResponse.SUCCESS, response.getStatus()); client.close(); localServer.shutdown(); cluster.shutDown(); }
public void testRejoinWithMultipartLoad() throws Exception { ExecutionSite.m_recoveryPermit.drainPermits(); ExecutionSite.m_recoveryPermit.release(); try { System.out.println("testRejoinWithMultipartLoad"); VoltProjectBuilder builder = getBuilderForTest(); builder.setSecurityEnabled(true); LocalCluster cluster = new LocalCluster( "rejoin.jar", 2, 2, 1, BackendTarget.NATIVE_EE_JNI, LocalCluster.FailureState.ALL_RUNNING, true, true); boolean success = cluster.compile(builder); assertTrue(success); MiscUtils.copyFile( builder.getPathToDeployment(), Configuration.getPathToCatalogForTest("rejoin.xml")); cluster.setHasLocalServer(false); cluster.startUp(); ClientResponse response; Client client; client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost", 21213); response = client.callProcedure("InsertSinglePartition", 33); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("Insert", 1); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("InsertReplicated", 34); assertEquals(ClientResponse.SUCCESS, response.getStatus()); cluster.shutDownSingleHost(0); Thread.sleep(1000); final Client clientForLoadThread = client; final java.util.concurrent.atomic.AtomicBoolean shouldContinue = new java.util.concurrent.atomic.AtomicBoolean(true); Thread loadThread = new Thread("Load Thread") { @Override public void run() { try { final long startTime = System.currentTimeMillis(); while (shouldContinue.get()) { try { clientForLoadThread.callProcedure( new org.voltdb.client.ProcedureCallback() { @Override public void clientCallback(ClientResponse clientResponse) throws Exception { if (clientResponse.getStatus() != ClientResponse.SUCCESS) { // // System.err.println(clientResponse.getStatusString()); } } }, "@Statistics", "MANAGEMENT", 1); // clientForLoadThread.callProcedure("@Statistics", ); Thread.sleep(1); final long now = System.currentTimeMillis(); if (now - startTime > 1000 * 10) { break; } } catch (Exception e) { e.printStackTrace(); break; } } } finally { try { clientForLoadThread.close(); } catch (Exception e) { e.printStackTrace(); } } } }; loadThread.start(); Thread.sleep(2000); ServerThread localServer = null; try { VoltDB.Configuration config = new VoltDB.Configuration(); config.m_pathToCatalog = Configuration.getPathToCatalogForTest("rejoin.jar"); config.m_pathToDeployment = Configuration.getPathToCatalogForTest("rejoin.xml"); config.m_rejoinToHostAndPort = m_username + ":" + m_password + "@localhost:21213"; config.m_isRejoinTest = true; localServer = new ServerThread(config); localServer.start(); localServer.waitForInitialization(); Thread.sleep(2000); client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost", 21213); // // Check that the recovery data transferred // response = client.callProcedure("SelectBlahSinglePartition", 33); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 33); } finally { shouldContinue.set(false); } response = client.callProcedure("SelectBlah", 1); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 1); response = client.callProcedure("SelectBlahReplicated", 34); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 34); // // Try to insert new data // response = client.callProcedure("InsertSinglePartition", 2); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("Insert", 3); assertEquals(ClientResponse.SUCCESS, response.getStatus()); response = client.callProcedure("InsertReplicated", 1); assertEquals(ClientResponse.SUCCESS, response.getStatus()); // // See that it was inserted // response = client.callProcedure("SelectBlahSinglePartition", 2); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 2); response = client.callProcedure("SelectBlah", 3); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 3); response = client.callProcedure("SelectBlahReplicated", 1); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 1); // // Kill one of the old ones (not the recovered partition) // cluster.shutDownSingleHost(1); Thread.sleep(1000); client.close(); client = ClientFactory.createClient(m_cconfig); client.createConnection("localhost", 21212); // // See that the cluster is available and the data is still there. // response = client.callProcedure("SelectBlahSinglePartition", 2); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 2); response = client.callProcedure("SelectBlah", 3); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 3); response = client.callProcedure("SelectBlahReplicated", 1); assertEquals(ClientResponse.SUCCESS, response.getStatus()); assertEquals(response.getResults()[0].fetchRow(0).getLong(0), 1); client.close(); localServer.shutdown(); cluster.shutDown(); } finally { ExecutionSite.m_recoveryPermit.drainPermits(); ExecutionSite.m_recoveryPermit.release(Integer.MAX_VALUE); } }