MySQLOnRocksDB/mysql-5.6
forked from facebook/mysql-5.6

Loading…
Populate table index -> column family mappings at start-up #27
Closed
jonahcohen opened this Issue
· 2 comments
Collaborator
jonahcohen
commented
Collaborator
jonahcohen
commented
I think I can take this myself.
Collaborator
jonahcohen
commented
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently the RocksDB-SE data dict is populated at startup with table -> index mappings, but those indices don't have mappings to their associated column families. The get_cf call returns null.
This relies on MySQL to open the table at some point in order to fill in the column families. For fast drop table, we need access to these column families even if the table hasn't been opened already.