====================================================================================================
SYSBENCH BENCHMARK REPORT 
====================================================================================================
MACHINE:  Drizzle-build-n03
RUN ID:   15
RUN DATE: 2011-01-21T06:17:31.205352
WORKLOAD: innodb_1000K_readonly
SERVER:   drizzled
VERSION:  staging
REVISION: 2100
COMMENT:  2100: Lee Bieber 2011-01-21 [merge] Merge Stewart - Fix bug 664222: 
DDL operations have an implicit commit
====================================================================================================

TRENDING OVER LAST 5 runs 
Conc   TPS     % Diff from Avg   Diff       Min        Max        Avg        
STD       
====================================================================================================
16     2359.84       +2.96%      67.81    2206.96    2361.63    2292.03      
42.80
32     2613.70       +1.49%      38.41    2472.42    2669.91    2575.29      
53.86
64     2686.86       +1.21%      32.02    2602.30    2701.07    2654.84      
27.36
128    2584.17       +0.22%       5.70    2552.43    2598.28    2578.47      
11.16
256    2338.80       -0.05%      -1.09    2304.16    2368.87    2339.88      
19.38
512    1929.10       +0.28%       5.43    1906.66    1937.91    1923.67       
9.23
1024   1352.19       -1.15%     -15.66    1350.83    1381.49    1367.86       
9.30
====================================================================================================

TRENDING OVER Last 20 runs 

Conc   TPS     % Diff from Avg   Diff       Min        Max        Avg        
STD       
====================================================================================================
16     2359.84       +1.54%      35.74    2206.27    2427.08    2324.10      
55.11
32     2613.70       +1.45%      37.47    2342.44    2718.07    2576.23     
104.21
64     2686.86       +0.13%       3.40    2602.30    2767.41    2683.46      
49.10
128    2584.17       -1.32%     -34.48    2552.43    2680.08    2618.65      
34.61
256    2338.80       -2.27%     -54.30    2304.16    2462.21    2393.10      
42.37
512    1929.10       -1.73%     -33.97    1906.66    2013.35    1963.07      
31.02
1024   1352.19       -2.93%     -40.88    1350.83    1420.32    1393.07      
20.61
====================================================================================================

TRENDING OVER ALL runs 

Conc   TPS     % Diff from Avg   Diff       Min        Max        Avg        
STD       
====================================================================================================
16     2359.84       +1.54%      35.74    2206.27    2427.08    2324.10      
55.11
32     2613.70       +1.45%      37.47    2342.44    2718.07    2576.23     
104.21
64     2686.86       +0.13%       3.40    2602.30    2767.41    2683.46      
49.10
128    2584.17       -1.32%     -34.48    2552.43    2680.08    2618.65      
34.61
256    2338.80       -2.27%     -54.30    2304.16    2462.21    2393.10      
42.37
512    1929.10       -1.73%     -33.97    1906.66    2013.35    1963.07      
31.02
1024   1352.19       -2.93%     -40.88    1350.83    1420.32    1393.07      
20.61
====================================================================================================
FULL REVISION COMMENTARY:

  2099.1.3: Lee Bieber 2011-01-21 [merge] Merge Stewart - Fix bug 664222: DDL 
operations have an implicit commit
    1890.2.53: Stewart Smith 2011-01-21 [merge] merge trunk
    1890.2.52: Stewart Smith 2011-01-07 add test for EXECUTE WAIT doing DDL 
that will actually do the DDL - run a COMMIT first.
    1890.2.51: Stewart Smith 2011-01-07 revert patch that changed EXECUTE to 
use AUTOCOMMIT=0 instead of START TRANSACTION. Of course, this means that you 
cannot do DDL inside EXECUTE, so change the test and result for execute_wait 
test which did that.
    1890.2.50: Stewart Smith 2011-01-06 [merge] merge trunk
    1890.2.49: Stewart Smith 2011-01-04 error out on DROP INDEX inside a 
transaction with ER_TRANSACTIONAL_DDL_NOT_SUPPORTED.
    1890.2.48: Stewart Smith 2011-01-04 error out on CREATE INDEX inside a 
