blob: 9a759bc3c0563abf21b1354a0ebe9391c4025c0e [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 org.apache.ignite.tests;
import org.apache.ignite.Ignite;
import org.apache.ignite.Ignition;
import org.apache.ignite.tests.load.LoadTestDriver;
import org.apache.ignite.tests.load.ignite.BulkReadWorker;
import org.apache.ignite.tests.load.ignite.BulkWriteWorker;
import org.apache.ignite.tests.load.ignite.ReadWorker;
import org.apache.ignite.tests.load.ignite.WriteWorker;
import org.apache.ignite.tests.utils.CassandraHelper;
import org.apache.ignite.tests.utils.TestsHelper;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
/**
* Load tests for Ignite caches which utilizing {@link org.apache.ignite.cache.store.cassandra.CassandraCacheStore}
* to store cache data into Cassandra tables
*/
public class IgnitePersistentStoreLoadTest extends LoadTestDriver {
/** */
private static final Logger LOGGER = LogManager.getLogger("IgniteLoadTests");
/**
* test starter.
*
* @param args Test arguments.
*/
public static void main(String[] args) {
try {
LOGGER.info("Ignite load tests execution started");
LoadTestDriver driver = new IgnitePersistentStoreLoadTest();
/**
* Load test scripts could be executed from several machines. Current implementation can correctly,
* handle situation when Cassandra keyspace/table was dropped - for example by the same load test
* started a bit later on another machine. Moreover there is a warm up period for each load test.
* Thus all the delays related to keyspaces/tables recreation actions will not affect performance metrics,
* but it will be produced lots of "trash" output in the logs (related to correct handling of such
* exceptional situation and keyspace/table recreation).
*
* Thus dropping test keyspaces makes sense only for Unit tests, but not for Load tests.
**/
//CassandraHelper.dropTestKeyspaces();
driver.runTest("WRITE", WriteWorker.class, WriteWorker.LOGGER_NAME);
driver.runTest("BULK_WRITE", BulkWriteWorker.class, BulkWriteWorker.LOGGER_NAME);
driver.runTest("READ", ReadWorker.class, ReadWorker.LOGGER_NAME);
driver.runTest("BULK_READ", BulkReadWorker.class, BulkReadWorker.LOGGER_NAME);
/**
* Load test script executed on one machine could complete earlier that the same load test executed from
* another machine. Current implementation can correctly handle situation when Cassandra keyspace/table
* was dropped (simply recreate it). But dropping keyspace/table during load tests execution and subsequent
* recreation of such objects can have SIGNIFICANT EFFECT on final performance metrics.
*
* Thus dropping test keyspaces at the end of the tests makes sense only for Unit tests,
* but not for Load tests.
*/
//CassandraHelper.dropTestKeyspaces();
LOGGER.info("Ignite load tests execution completed");
}
catch (Throwable e) {
LOGGER.error("Ignite load tests execution failed", e);
throw new RuntimeException("Ignite load tests execution failed", e);
}
finally {
CassandraHelper.releaseCassandraResources();
}
}
/** {@inheritDoc} */
@Override protected Logger logger() {
return LOGGER;
}
/** {@inheritDoc} */
@Override protected Object setup(String logName) {
return Ignition.start(TestsHelper.getLoadTestsIgniteConfig());
}
/** {@inheritDoc} */
@Override protected void tearDown(Object obj) {
Ignite ignite = (Ignite)obj;
if (ignite != null)
ignite.close();
}
}