I want to design a fast database schema which can handle sorting and filtering columns as good as updating the entries.
For this I created the following scenario:
- An event has exactly one name, status, last-subscription-date, description and one location
- The number of available seats for an event is saved along with the event and will be updated every time an participant subcribes
- every event has exactly one category
- the events can only be listed by categories
- the events can be filtered by name, status or date (no xor)
- the events can be sorted by name, status or date (xor)
- the tables have to handle more than 10 mio entries
For all tests I used MySQL and InnoDB tables. I also tried to use multiple inserts/updates/deletes as often as possible. Filtering is done by using LIKE '%[word]%'
First I tried to use 2 tables: One for the categories, the other one for the events. Indexes were category-name, category-status-name, category-date-name and category-date-status-name. For this, listing, filtering and sorting was very fast, but inserting, updating or deleting entries was very slow. I also got lock timeouts, because rebuilding the indexes took too much time.
Second try was to have 3 tables: categories, events and locations. But if the location-table contains 6 mio or more entries it gets also slow. I think because of the indexes for fast catches. Adding 100k entries take ~ 272 seconds. The indexes of locations were primary-index id and zip-street
The next try will be to create an own table for the last-subscription-date and the counter. But what about the possibility to filter for this date or to sort this one?
Is it better to have 3 indexes like: category-name, category-date, category-status or is my solution with the 4 indexes category-name, category-status-name, category-date-name and category-date-status-name the better one for MySQL?
I'm also thinking about the field types: Currently I used VARCHAR for the name. But maybe CHAR is the better one, because every entry has the same length and so it's faster to jump to a specific position in the index instead of using variable lenghts. What do you think?
Does someone have some tips how a good and fast database schema have to be designed which supports a scenario as described above?