Details
-
Bug
-
Status: Open (View Workflow)
-
Major
-
Resolution: Unresolved
-
10.2(EOL), 10.3(EOL), 10.4(EOL)
-
None
Description
rocksdb.drop_table2 takes nearly a minute to run. On a debug build:
rocksdb.drop_table2 'write_committed' [ pass ] 90926
|
rocksdb.drop_table2 'write_prepared' [ pass ] 92987
|
Does it really spend 1.5 minutes doing something useful?
It includes drop_table_repopulate_table.inc which does line-by-line INSERTs. Switching to sequence engine helps a bit:
rocksdb.drop_table2 'write_committed' [ pass ] 76029
rocksdb.drop_table2 'write_prepared' [ pass ] 76382
but not much