Getting 100 000 (30 000) records is quite fast (assuming you have an index on *_date) in MySQL.
What's slow there is sorting data based on mix table (sorting 130 000 records on the fly).
The ideal solution would probably be merging tables into one like this:
CREATE TYPE logs (
`id` UNSIGNED INT AUTO_INCREMENT,
`label` VARCHAR(255),
`date` DATETIME,
`type` ENUM('normal', 'error'),
PRIMARY KEY (`id),
INDEX (`date`),
INDEX (`type`, `date`)
)
This way you could take an advantage of MySQL indexes which are pretty swift.
Another solution is to create relation table which would look like this:
CREATE TABLE log_dates (
`id` UNSIGNED INT AUTO_INCREMENT,
`date` DATETIME,
`log_id` INT NULL, -- points to logs table (column id)
`error_id` INT NULL, -- points to errors table
PRIMARY KEY (`id`),
INDEX (`date`),
UNIQUE KEY (`log_id`),
UNIQUE KEY (`error_id`)
)
Record would look like:
(NULL, NOW(), $result_from_insert_log, NULL)
(NULL, NOW(), NULL, $result_from_insert_error)
And than write sick join which would select all records from log_dates and pairing them with errors/logs. But I wouldn't go this way.
You also may try using VIEWs but according to some stack answers and few blog posts [1],[2] they don't bring any performance increase:
In review, I like views for their convenient encapsulation of SQL
logic that would usually have to be repeated in SQL statements
throughout the application otherwise. The convenience sometimes comes
with high cost though, particularly when the TEMPTABLE algorithm is
used.
The last thing I cant think of is some sort of "aggregation" table, which would cache all logs, will be refreshed in background (let's say once in 24 hours, or after certain events), which is fine when you don't need most up to day results (use table locking):
CREATE TABLE `logs_aggregate` (
`id` UNSIGNED INT NOT NULL AUTO_INCREMENT,
`message` VARCHAR(255),
`type` ENUM('normal', 'error') DEFAULT 'normal',
`date` DATETIME,
PRIMARY KEY (`id`),
INDEX (`date`)
);
And manual table rehashing:
-- Prevent data change during the progress
LOCK TABLES logs READ,
errors_log READ,
logs_aggregate WRITE;
-- Empty aggregated data
TRUNCATE TABLE logs_aggregate;
-- Insert errors
INSERT INTO logs_aggregate (id, message, type, date) VALUES (
SELECT NULL, error, 'error', create_date
FROM errors_log
);
-- Insert normal logs
INSERT INTO logs_aggregate (id, message, type, date) VALUES (
SELECT NULL, log_label, 'normal', log_date
FROM logs
);
-- Allow writing again
UNLOCK TABLES;
And make sure that you aren't using model that fetches all records into the memory (for example in php construction ToArray()), rather process records sequentially.