[MAGNOLIA-6742] not all content sub nodes are being aggregated into page document Created: 05/Aug/16  Updated: 19/May/22  Resolved: 19/May/22

Status: Closed
Project: Magnolia
Component/s: None
Affects Version/s: 5.4.8
Fix Version/s: None

Type: Bug Priority: Neutral
Reporter: Richard Gange Assignee: Unassigned
Resolution: Won't Do Votes: 0
Labels: jackrabbit
Remaining Estimate: Not Specified
Time Spent: Not Specified
Original Estimate: Not Specified

Template:
Acceptance criteria:
Empty
Task DoD:
[ ]* Doc/release notes changes? Comment present?
[ ]* Downstream builds green?
[ ]* Solution information and context easily available?
[ ]* Tests
[ ]* FixVersion filled and not yet released
[ ]  Architecture Decision Record (ADR)
Bug DoR:
[ ]* Steps to reproduce, expected, and actual results filled
[ ]* Affected version filled
Date of First Response:

 Description   

Some content is not being aggregated into the page document because the node type that it is stored on is mgnl:contentNode, or mgnl:resource, or prehaps even some other type. This happens since only mgnl:component and mgnl:area are being aggregated. See https://wiki.magnolia-cms.com/display/WIKI/Search+Index+Configuration+File.



 Comments   
Comment by Richard Gange [ 08/Aug/16 ]

It appears we need to change this:

<aggregate primaryType="mgnl:area" recursive="true">
    <include primaryType="mgnl:component">*</include>
    <include primaryType="mgnl:area">*</include>
</aggregate>
 
<!-- components can contain areas with components -->
<aggregate primaryType="mgnl:component" recursive="true">
    <include primaryType="mgnl:area">*</include>
    <include primaryType="mgnl:component">*</include>
</aggregate>

to this:

<aggregate primaryType="mgnl:area" recursive="true">
    <include primaryType="mgnl:component">*</include>
    <include primaryType="mgnl:area">*</include>
    <include primaryType="mgnl:contentNode">*</include>
    <include primaryType="mgnl:resource">*</include>
</aggregate>
 
<!-- components can contain areas with components -->
<aggregate primaryType="mgnl:component" recursive="true">
    <include primaryType="mgnl:area">*</include>
    <include primaryType="mgnl:component">*</include>
    <include primaryType="mgnl:contentNode">*</include>
    <include primaryType="mgnl:resource">*</include>
</aggregate>
Comment by Roman Kovařík [ 19/May/22 ]

Hello,

This ticket is now marked as closed due to one of the following reasons:

  • A long period of inactivity
  • Uses an old or Beta version of an application, module, or framework that we no longer support
  • The issue is no longer reproducible or has been fixed in later versions

If you are still facing a problem or consider this issue still relevant, please feel free to re-open the ticket and we will reach out to you.

Thank you,
The Magnolia Team

Generated at Mon Feb 12 04:17:25 CET 2024 using Jira 9.4.2#940002-sha1:46d1a51de284217efdcb32434eab47a99af2938b.