transaction with ER_TRANSACTIONAL_DDL_NOT_SUPPORTED.
    1890.2.47: Stewart Smith 2011-01-04 statement_boundaries test relied on 
implicit commits in schema operations. use explicit commits instead
    1890.2.46: Stewart Smith 2011-01-04 add test for DROP SCHEMA inside a txn 
erroring out
    1890.2.45: Stewart Smith 2011-01-04 error out on DROP SCHEMA inside a 
transaction with ER_TRANSACTIONAL_DDL_NOT_SUPPORTED. You may have been mistaken 
that this would previously error out on ER_LOCK_OR_ACTIVE_TRANSACTION. It 
didn't.
    1890.2.44: Stewart Smith 2011-01-04 error out on ALTER SCHEMA inside a 
transaction with ER_TRANSACTIONAL_DDL_NOT_SUPPORTED. Previously this would be 
ER_LOCK_OR_ACTIVE_TRANSACTION which isn't exactly correct or consistent with 
others.
    1890.2.43: Stewart Smith 2011-01-04 add test for CREATE SCHEMA inside a txn 
erroring out
    1890.2.42: Stewart Smith 2011-01-04 error out on CREATE SCHEMA inside a 
transaction with ER_TRANSACTIONAL_DDL_NOT_SUPPORTED
    1890.2.41: Stewart Smith 2011-01-04 innobase innodb test relied on implicit 
commits in TRUNCATE TABLE and RENAME TABLE. use explicit commits instead
    1890.2.40: Stewart Smith 2011-01-04 error out on RENAME TABLE inside a 
transaction with ER_TRANSACTIONAL_DDL_NOT_SUPPORTED
    1890.2.39: Stewart Smith 2011-01-04 error out on TRUNCATE TABLE inside a 
transaction with ER_TRANSACTIONAL_DDL_NOT_SUPPORTED
    1890.2.38: Stewart Smith 2011-01-04 change EXECUTE to use SET AUTOCOMMIT=0 
instead of START TRANSACTION as this continues to allow us to execute DDL using 
EXECUTE as we won't have an ongoing transaction to cause us to error out.... 
although if we're running any other statement, we will start a transaction. 
neat trick(tm)
    1890.2.37: Stewart Smith 2011-01-04 update Transactional DDL not supported 
error number
    1890.2.36: Stewart Smith 2011-01-04 fix merge conflict that was accidently 
committed
    1890.2.35: Stewart Smith 2011-01-04 add ddl_transactions to list of default 
