Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
5.5.39, 10.0.13
-
Ubuntu 64bit 14.4 LTS: linux-kernel-3.13.0-24-generic
Description
I have a table partitioned by range created with the tokudb engine on mariadb 10.0.12. When I have one client inserting into this table everything works as expected. However, as soon as I have a second client inserting more data into this table I get the following error: Failed to read auto-increment value from storage engine. When I see the table status the Auto_increment value is 2049. My auto increment description is "id bigint not null auto_increment".
I can reproduce this problem with the below table and Java client side code. Another tokudb user on the tokudb-user group performed the test on Percona Server 5.6, which did not fail: https://groups.google.com/forum/#!topic/tokudb-user/2pnjQxuuvUo
CREATE TABLE `auto_inc_test` (
|
`id` bigint(20) NOT NULL AUTO_INCREMENT,
|
`time` bigint(20) NOT NULL,
|
PRIMARY KEY (`time`,`id`)
|
) ENGINE=TokuDB AUTO_INCREMENT=1001 DEFAULT CHARSET=latin1 `compression`='tokudb_zlib'
|
|
ALTER TABLE order_books partition by range (time) (
|
partition p0 values less than (1507495611880)
|
);
|
public class MultipleClientsInsertingDataIntoPartitionedTokudbTable {
|
|
public static final String INSERT_STATEMENT = "INSERT INTO test.auto_inc_test (time) values (?)";
|
|
private final CountDownLatch countDownLatch;
|
|
public MultipleClientsInsertingDataIntoPartitionedTokudbTable() {
|
countDownLatch = new CountDownLatch(2);
|
}
|
|
public static void main(String[] args) throws InterruptedException {
|
MultipleClientsInsertingDataIntoPartitionedTokudbTable multipleClientsInsertingDataIntoPartitionedTokudbTable = new MultipleClientsInsertingDataIntoPartitionedTokudbTable();
|
multipleClientsInsertingDataIntoPartitionedTokudbTable.start();
|
}
|
|
private void start() throws InterruptedException {
|
DataSource dataSource = createDataSource();
|
new Thread(new InsertRunnable(dataSource)).start();
|
new Thread(new InsertRunnable(dataSource)).start();
|
countDownLatch.await();
|
}
|
|
private DataSource createDataSource() {
|
String jdbcUrl = "jdbc:mysql://xxx.xxx.xxx.xxx/test?tcpNoDelay=true&tcpKeepAlive=true&rewriteBatchedStatements=true";
|
String username = "user";
|
String password = "password";
|
MysqlDataSource mysqlDataSource = new MysqlDataSource();
|
mysqlDataSource.setURL(jdbcUrl);
|
mysqlDataSource.setUser(username);
|
mysqlDataSource.setPassword(password);
|
return mysqlDataSource;
|
}
|
|
private void insertData(DataSource dataSource) {
|
try (Connection connection = dataSource.getConnection();
|
PreparedStatement preparedStatement = connection
|
.prepareStatement(INSERT_STATEMENT)) {
|
|
connection.setAutoCommit(false);
|
for (int i = 0; i < 1000; i++) {
|
preparedStatement.setLong(1, System.currentTimeMillis());
|
preparedStatement.addBatch();
|
}
|
preparedStatement.executeBatch();
|
|
} catch (SQLException e) {
|
e.printStackTrace();
|
}
|
}
|
|
private class InsertRunnable implements Runnable {
|
|
private final DataSource dataSource;
|
|
private InsertRunnable(DataSource dataSource) {
|
this.dataSource = dataSource;
|
}
|
|
@Override
|
public void run() {
|
for (int i = 0; i < 1000; i++) {
|
insertData(dataSource);
|
}
|
|
countDownLatch.countDown();
|
}
|
}
|
}
|
Reproducible on current 5.5 and 10.0 trees.
On debug versions, the test case causes the assertion failure:
5.5/sql/handler.cc:2828: virtual void handler::get_auto_increment(ulonglong, ulonglong, ulonglong, ulonglong*, ulonglong*): Assertion `0' failed.
140822 1:02:19 [ERROR] mysqld got signal 6 ;
#6 0x00007fd2448d46f1 in *__GI___assert_fail (assertion=0xe3553d "0", file=<optimized out>, line=2828, function=0xe38480 "virtual void handler::get_auto_increment(ulonglong, ulonglong, ulonglong, ulonglong*, ulonglong*)") at assert.c:81
#7 0x00000000007e8819 in handler::get_auto_increment (this=0x7fd22605c078, offset=1, increment=1, nb_desired_values=1, first_value=0x7fd2461b7878, nb_reserved_values=0x7fd2461b7880) at 5.5/sql/handler.cc:2828
#8 0x00007fd21d013d8e in ha_tokudb::get_auto_increment (this=0x7fd22605c078, offset=1, increment=1, nb_desired_values=1, first_value=0x7fd2461b7878, nb_reserved_values=0x7fd2461b7880) at 5.5/storage/tokudb/ha_tokudb.cc:7365
#9 0x0000000000cb0e36 in ha_partition::get_auto_increment (this=0x7fd226093678, offset=1, increment=1, nb_desired_values=1000, first_value=0x7fd2461b78e8, nb_reserved_values=0x7fd2461b78e0) at 5.5/sql/ha_partition.cc:7863
#10 0x00000000007e8259 in handler::update_auto_increment (this=0x7fd226093678) at 5.5/sql/handler.cc:2641
#11 0x0000000000ca8bb4 in ha_partition::write_row (this=0x7fd226093678, buf=0x7fd2309bd988 "\377") at 5.5/sql/ha_partition.cc:3543
#12 0x00000000007ed30d in handler::ha_write_row (this=0x7fd226093678, buf=0x7fd2309bd988 "\377") at 5.5/sql/handler.cc:5210
#13 0x00000000006175e7 in write_record (thd=0x7fd230a2a060, table=0x7fd2260db860, info=0x7fd2461b7bb0) at 5.5/sql/sql_insert.cc:1843
#14 0x00000000006152d1 in mysql_insert (thd=0x7fd230a2a060, table_list=0x7fd2260520d8, fields=..., values_list=..., update_fields=..., update_values=..., duplic=DUP_ERROR, ignore=false) at 5.5/sql/sql_insert.cc:986
#15 0x000000000063370c in mysql_execute_command (thd=0x7fd230a2a060) at 5.5/sql/sql_parse.cc:2973
#16 0x000000000063b0d2 in mysql_parse (thd=0x7fd230a2a060, rawbuf=0x7fd2260aa078 "INSERT INTO test.auto_inc_test (time) values (1408654935118),(1408654935119),(1408654935119),(1408654935119),(1408654935119),(1408654935119),(1408654935119),(1408654935119),(1408654935119),(1408654935"..., length=16044, parser_state=0x7fd2461b8680) at 5.5/sql/sql_parse.cc:5799
#17 0x000000000062f11d in dispatch_command (command=COM_QUERY, thd=0x7fd230a2a060, packet=0x7fd230a2f061 "INSERT INTO test.auto_inc_test (time) values (1408654935118),(1408654935119),(1408654935119),(1408654935119),(1408654935119),(1408654935119),(1408654935119),(1408654935119),(1408654935119),(1408654935"..., packet_length=16044) at 5.5/sql/sql_parse.cc:1079
#18 0x000000000062e2a9 in do_command (thd=0x7fd230a2a060) at 5.5/sql/sql_parse.cc:793
#19 0x00000000007300aa in do_handle_one_connection (thd_arg=0x7fd230a2a060) at 5.5/sql/sql_connect.cc:1266
#20 0x000000000072fb69 in handle_one_connection (arg=0x7fd230a2a060) at 5.5/sql/sql_connect.cc:1181
#21 0x00007fd245e35b50 in start_thread (arg=<optimized out>) at pthread_create.c:304
#22 0x00007fd24498520d in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:112
Slightly tweaked Java class (imports added, connection parameters changed to MTR-like). Apparently, Java 7 is required for it to work.
}
multipleClientsInsertingDataIntoPartitionedTokudbTable.start();
}
DataSource dataSource = createDataSource();
countDownLatch.await();
}
mysqlDataSource.setURL(jdbcUrl);
mysqlDataSource.setUser(username);
mysqlDataSource.setPassword(password);
}
PreparedStatement preparedStatement = connection
.prepareStatement(INSERT_STATEMENT)) {
preparedStatement.addBatch();
}
preparedStatement.executeBatch();
e.printStackTrace();
}
}
}
insertData(dataSource);
}
countDownLatch.countDown();
}
}
}
Also slightly tweaked version of SQL (table name fixed, COMPRESSION clause removed):
Couldn't reproduce on the Tokutek MariaDB 5.5.38 build.