getkirby / kirby

Kirby's core application folder
https://getkirby.com
Other
1.32k stars 168 forks source link

Page tables load very slow in 4.2 #6404

Closed timkinali closed 3 months ago

timkinali commented 7 months ago

Description

After updating to 4.2, some page sections with layout: table load extremely slow. 100 pages ~10 seconds, 30 pages ~6 seconds. The issue goes away when changing layout to list, cardlets or cards. Confirmed by other users too.

In the forum it was suggested by @rasteiner that the toggle field preview fix in this commit https://github.com/getkirby/kirby/commit/75eb89cc27d35c0cd0da06680077462119bd2e88 can be the cause: "It seems to introduce a new instantiation (new Form($model)) which is run for every row in the table."

Your setup

Kirby Version
Kirby 4.2

Additional context
More details in the forum post https://forum.getkirby.com/t/page-sections-load-slow-kirby-4-2-issue/31373/3

tobimori commented 7 months ago

interesting! noticed the same with dreamform submissions since they use the table layout.

distantnative commented 7 months ago

Tricky one... Indeed before 4.2 the rows weren't processed by the Form class. But that produced wrong values, no defaults etc. – we'll have to see if/how we can make it more performant while using the Form class.

rasteiner commented 7 months ago

PS: I haven't like bisected it or anything, mine was just guess by looking at what changed with table layouts between 4.1 and 4.2. Maybe the problem's somewhere else.

Anyway if it really were the new Form($model)... 10s/100items = 0.1s/item That's more than expected for a simple "new Form" (even if that triggers loading the blueprint), so I guess there is some O(n²) recursion going on somewhere.

distantnative commented 7 months ago

I haven't looked closer at it either yet. But I'd also think this is the main think that changed regarding table values.

rasteiner commented 6 months ago

Looked at this again, but it's actually not so easy to reproduce (like: I personally didn't get it to reproduce).

I've created a test setup with the worst things I could imagine, but a pages section with layout: table and limit: 100 still loads in ~70ms on my rather slow test server (php 8.2 in debian docker image on ubuntu) and 4.2.0.

here's the blueprints I've used: Parent:

title: Test many children
sections:
  pages:
    layout: table
    limit: 100
    columns:
      title: true
      toggle: true

Child:

title: Child

sections:
  files:
    type: files
    layout: cards
  pages:
    type: pages
    layout: table
    parent: page.parent
    limit: 100
  fields:
    type: fields
    fields:
      toggle:
        label: Checkbox
        type: toggle
      info:
        text: the website has {{ site.index.count() }} pages

Could you share the blueprints of the parent and child pages? Maybe also some information on the server where this problem shows?

gbdesign2023 commented 6 months ago

Could you share the blueprints of the parent and child pages?

In my case, ALL children and grandchildren are read out. Of course, I cannot post any blueprints of this. I have posted the blueprint with the table in the forum: https://forum.getkirby.com/t/page-sections-load-slow-kirby-4-2-issue/31373/10

It feels like the display takes twice as long on the iPhone as on the desktop PC.

georgobermayrsaf commented 6 months ago

+1 form my side. Have the same issue with pages tables sections. Its not related the the columns I display. The load is way slower in table layout than in one of the other layouts. In my current setups loads take more than 30s for such a section, vs 70ms for a non-table section.

rasteiner commented 6 months ago

+1 form my side. Have the same issue with pages tables sections. Its not related the the columns I display. The load is way slower in table layout than in one of the other layouts. In my current setups loads take more than 30s for such a section, vs 70ms for a non-table section.

could you share the blueprints of both the pages section as well as the page blueprint of the pages being displayed in it?

timkinali commented 6 months ago

Here's a video... You can see tables loading slow while lists and cards load fast. The table pagination is also slow. https://www.dropbox.com/scl/fi/lkrtspfguygmiv6ytv9jh/Sk-rminspelning-2024-05-08-kl.-13.30.00.mov?rlkey=k6grulvztglaj9qyuqg2u0b83&st=25dkctjh&dl=0

I also disabled all plugins with no change.

distantnative commented 6 months ago

@timkinali Could you please still share your blueprints? That would help reproducing and finding the issue (and hopefully a solution).

georgobermayrsaf commented 6 months ago

could you share the blueprints of both the pages section as well as the page blueprint of the pages being displayed in it?

The section blueprint is rather simple:

label: Subpages
type: pages
templates:
  - storytelling
  - product
  - website.academy.entrypoint
  - website.events.entrypoint
  - website.journal.entrypoint
  - website.jobs.entrypoint
  - website.news.entrypoint
  - website.pressreleases.entrypoint
  - website.webinars.entrypoint
  - loginarea.entrypoint
  - search.results
layout: table
search: true
columns:
  template:
    label: Template
    value: '{{ page.intendedTemplate }}'
    type: tags
  path:
    label: Path
    value: '{{ page.websiteId }}'
  lastUpdate:
    label: Last Update
    value: '{{ page.modified("d/m/Y H:i") }}'
query: page.index(true)
sortBy: title asc
image:
  query: page.teaser.image.toFile
  ratio: 1/1
  cover: true

But the issue is the same with just:

label: Subpages
type: pages
layout: table

I'm afraid I can't share the page blueprint. The setup is too complex with too many extended fields, block field sets and so on. There are all kinds of field types in the blueprint.

Akasiel commented 6 months ago

I have the same issue. On my local machine it takes 1.6m to load a page table section and in a test environment 51.92s.

distantnative commented 6 months ago

@Akasiel Any chance you can share the full blueprints?

georgobermayrsaf commented 6 months ago

