Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SQL query audit + add database indexes #127

Closed
tobyzerner opened this issue Jun 20, 2015 · 9 comments
Closed

SQL query audit + add database indexes #127

tobyzerner opened this issue Jun 20, 2015 · 9 comments
Assignees
Milestone

Comments

@tobyzerner
Copy link
Contributor

Lots of low-hanging fruit to improve performance and efficiency. Basically we just need to set up a query log, do every action possible on the forum, and then inspect each query individually and optimize where it's not too hard.

Also add SQL indexes (we don't have any currently apart from primary keys).

There are some more interesting cases too, like:

  • Flarum\Forum\Actions\IndexAction line 58: we send an API request to get the current user, but we already have the user data; we just want it formatted in an API response. We could technically call a serializer directly, but then we don't quite get all of the response features (like sideloaded data), and also Forum would depend on Api. I don't think we can optimize this case.
  • Flarum\Core\Repositories\EloquentPostRepository (see big comment at top of file)
@tobyzerner tobyzerner added this to the 1.0 Beta 1 milestone Jun 25, 2015
@tobyzerner tobyzerner changed the title Audit SQL queries SQL query audit + add database indexes Aug 27, 2015
@tobyzerner
Copy link
Contributor Author

No SQL query optimization has been done on Flarum yet, so there is probably quite a bit of room for performance gains here.

What needs to be done:

  • Create a "Debug" extension which attaches the page load time and a list of queries that were run to each API response (under the "meta" key).
  • Generate a large dataset (hundreds of thousands of discussions/posts) to test with.
  • Analyse the queries that are run on requests to each API endpoint and work out ways to reduce/optimize them – especially making sure there are no n+1 situations.
  • Add database indexes where appropriate.

@tobyzerner tobyzerner removed this from the 1.0 Beta 1 milestone Aug 27, 2015
@tobyzerner tobyzerner mentioned this issue Aug 28, 2015
53 tasks
@michaelmior
Copy link

I'm going to suggest https://github.com/maximebf/php-debugbar for this purpose as it's easy to use and can quickly collect a lot of helpful data.

@tobyzerner
Copy link
Contributor Author

Thanks, will check that out.

@younes0
Copy link

younes0 commented Sep 16, 2015

if it can help: Laravel's package of maximebf/debugbar: https://github.com/barryvdh/laravel-debugbar

@franzliedke franzliedke modified the milestone: 0.1.0 Apr 7, 2016
@believer-ufa
Copy link

Hello! You can use Mysql profiling builted functions, for example.

@BartVB
Copy link
Sponsor

BartVB commented Jun 14, 2016

I would like to suggest another course of action. Analysing queries is fun stuff, but this mostly results in theoretical optimisation strategies. If you really want to improve performance it makes more sense to test with a database with thousands of users and millions of posts. This will make it much (much) easier to spot bottlenecks and you'll spot actual problems instead of indices which are missing only in theory.

Creating this database can be done with a fixtures script or by converting an existing large forum. Advantage of fixtures is that this is trivial to share with other developers and it's easier to adapt to the specs of your development environment. The main advantage of converting an existing forum is that this results in a very realistic database.

@franzliedke
Copy link
Contributor

@BartVB Good thinking - we can integrate this when we finally get to building the migration tool.

Still, there are some places where indices are clearly needed for basic filtering tasks, if I'm not mistaken...

@tobyzerner tobyzerner removed this from the 0.1.0 milestone Jul 22, 2017
@ganuonglachanh
Copy link

  1. As mentioned in the post : Slow mysql queries. The query:
    select `id` from `posts` where `type` in ('comment', 'discussionRenamed', 'discussionLocked', 'discussionStickied', 'discussionTagged') and `user_id` = '1' and `type` = 'comment' order by `time` desc limit 20 offset 0;
    need to optimize by index the colum posts.user_id
  2. In my forum, the post id 1 had been mentioned 33789 times. So this query will take 1-3 minutes to run.
    Flarum beta 0.7 will load all posts that mentioned this post to display. This should be limit by 200 or less.
    This should be fixed in
    https://github.com/flarum/flarum-ext-mentions/blob/master/src/Listener/AddPostMentionedByRelationship.php line 153

@tobyzerner tobyzerner added this to the v0.1.0-beta.8 milestone Sep 1, 2017
@tobyzerner tobyzerner self-assigned this Dec 19, 2017
@luceos luceos added Database and removed Backend labels Dec 19, 2017
@tobyzerner
Copy link
Contributor Author

@luceos List of database indexes to be added (probably in a separate PR from #1344, that one's already big enough) (sorry, have used the old column names):

core

users

  • join_time (sort user list)
  • last_seen_time (sort user list)
  • discussions_count (sort user list)
  • comments_count (sort user list)

discussions

  • last_time (sort discussion list)
  • last_user_id (filter discussion list)
  • start_time (sort discussion list)
  • start_user_id (filter discussion list)
  • comments_count (sort discussion list)
  • participants_count (sort discussion list)
  • hide_time (filter discussion list)

access_tokens

  • user_id (look up all of a user's tokens)

auth_tokens

  • created_at (garbage collection)

email_tokens

  • created_at (garbage collection)

notifications

  • user_id (look up + sort a user's notification list)

password_tokens

  • created_at (garbage collection)

posts

  • discussion_id + number (look up a post at a particular position within a discussion)
  • discussion_id + time (look up + sort a discussion's posts)
  • user_id + time (look up + sort a user's posts)

flarum-ext-lock

  • discussions: is_locked (filter discussion list)

flarum-ext-sticky

  • discussions: is_sticky + last_time (sort discussion list)

flarum-ext-flags

  • flags: post_id (retrieve flags for specific posts)
  • flags: time (sort global flag list)

@luceos luceos self-assigned this Mar 5, 2018
@tobyzerner tobyzerner mentioned this issue Apr 24, 2018
11 tasks
tobyzerner added a commit that referenced this issue Sep 15, 2018
tobyzerner added a commit to flarum/flags that referenced this issue Sep 15, 2018
tobyzerner added a commit to flarum/lock that referenced this issue Sep 15, 2018
@tobyzerner tobyzerner mentioned this issue Sep 22, 2018
1 task
tobyzerner added a commit to flarum/lock that referenced this issue Sep 23, 2018
tobyzerner added a commit to flarum/flags that referenced this issue Sep 23, 2018
tobyzerner added a commit to flarum/sticky that referenced this issue Sep 23, 2018
franzliedke pushed a commit to flarum/lock that referenced this issue Sep 24, 2018
franzliedke pushed a commit to flarum/flags that referenced this issue Sep 24, 2018
franzliedke pushed a commit to flarum/sticky that referenced this issue Sep 24, 2018
askvortsov1 pushed a commit to flarum/flags that referenced this issue Mar 11, 2022
askvortsov1 pushed a commit to flarum/lock that referenced this issue Mar 11, 2022
askvortsov1 pushed a commit to flarum/sticky that referenced this issue Mar 11, 2022
askvortsov1 pushed a commit to flarum/flags that referenced this issue May 10, 2022
askvortsov1 pushed a commit to flarum/lock that referenced this issue May 10, 2022
askvortsov1 pushed a commit to flarum/sticky that referenced this issue May 10, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

8 participants