/* Copyright (c) 2001-2010, The HSQL Development Group * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright notice, this * list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * Neither the name of the HSQL Development Group nor the names of its * contributors may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL HSQL DEVELOPMENT GROUP, HSQLDB.ORG, * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ package org.hsqldb.test; import java.io.File; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.util.Random; import org.hsqldb.lib.StopWatch; /** * Test large tables containing columns of different types. * * @author Fred Toussi (fredt@users dot sourceforge.net) */ public class TestAllTypes { protected String url = "jdbc:hsqldb:"; // protected String filepath = "."; protected String filepath = "/hsql/testalltypes/test"; // protected String filepath = "hsql://localhost/yourtest"; boolean network = true; String user; String password; Statement sStatement; Connection cConnection; // prameters boolean reportProgress = false; boolean cachedTable = true; int cacheScale = 12; int logType = 3; int writeDelay = 60; boolean indexZip = true; boolean indexLastName = false; boolean addForeignKey = false; boolean refIntegrity = true; boolean createTempTable = false; // introduces fragmentation to the .data file boolean deleteWhileInsert = false; int deleteWhileInsertInterval = 10000; // int bigrows = 1000; protected void setUp() { user = "sa"; password = ""; try { sStatement = null; cConnection = null; Class.forName("org.hsqldb.jdbc.JDBCDriver"); boolean createDatabase = false; if (!network) { File file = new File(filepath); createDatabase = !file.exists(); } if (createDatabase) { cConnection = DriverManager.getConnection(url + filepath, user, password); sStatement = cConnection.createStatement(); sStatement.execute("SET SCRIPTFORMAT " + logType); sStatement.execute("SET LOGSIZE " + 400); sStatement.execute("SET WRITE_DELAY " + writeDelay); sStatement.execute("SET PROPERTY \"hsqldb.cache_scale\" 16;"); sStatement.execute("SHUTDOWN"); cConnection.close(); cConnection = DriverManager.getConnection(url + filepath, user, password); sStatement = cConnection.createStatement(); } } catch (Exception e) { e.printStackTrace(); System.out.println("TestSql.setUp() error: " + e.getMessage()); } } /** * Fill up the cache * * */ public void testFillUp() { StopWatch sw = new StopWatch(); int smallrows = 0xfff; double value = 0; String ddl1 = "DROP TABLE test IF EXISTS;" + "DROP TABLE zip IF EXISTS;"; String ddl2 = "CREATE TABLE zip( zip INT IDENTITY );"; String ddl3 = "CREATE " + (cachedTable ? "CACHED " : "") + "TABLE test( id INT IDENTITY," + " firstname VARCHAR, " + " lastname VARCHAR, " + " zip INTEGER, " + " longfield BIGINT, " + " doublefield DOUBLE, " + " bigdecimalfield DECIMAL, " + " datefield DATE, " + " filler VARCHAR); "; // adding extra index will slow down inserts a bit String ddl4 = "CREATE INDEX idx1 ON TEST (lastname);"; // adding this index will slow down inserts a lot String ddl5 = "CREATE INDEX idx2 ON TEST (zip);"; // referential integrity checks will slow down inserts a bit String ddl6 = "ALTER TABLE test add constraint c1 FOREIGN KEY (zip) REFERENCES zip(zip);"; String filler = "ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHIJKLMNOPQRSTUVWXYZ"; try { System.out.println("Connecting"); sw.zero(); cConnection = null; sStatement = null; cConnection = DriverManager.getConnection(url + filepath, user, password); System.out.println("connected: " + sw.elapsedTime()); sw.zero(); sStatement = cConnection.createStatement(); java.util.Random randomgen = new java.util.Random(); sStatement.execute(ddl1); sStatement.execute(ddl2); sStatement.execute(ddl3); System.out.println("test table with no index"); if (indexLastName) { sStatement.execute(ddl4); System.out.println("create index on lastname"); } if (indexZip) { sStatement.execute(ddl5); System.out.println("create index on zip"); } if (addForeignKey) { sStatement.execute(ddl6); System.out.println("add foreign key"); } int i; for (i = 0; i <= smallrows; i++) { sStatement.execute("INSERT INTO zip VALUES(null);"); } PreparedStatement ps = cConnection.prepareStatement( "INSERT INTO test (firstname,lastname,zip,longfield,doublefield,bigdecimalfield,datefield,filler) VALUES (?,?,?,?,?,?,?,?)"); ps.setString(1, "Julia"); ps.setString(2, "Clancy"); for (i = 0; i < bigrows; i++) { ps.setInt(3, nextIntRandom(randomgen, smallrows)); int nextrandom = nextIntRandom(randomgen, filler.length()); int randomlength = nextIntRandom(randomgen, filler.length()); ps.setLong(4, randomgen.nextLong()); ps.setDouble(5, randomgen.nextDouble()); ps.setBigDecimal(6, null); // ps.setDouble(6, randomgen.nextDouble()); ps.setDate(7, new java.sql.Date(nextIntRandom(randomgen, 1000) * 24L * 3600 * 1000)); String varfiller = filler.substring(0, randomlength); ps.setString(8, nextrandom + varfiller); ps.execute(); if (reportProgress && (i + 1) % 10000 == 0) { System.out.println("Insert " + (i + 1) + " : " + sw.elapsedTime()); } // delete and add 4000 rows to introduce fragmentation if (deleteWhileInsert && i != 0 && i % deleteWhileInsertInterval == 0) { sStatement.execute("CALL IDENTITY();"); ResultSet rs = sStatement.getResultSet(); rs.next(); int lastId = rs.getInt(1); sStatement.execute( "SELECT * INTO TEMP tempt FROM test WHERE id > " + (lastId - 4000) + " ;"); sStatement.execute("DELETE FROM test WHERE id > " + (lastId - 4000) + " ;"); sStatement.execute( "INSERT INTO test SELECT * FROM tempt;"); sStatement.execute("DROP TABLE tempt;"); } } // sStatement.execute("INSERT INTO test SELECT * FROM temptest;"); // sStatement.execute("DROP TABLE temptest;"); // sStatement.execute(ddl7); System.out.println("Total insert: " + i); System.out.println("Insert time: " + sw.elapsedTime() + " rps: " + (i * 1000 / sw.elapsedTime())); sw.zero(); if (!network) { sStatement.execute("SHUTDOWN"); } cConnection.close(); System.out.println("Shutdown Time: " + sw.elapsedTime()); } catch (SQLException e) { System.out.println(e.getMessage()); } } protected void tearDown() {} protected void checkResults() { try { StopWatch sw = new StopWatch(); ResultSet rs; cConnection = DriverManager.getConnection(url + filepath, user, password); System.out.println("Reopened database: " + sw.elapsedTime()); sw.zero(); sStatement = cConnection.createStatement(); sStatement.execute("SET WRITE_DELAY " + writeDelay); // the tests use different indexes // use primary index sStatement.execute("SELECT count(*) from TEST"); rs = sStatement.getResultSet(); rs.next(); System.out.println("Row Count: " + rs.getInt(1)); System.out.println("Time to count: " + sw.elapsedTime()); // use index on zip sw.zero(); sStatement.execute("SELECT count(*) from TEST where zip > -1"); rs = sStatement.getResultSet(); rs.next(); System.out.println("Row Count: " + rs.getInt(1)); System.out.println("Time to count: " + sw.elapsedTime()); checkSelects(); checkUpdates(); sw.zero(); cConnection.close(); System.out.println("Closed connection: " + sw.elapsedTime()); } catch (SQLException e) { System.out.println(e.getMessage()); } } private void checkSelects() { StopWatch sw = new StopWatch(); int smallrows = 0xfff; java.util.Random randomgen = new java.util.Random(); int i = 0; boolean slow = false; try { for (; i < bigrows; i++) { PreparedStatement ps = cConnection.prepareStatement( "SELECT TOP 1 firstname,lastname,zip,filler FROM test WHERE zip = ?"); ps.setInt(1, nextIntRandom(randomgen, smallrows)); ps.execute(); if ((i + 1) == 100 && sw.elapsedTime() > 5000) { slow = true; } if (reportProgress && (i + 1) % 10000 == 0 || (slow && (i + 1) % 100 == 0)) { System.out.println("Select " + (i + 1) + " : " + sw.elapsedTime() + " rps: " + (i * 1000 / sw.elapsedTime())); } } } catch (SQLException e) {} System.out.println("Select random zip " + i + " rows : " + sw.elapsedTime() + " rps: " + (i * 1000 / sw.elapsedTime())); sw.zero(); try { for (i = 0; i < bigrows; i++) { PreparedStatement ps = cConnection.prepareStatement( "SELECT firstname,lastname,zip,filler FROM test WHERE id = ?"); ps.setInt(1, nextIntRandom(randomgen, bigrows - 1)); ps.execute(); if (reportProgress && (i + 1) % 10000 == 0 || (slow && (i + 1) % 100 == 0)) { System.out.println("Select " + (i + 1) + " : " + sw.elapsedTime()); } } } catch (SQLException e) {} System.out.println("Select random id " + i + " rows : " + sw.elapsedTime() + " rps: " + (i * 1000 / sw.elapsedTime())); } private void checkUpdates() { StopWatch sw = new StopWatch(); int smallrows = 0xfff; java.util.Random randomgen = new java.util.Random(); int i = 0; boolean slow = false; int count = 0; try { for (; i < smallrows; i++) { PreparedStatement ps = cConnection.prepareStatement( "UPDATE test SET filler = filler || zip WHERE zip = ?"); int random = nextIntRandom(randomgen, smallrows - 1); ps.setInt(1, random); count += ps.executeUpdate(); if (reportProgress && count % 10000 < 20) { System.out.println("Update " + count + " : " + sw.elapsedTime()); } } } catch (SQLException e) {} System.out.println("Update with random zip " + i + " UPDATE commands, " + count + " rows : " + sw.elapsedTime() + " rps: " + (count * 1000 / sw.elapsedTime())); sw.zero(); try { for (i = 0; i < bigrows; i++) { PreparedStatement ps = cConnection.prepareStatement( "UPDATE test SET zip = zip + 1 WHERE id = ?"); int random = nextIntRandom(randomgen, bigrows - 1); ps.setInt(1, random); ps.execute(); if (reportProgress && (i + 1) % 10000 == 0 || (slow && (i + 1) % 100 == 0)) { System.out.println("Update " + (i + 1) + " : " + sw.elapsedTime() + " rps: " + (i * 1000 / sw.elapsedTime())); } } } catch (SQLException e) {} System.out.println("Update with random id " + i + " rows : " + sw.elapsedTime() + " rps: " + (i * 1000 / sw.elapsedTime())); } int nextIntRandom(Random r, int range) { int b = r.nextInt(); if (b == Integer.MIN_VALUE) { b = Integer.MAX_VALUE; } b = Math.abs(b); return b % range; } public static void main(String[] argv) { StopWatch sw = new StopWatch(); TestAllTypes test = new TestAllTypes(); test.setUp(); test.testFillUp(); test.tearDown(); test.checkResults(); System.out.println("Total Test Time: " + sw.elapsedTime()); } }