test suites
    1890.2.34: Stewart Smith 2011-01-04 [merge] merge run-more-suites (incl 
trunk
    1890.2.33: Stewart Smith 2011-01-04 add a small test suite for DDL 
transactions (i.e. that we get an error when doing them
    1890.2.32: Stewart Smith 2011-01-04 innobase innodb test relied on implicit 
commit in ALTER TABLE. use explicit commit instead
    1890.2.31: Stewart Smith 2011-01-04 myisam mix2 test relied on implicit 
commit in ALTER TABLE. use explicit commit instead
    1890.2.30: Stewart Smith 2011-01-04 throw 
ER_TRANSACTIONAL_DDL_NOT_SUPPORTED in ALTER TABLE if there is an ongoing txn
    1890.2.29: Stewart Smith 2010-12-29 use explicit commit in 
haildb.trx_isolation_serializable test instead of implicit commit in DROP TABLE
    1890.2.28: Stewart Smith 2010-12-29 use explicit commit in 
haildb.trx_isolation_repeatable_read test instead of implicit commit in DROP 
TABLE
    1890.2.27: Stewart Smith 2010-12-29 use explicit commit in 
haildb.trx_isolation_read_uncommitted test instead of implicit commit in DROP 
TABLE
    1890.2.26: Stewart Smith 2010-12-29 use explicit commit in 
storage_engine_apI_tester.transaction test instead of implicit commit in DROP 
TABLE
    1890.2.25: Stewart Smith 2010-12-29 use explicit COMMIT in 
transaction_log.auto_commit test instead of implicit commit in DROP TABLE
    1890.2.24: Stewart Smith 2010-12-29 use explicit COMMIT in innodb_bug51920 
test intesad of implicit commit in DROP TABLE
    1890.2.23: Stewart Smith 2010-12-29 use explicit COMMIT in innodb_bug53674 
test intesad of implicit commit in DROP TABLE
    1890.2.22: Stewart Smith 2010-12-29 use explicit COMMIT in innodb test 
intesad of implicit commit in DROP TABLE
    1890.2.21: Stewart Smith 2010-12-29 use explicit COMMIT in 
innodb-semi-consistent test intesad of implicit commit in DROP TABLE
    1890.2.20: Stewart Smith 2010-12-29 use explicit COMMIT in 
trx_isolation_read_committed test instead of implicit commit in DROP TABLE
    1890.2.19: Stewart Smith 2010-12-29 use explicit COMMIT in transaction test 
instead of implicit commit in DROP TABLE
    1890.2.18: Stewart Smith 2010-12-29 use explicit COMMIT in 
statement_boundaries test instead of relying on implicit COMMIT in DROP TABLE 
statement
    1890.2.17: Stewart Smith 2010-12-29 use explicit COMMITs in savepoints test 
instead of implicit COMMITs in DROP TABLE statement
    1890.2.16: Stewart Smith 2010-12-29 use explicit COMMIT in randgen_queries 
test instead of implicit COMMIt in DROP TABLE
    1890.2.15: Stewart Smith 2010-12-29 make insert test use an explicit commit 
instead of an implicit one in DROP TABLE
    1890.2.14: Stewart Smith 2010-12-29 update flush_block_commit test to use 
an explicit COMMIT instead of the implicit one in DROP TABLE
    1890.2.13: Stewart Smith 2010-12-29 error out with 
ER_TRANSACTIONAL_DDL_NOT_SUPPORTED in DROP TABLE if there is an ongoing 
transaction.
    1890.2.12: Stewart Smith 2010-12-29 update docs on Transactional DDL support
    1890.2.11: Stewart Smith 2010-12-29 use explicit COMMIT in innobase 
unsafe_binlog test
    1890.2.10: Stewart Smith 2010-12-29 use explicit commit in innodb_mysql 
test instead of implicit in CREATE TABLE
    1890.2.9: Stewart Smith 2010-12-29 innobase.innodb test: use explicit 
COMMIT instead of relying on implicit commit in CREATE TABLE
    1890.2.8: Stewart Smith 2010-12-29 transaction log test: use explicit 
COMMIT instead of relying on implicit in CREATE TABLE
    1890.2.7: Stewart Smith 2010-12-29 select_in_null test was attempting DDL 
inside txn. remove begin/commit as it's not needed anyway
    1890.2.6: Stewart Smith 2010-12-29 insert.test was setting autocommit=0 but 
not resetting it. really we just wanted a txn for bulk loading, which we had 
anyway. remove the set
    1890.2.5: Stewart Smith 2010-12-29 SET AUTOCOMMIT=1 was not completely 
performing a COMMIT
    1890.2.4: Stewart Smith 2010-12-29 remove unneeded and incorrectly added 
errname.cc.THIS
    1890.2.3: Stewart Smith 2010-12-29 [merge] merge fixing test-run --gdb
    1890.2.2: Stewart Smith 2010-12-29 [merge] merge trunk
    1890.2.1: Stewart Smith 2010-11-01 add error message for Transactional DDL 
not being supported. Throw it in CREATE TABLE instead of implicit commit.
  2099.1.2: Lee Bieber 2011-01-21 Add BSD copyright file to win32/config.h
  2099.1.1: Lee Bieber 2011-01-20 [merge] Merge Brian - cleanup 
user_locks.kill_wait test
    2098.2.1: Brian Aker 2011-01-20 Fix lcov issue.

_______________________________________________
Mailing list: https://launchpad.net/~drizzle-benchmark
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~drizzle-benchmark
More help   : https://help.launchpad.net/ListHelp

Reply via email to