I did a bit more digging today. I still can't provide a blueprint, but it seems the main performance issue are blocks fields with custom block types. In my setup I have a lot of them, some of the custom block types even have nested blocks with again custom block types in it. Once I remove the blocks field from the blueprint loading is very fast as in older versions. But if I add one custom block type after another loading gradually gets worse.

georgobermayrsaf commented 6 months ago

BTW: The move pages dialog seems to have similar issues. Loading of a subpage tree with a lot of subpages (lets say 100) takes very long. From what I gathered in the code, here also the blueprint is completely evaluated. I was also able to pin it down to blocks fields in the blueprint that cause these performance issues.

afbora commented 5 months ago

I had an idea. Let me explain with an example:

Imagine there are 1000 note pages under the notes page. When loading the section, the Form class is re-instantiated for each note page. Within this class the page blueprint (note.yml) is loaded. This is done for all 1000 pages. The main reason it is slow in my opinion is that it loads the blueprint 1000 times. If we cache the page blueprint somewhere (in static variable or something like that), only 1 blueprint will be loaded for 1000 pages. This means a very serious performance increase.

What do you think? @getkirby/backend

timkinali commented 5 months ago

@timkinali Could you please still share your blueprints? That would help reproducing and finding the issue (and hopefully a solution).

@distantnative Sorry for not replying. Like others my blueprints are a bit complex with extends and so forth. I'm happy to share my whole blueprint folder -- or even the entire site -- but not publically. I can however send it to you (or someone else in the Kirby team). Let me know how to go about it!

distantnative commented 5 months ago

@timkinali if you could send them to support@getkirby.com that would be appreciated. Thanks!

georgobermayrsaf commented 4 months ago

Is there any news on this one? I just checked with Kirby 4.3, but the issue remains the issue. This is basically blocking some of our projects from updating Kirby.

distantnative commented 4 months ago

@georgobermayrsaf and others:

Could someone please try if this gets resolved for you by:

  1. Commenting out this line https://github.com/getkirby/kirby/blob/main/config/sections/mixins/layout.php#L137
  2. Changing this part https://github.com/getkirby/kirby/blob/main/config/sections/mixins/layout.php#L143-L148 to
default => $item[$columnName] ?? $model->content()->get($column['id'] ?? $columnName)->value()

This will likely bring back https://github.com/getkirby/kirby/issues/6249 for now as the current implementation is the proper fix for that. But with the way our blueprint classes greedily resolve everything, it's likely what caused the big performance impact for you. So if this original issue does not affect your setup, dialing it back would be helpful for you.

If we can confirm that this creates relieve for the performance issue, we will likely add a (temporary) blueprint option that disables the proper value fix in favor of keeping the performance for those heavy sites in check.

gbdesign2023 commented 4 months ago

@distantnative I have also noticed this behaviour: On site.yml I have a tab with a list of all pages: site.index(true).sortBy('modified', 'desc') In my case, there are about 150 pages. 50 pages are displayed in the pagination. If I want to delete an image on a children page, for example, it takes several seconds until the drop-down menu is displayed, although the page has no direct connection to site.yml. If I change the display from table to lists when listing all pages, the speed is as fast as usual. Conclusion: layout: table on site.yml also reduces the speed of children pages.

distantnative commented 3 months ago

@gbdesign2023 I don't really know how to understand your response. Did you try out the fix I proposed and does it improve your pages sections with table layout?

georgobermayr commented 3 months ago

@georgobermayrsaf and others:

Could someone please try if this gets resolved for you by:

  1. Commenting out this line https://github.com/getkirby/kirby/blob/main/config/sections/mixins/layout.php#L137
  2. Changing this part https://github.com/getkirby/kirby/blob/main/config/sections/mixins/layout.php#L143-L148 to
default => $item[$columnName] ?? $model->content()->get($column['id'] ?? $columnName)->value()

This will likely bring back #6249 for now as the current implementation is the proper fix for that. But with the way our blueprint classes greedily resolve everything, it's likely what caused the big performance impact for you. So if this original issue does not affect your setup, dialing it back would be helpful for you.

If we can confirm that this creates relieve for the performance issue, we will likely add a (temporary) blueprint option that disables the proper value fix in favor of keeping the performance for those heavy sites in check.

Thank you @distantnative! Yes, I can confirm the impact of the change. I tested with the loading of a complex pages section:

distantnative commented 3 months ago

@georgobermayr we will add it as a blueprint option to 4.4 that reverts it to the old buggy but performant behavior. It's not ideal but a perfect solution involves huge refactorings and won't be ready that soon. So we will take a pragmatic approach here, so everyone can choose the lesser evil for their specific project (which I think will allow a large number of projects run problem-free).

timkinali commented 3 months ago

Yep! I can also confirm this fixed the issue @distantnative! (Kirby 4.2). Thank you.

Would you mind detailing a bit on what to look out for bringing back #6249, not sure I understand from the issue description. Is it only toggle field previews or does it affect other field previews?

distantnative commented 3 months ago

Of course. We have the following dilemma:

Both have their downside. The ideal solution is to refactor our blueprint classes and make them more lazy and performant. This is needed and import but unfortunately also nothing we will solve in the next months easily (also because we're currently working on another hard but important refactoring).

Left with this unfortunate situation, I have been thinking that there are two ways to ease the situation:

timkinali commented 3 months ago

Ah makes sense, it resolves the full blueprint and not only the columns that are actually defined for the table. I see how this have an impact for some of my sections.

For me your suggested intermediary solution is a good compromise. 👍

distantnative commented 3 months ago

We have added the rawvalues: true option for v4.4.

Closing this in favor of the clean summary issue which we will keep around until fully fixing the performance issue: https://github.com/getkirby/kirby/issues/6594