Lunny Xiao 4a7ab0abf0
Optimize heatmap query (#33853)
When there are over 5M records on `action` table, the heatmap on
dashboard is very slow as below SQL.
```
database duration=1.8881s db.sql="SELECT created_unix DIV 900 * 900 AS timestamp, count(user_id) as contributions FROM `action` WHERE user_id=? AND act_user_id=? AND (created_unix > ?) GROUP BY timestamp ORDER BY timestamp"
```

This PR add a new index for `action` table with columns `user_id`,
`act_user_id` and `created_unix` so that this query will become about 6
times faster than before.
2025-03-20 09:30:45 -07:00
..
2025-02-20 12:39:21 -08:00
2025-03-03 05:36:10 +00:00
2025-03-08 21:47:11 +08:00
2024-06-11 18:47:45 +00:00
2025-03-11 10:40:38 -07:00
2024-12-30 14:35:46 -08:00
2024-12-30 14:35:46 -08:00