View Issue Details

IDProjectCategoryView StatusLast Update
3185Composrcns_forumpublic2021-04-06 01:30
ReporterChris Graham Assigned ToGuest  
PrioritynormalSeverityfeature 
Status newResolutionopen 
Summary3185: Pagination indexing table specifically for forum topics
DescriptionAdd a new table, f_topicview_pagination, with these fields:
 - topic_id
 - per_page
 - pagination_number
 - timestamp_from
 - timestamp_to
 - id_from
 - id_to

This would help with performance on large topics for these cases:
1) calculating what the last page is when jumping to the most recent post
2) calculating the appropriate page when jumping to a specific post in a topic
3) moving around in pagination to any arbitrary jump page

The problem is that MySQL uses a b-tree index, so while we of course index posts in a topic by timestamp, we can't jump to a position along that index without it having to traverse the b-tree. This is a common problem. It only really manifests when you have 1000s of posts in a topic.

We will have to write code to maintain this whenever posts are validated or deleted. Inline-personal-posts would show additional to the posts within the range (i.e. if you had an inline personal post then you might see 21 on a screen rather than 20). This is necessary to stop us having to have a separate index structure for each member.

We will need to limit the "per page" selectors to multiples of the default per page, and then we can cleverly merge in ranges from multiple pages.

We will need to be able to dynamically rebuild the table if it gets flushed out.

Also for pagination in a forumview (less important, could perhaps be put into a separate issue):

Add a new table, f_forumview_pagination, with these fields:
 - forum_id
 - per_page
 - pagination_number
 - timestamp_from
 - timestamp_to
 - id_from
 - id_to

Maintenance of this table will be a bit tricker, as it needs adjusting each time a topic is added (unlike for a topicview, latest displays first). We should be able to do some kind of roll-along.
TagsType: Performance
Attach Tags
Time estimation (hours)20
Sponsorship open

Sponsor

Date Added Member Amount Sponsored

Relationships

related to 1854 Not AssignedGuest Support keyset pagination 
related to 3958 Not AssignedGuest Opportunistic scheduler 

Activities

Chris Graham

2019-11-18 23:29

administrator   ~6161

Last edited: 2019-11-24 21:17

We may be able to implement this by wrapping the database layer.
If it can find a pagination index record covering a pagination, it would fall back to regular use of offsets. This is important, as we can't immediately rebuild the index every time a post is added/deleted - we can do it in the background using a Cron hook (which depends on 3958).

It's also important to consider different sort orders and filters that may be active. There may need to be more fields and more indexes for the index table.

We should also try and cache counts for particular paginations.

Add Note

View Status
Note
Upload Files
Maximum size: 32,768 KiB

Attach files by dragging & dropping, selecting or pasting them.
You are not logged in You are not logged in. This means you will not get any e-mail notifications. And if you reply, we will not know for sure you are the original poster of the issue.

Issue History

Date Modified Username Field Change
2017-04-05 12:03 Chris Graham New Issue
2017-04-05 12:04 Chris Graham Tag Attached: Type: Performance
2017-04-05 12:04 Chris Graham Relationship added related to 1854
2017-07-05 00:09 Chris Graham Tag Attached: ocProducts client-work (likely)
2019-11-18 23:25 Chris Graham Summary Pagination indexing table (performance) => Pagination indexing table
2019-11-18 23:29 Chris Graham Note Added: 0006161
2019-11-19 01:16 Chris Graham Relationship added related to 3958
2019-11-19 01:16 Chris Graham Note Edited: 0006161
2019-11-24 21:17 Chris Graham Summary Pagination indexing table => Pagination indexing table specifically for forum topics
2019-11-24 21:17 Chris Graham Note Edited: 0006161
2021-04-06 01:30 Chris Graham Tag Detached: ocProducts client-work (likely)