<!-- 
RSS generated by JIRA (9.4.2#940002-sha1:46d1a51de284217efdcb32434eab47a99af2938b) at Mon Feb 12 03:33:55 CET 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Magnolia - Issue tracker</title>
    <link>https://jira.magnolia-cms.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-uk</language>    <build-info>
        <version>9.4.2</version>
        <build-number>940002</build-number>
        <build-date>19-01-2023</build-date>
    </build-info>


<item>
            <title>[MAGNOLIA-2152] QueryManager and JCR browser seem to have different view on repository</title>
                <link>https://jira.magnolia-cms.com/browse/MAGNOLIA-2152</link>
                <project id="10000" key="MAGNOLIA">Magnolia</project>
                    <description>&lt;p&gt;We have a very strange issue with querying custom page attributes. We have a custom page dialog that sets some custom page properties. These attributes are ad hoc and not defined in some sort of schema. We then have observation code that queries the JCR for pages with these attributes and certain values. Our queries look like this:&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;&lt;span class=&quot;code-comment&quot;&gt;//element(*, mgnl:content) [@someLongAttribute and @someLongAttribute != 0]&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;SELECT *
FROM mgnl:content
WHERE someLongAttribute IS NOT NULL AND someLongAttribute != 0
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;&lt;span class=&quot;code-comment&quot;&gt;//element(*, mgnl:content) [@someBooleanAttribute and @someBooleanAttribute = &lt;span class=&quot;code-quote&quot;&gt;&apos;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&apos;&lt;/span&gt;]&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;SELECT *
FROM someBooleanAttribute IS NOT NULL AND someBooleanAttribute = &lt;span class=&quot;code-quote&quot;&gt;&apos;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&apos;&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;The behavior we are observing is that for certain pages the check for an attribute value is always false even if it should match according to the JCR browser. However the check for the attribute presence works as expected. As soon as we change a page attribute in the JCR browser the checks for the values work even if changed with the page properties dialog.&lt;/p&gt;

&lt;p&gt;This issue is very rare and we have not yet found a way to reproduce or trigger it.&lt;/p&gt;</description>
                <environment></environment>
        <key id="14424">MAGNOLIA-2152</key>
            <summary>QueryManager and JCR browser seem to have different view on repository</summary>
                <type id="1" iconUrl="https://jira.magnolia-cms.com/secure/viewavatar?size=xsmall&amp;avatarId=10883&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.magnolia-cms.com/images/icons/priorities/major.svg">Major</priority>
                        <status id="6" iconUrl="https://jira.magnolia-cms.com/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are not closed can be reopened.">Closed</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="6">Workaround exists</resolution>
                                        <assignee username="had">Jan Haderka</assignee>
                                    <reporter username="pmm">Philippe Marschall</reporter>
                        <labels>
                    </labels>
                <created>Mon, 26 May 2008 10:47:16 +0200</created>
                <updated>Wed, 23 Jan 2013 09:09:48 +0100</updated>
                            <resolved>Tue, 5 Aug 2008 07:12:23 +0200</resolved>
                                    <version>3.5.8</version>
                                                    <component>core</component>
                        <due></due>
                            <votes>1</votes>
                                    <watches>1</watches>
                                                                                                                <comments>
                            <comment id="17124" author="pmm" created="Tue, 15 Jul 2008 16:41:09 +0200"  >&lt;p&gt;More descriptive title&lt;/p&gt;</comment>
                            <comment id="17125" author="pmm" created="Tue, 15 Jul 2008 16:45:20 +0200"  >&lt;p&gt;Some more information:&lt;/p&gt;

&lt;p&gt;The behaviour we are observing is that the QueryManager sometimes seems to have a different view on the JCR than the JCR browser until &quot;something&quot; happens and they are in synch again.&lt;/p&gt;

&lt;p&gt;To bring them in synch again we have worked out the following procedure:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;export the nodes&lt;/li&gt;
	&lt;li&gt;delete then nodes&lt;/li&gt;
	&lt;li&gt;restart the server&lt;/li&gt;
	&lt;li&gt;import the nodes&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Simply exporting, deleting and then importing did not fix the issue.&lt;/p&gt;

&lt;p&gt;We don&apos;t observe this behavior in the development environment with Derby but on test / production with Oracle.&lt;/p&gt;

&lt;p&gt;We observed this behavior both in the website and data workspace.&lt;/p&gt;</comment>
                            <comment id="17128" author="gjoseph" created="Tue, 15 Jul 2008 18:21:00 +0200"  >&lt;p&gt;It is likely to be related to indexing. Indexing happens (by default) asynchronously - and queries are based on those indexes.&lt;br/&gt;
Could you post some details about your jackrabbit/oracle configuration ?&lt;/p&gt;
</comment>
                            <comment id="17143" author="pmm" created="Wed, 16 Jul 2008 13:34:14 +0200"  >&lt;p&gt;We use Oracle 9 and the bundle persistence manager.&lt;/p&gt;

&lt;h2&gt;&lt;a name=&quot;jackrabbitoraclesearch.xml&quot;&gt;&lt;/a&gt;jackrabbit-oracle-search.xml&lt;/h2&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;&amp;lt;?xml version=&lt;span class=&quot;code-quote&quot;&gt;&quot;1.0&quot;&lt;/span&gt; encoding=&lt;span class=&quot;code-quote&quot;&gt;&quot;UTF-8&quot;&lt;/span&gt;?&amp;gt;
&amp;lt;!DOCTYPE Repository PUBLIC &lt;span class=&quot;code-quote&quot;&gt;&quot;-&lt;span class=&quot;code-comment&quot;&gt;//The Apache Software Foundation//DTD Jackrabbit 1.2//EN&quot;&lt;/span&gt; &lt;span class=&quot;code-quote&quot;&gt;&quot;http://jackrabbit.apache.org/dtd/repository-1.2.dtd&quot;&lt;/span&gt;&amp;gt;
&lt;/span&gt;&amp;lt;Repository&amp;gt;
  &amp;lt;FileSystem class=&lt;span class=&quot;code-quote&quot;&gt;&quot;org.apache.jackrabbit.core.fs.local.LocalFileSystem&quot;&lt;/span&gt;&amp;gt;
    &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;path&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;${rep.home}/repository&quot;&lt;/span&gt; /&amp;gt;
  &amp;lt;/FileSystem&amp;gt;
  &amp;lt;Security appName=&lt;span class=&quot;code-quote&quot;&gt;&quot;Jackrabbit&quot;&lt;/span&gt;&amp;gt;
    &amp;lt;AccessManager class=&lt;span class=&quot;code-quote&quot;&gt;&quot;org.apache.jackrabbit.core.security.SimpleAccessManager&quot;&lt;/span&gt;&amp;gt;&amp;lt;/AccessManager&amp;gt;
    &amp;lt;LoginModule class=&lt;span class=&quot;code-quote&quot;&gt;&quot;org.apache.jackrabbit.core.security.SimpleLoginModule&quot;&lt;/span&gt;&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;anonymousId&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;anonymous&quot;&lt;/span&gt; /&amp;gt;
    &amp;lt;/LoginModule&amp;gt;
  &amp;lt;/Security&amp;gt;
  &amp;lt;Workspaces rootPath=&lt;span class=&quot;code-quote&quot;&gt;&quot;${rep.home}/workspaces&quot;&lt;/span&gt; defaultWorkspace=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;default&lt;/span&gt;&quot;&lt;/span&gt; /&amp;gt;
  &amp;lt;Workspace name=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;default&lt;/span&gt;&quot;&lt;/span&gt;&amp;gt;
    &amp;lt;FileSystem class=&lt;span class=&quot;code-quote&quot;&gt;&quot;org.apache.jackrabbit.core.fs.local.LocalFileSystem&quot;&lt;/span&gt;&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;path&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;${wsp.home}/&lt;span class=&quot;code-keyword&quot;&gt;default&lt;/span&gt;&quot;&lt;/span&gt; /&amp;gt;
    &amp;lt;/FileSystem&amp;gt;
    &amp;lt;PersistenceManager class=&lt;span class=&quot;code-quote&quot;&gt;&quot;org.apache.jackrabbit.core.persistence.bundle.Oracle9PersistenceManager&quot;&lt;/span&gt;&amp;gt;
        &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;driver&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;oracle.jdbc.OracleDriver&quot;&lt;/span&gt;/&amp;gt;
        &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;url&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;jdbc:oracle:thin:@localhost:521:localhost&quot;&lt;/span&gt;/&amp;gt;
        &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;user&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;sysdba&quot;&lt;/span&gt;/&amp;gt;
        &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;password&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;secret&quot;&lt;/span&gt;/&amp;gt;
        &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;schemaObjectPrefix&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;${wsp.name}_&quot;&lt;/span&gt;/&amp;gt;
        &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;externalBLOBs&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;&quot;&lt;/span&gt;/&amp;gt;
    &amp;lt;/PersistenceManager&amp;gt;
    &amp;lt;SearchIndex class=&lt;span class=&quot;code-quote&quot;&gt;&quot;org.apache.jackrabbit.core.query.lucene.SearchIndex&quot;&lt;/span&gt;&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;path&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;${wsp.home}/index&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;useCompoundFile&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;minMergeDocs&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;100&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;volatileIdleTime&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;3&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;maxMergeDocs&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;100000&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;mergeFactor&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;10&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;maxFieldLength&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;10000&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;bufferSize&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;10&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;cacheSize&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;1000&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;forceConsistencyCheck&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;autoRepair&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;analyzer&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;org.apache.lucene.analysis.standard.StandardAnalyzer&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;queryClass&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;org.apache.jackrabbit.core.query.QueryImpl&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;respectDocumentOrder&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;resultFetchSize&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;2147483647&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;extractorPoolSize&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;3&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;extractorTimeout&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;100&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;extractorBackLogSize&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;100&quot;&lt;/span&gt; /&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;textFilterClasses&quot;&lt;/span&gt;
        value=&quot;org.apache.jackrabbit.extractor.MsWordTextExtractor,
               org.apache.jackrabbit.extractor.MsExcelTextExtractor,
               org.apache.jackrabbit.extractor.MsPowerPointTextExtractor,
               org.apache.jackrabbit.extractor.PdfTextExtractor,
               org.apache.jackrabbit.extractor.OpenOfficeTextExtractor,
               org.apache.jackrabbit.extractor.RTFTextExtractor,
               org.apache.jackrabbit.extractor.HTMLTextExtractor,
               org.apache.jackrabbit.extractor.PlainTextExtractor,
               org.apache.jackrabbit.extractor.XMLTextExtractor&quot; /&amp;gt;
    &amp;lt;/SearchIndex&amp;gt;
  &amp;lt;/Workspace&amp;gt;
  &amp;lt;Versioning rootPath=&lt;span class=&quot;code-quote&quot;&gt;&quot;${rep.home}/version&quot;&lt;/span&gt;&amp;gt;
    &amp;lt;FileSystem class=&lt;span class=&quot;code-quote&quot;&gt;&quot;org.apache.jackrabbit.core.fs.local.LocalFileSystem&quot;&lt;/span&gt;&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;path&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;${rep.home}/workspaces/version&quot;&lt;/span&gt; /&amp;gt;
    &amp;lt;/FileSystem&amp;gt;
    &amp;lt;PersistenceManager class=&lt;span class=&quot;code-quote&quot;&gt;&quot;org.apache.jackrabbit.core.persistence.bundle.Oracle9PersistenceManager&quot;&lt;/span&gt;&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;driver&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;oracle.jdbc.OracleDriver&quot;&lt;/span&gt;/&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;url&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;jdbc:oracle:thin:@localhost:1521:localhost&quot;&lt;/span&gt;/&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;user&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;sysdba&quot;&lt;/span&gt;/&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;password&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;secret&quot;&lt;/span&gt;/&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;schemaObjectPrefix&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;version_&quot;&lt;/span&gt;/&amp;gt;
      &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;externalBLOBs&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;false&lt;/span&gt;&quot;&lt;/span&gt;/&amp;gt;
    &amp;lt;/PersistenceManager&amp;gt;
  &amp;lt;/Versioning&amp;gt;
&amp;lt;/Repository&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;h2&gt;&lt;a name=&quot;respository.xml&quot;&gt;&lt;/a&gt;respository.xml&lt;/h2&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;&amp;lt;!DOCTYPE JCR [
&amp;lt;!ELEMENT Map (#PCDATA)&amp;gt;
&amp;lt;!ATTLIST Map
    name CDATA #REQUIRED
    repositoryName CDATA #REQUIRED
    workspaceName CDATA #REQUIRED&amp;gt;
&amp;lt;!ELEMENT JCR (RepositoryMapping|Repository)*&amp;gt;
&amp;lt;!ELEMENT param (#PCDATA)&amp;gt;
&amp;lt;!ATTLIST param
    name CDATA #REQUIRED
    value CDATA #REQUIRED&amp;gt;
&amp;lt;!ELEMENT Repository (param|workspace)*&amp;gt;
&amp;lt;!ATTLIST Repository
    loadOnStartup CDATA #REQUIRED
    name CDATA #REQUIRED
    provider CDATA #REQUIRED&amp;gt;
&amp;lt;!ELEMENT workspace (#PCDATA)&amp;gt;
&amp;lt;!ATTLIST workspace
    name CDATA #REQUIRED&amp;gt;
&amp;lt;!ELEMENT RepositoryMapping (Map)*&amp;gt;
]&amp;gt;&amp;lt;JCR&amp;gt;

    &amp;lt;RepositoryMapping&amp;gt;
        &amp;lt;Map name=&lt;span class=&quot;code-quote&quot;&gt;&quot;website&quot;&lt;/span&gt; repositoryName=&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia&quot;&lt;/span&gt; workspaceName=&lt;span class=&quot;code-quote&quot;&gt;&quot;website&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;Map name=&lt;span class=&quot;code-quote&quot;&gt;&quot;config&quot;&lt;/span&gt; repositoryName=&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia&quot;&lt;/span&gt; workspaceName=&lt;span class=&quot;code-quote&quot;&gt;&quot;config&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;Map name=&lt;span class=&quot;code-quote&quot;&gt;&quot;users&quot;&lt;/span&gt; repositoryName=&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia&quot;&lt;/span&gt; workspaceName=&lt;span class=&quot;code-quote&quot;&gt;&quot;users&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;Map name=&lt;span class=&quot;code-quote&quot;&gt;&quot;userroles&quot;&lt;/span&gt; repositoryName=&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia&quot;&lt;/span&gt; workspaceName=&lt;span class=&quot;code-quote&quot;&gt;&quot;userroles&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;Map name=&lt;span class=&quot;code-quote&quot;&gt;&quot;usergroups&quot;&lt;/span&gt; repositoryName=&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia&quot;&lt;/span&gt; workspaceName=&lt;span class=&quot;code-quote&quot;&gt;&quot;usergroups&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;Map name=&lt;span class=&quot;code-quote&quot;&gt;&quot;mgnlSystem&quot;&lt;/span&gt; repositoryName=&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia&quot;&lt;/span&gt; workspaceName=&lt;span class=&quot;code-quote&quot;&gt;&quot;mgnlSystem&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;Map name=&lt;span class=&quot;code-quote&quot;&gt;&quot;mgnlVersion&quot;&lt;/span&gt; repositoryName=&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia&quot;&lt;/span&gt; workspaceName=&lt;span class=&quot;code-quote&quot;&gt;&quot;mgnlVersion&quot;&lt;/span&gt; /&amp;gt;
        
        &amp;lt;Map name=&lt;span class=&quot;code-quote&quot;&gt;&quot;dms&quot;&lt;/span&gt; repositoryName=&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia&quot;&lt;/span&gt; workspaceName=&lt;span class=&quot;code-quote&quot;&gt;&quot;dms&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;Map name=&lt;span class=&quot;code-quote&quot;&gt;&quot;packages&quot;&lt;/span&gt; repositoryName=&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia&quot;&lt;/span&gt; workspaceName=&lt;span class=&quot;code-quote&quot;&gt;&quot;packages&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;Map name=&lt;span class=&quot;code-quote&quot;&gt;&quot;Store&quot;&lt;/span&gt; repositoryName=&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia&quot;&lt;/span&gt; workspaceName=&lt;span class=&quot;code-quote&quot;&gt;&quot;Store&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;Map name=&lt;span class=&quot;code-quote&quot;&gt;&quot;Expressions&quot;&lt;/span&gt; repositoryName=&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia&quot;&lt;/span&gt; workspaceName=&lt;span class=&quot;code-quote&quot;&gt;&quot;Expressions&quot;&lt;/span&gt; /&amp;gt;
    &amp;lt;/RepositoryMapping&amp;gt;

    &amp;lt;Repository name=&lt;span class=&quot;code-quote&quot;&gt;&quot;magnolia&quot;&lt;/span&gt; provider=&lt;span class=&quot;code-quote&quot;&gt;&quot;info.magnolia.jackrabbit.ProviderImpl&quot;&lt;/span&gt; loadOnStartup=&lt;span class=&quot;code-quote&quot;&gt;&quot;&lt;span class=&quot;code-keyword&quot;&gt;true&lt;/span&gt;&quot;&lt;/span&gt;&amp;gt;
        &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;configFile&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;${magnolia.repositories.jackrabbit.config}&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;repositoryHome&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;${magnolia.repositories.home}/magnolia&quot;&lt;/span&gt; /&amp;gt;

        &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;contextFactoryClass&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;org.apache.jackrabbit.core.jndi.provider.DummyInitialContextFactory&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;providerURL&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;localhost&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;bindName&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;${magnolia.webapp}&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;workspace name=&lt;span class=&quot;code-quote&quot;&gt;&quot;website&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;workspace name=&lt;span class=&quot;code-quote&quot;&gt;&quot;config&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;workspace name=&lt;span class=&quot;code-quote&quot;&gt;&quot;users&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;workspace name=&lt;span class=&quot;code-quote&quot;&gt;&quot;userroles&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;workspace name=&lt;span class=&quot;code-quote&quot;&gt;&quot;usergroups&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;workspace name=&lt;span class=&quot;code-quote&quot;&gt;&quot;mgnlSystem&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;workspace name=&lt;span class=&quot;code-quote&quot;&gt;&quot;mgnlVersion&quot;&lt;/span&gt; /&amp;gt;
        
        &amp;lt;workspace name=&lt;span class=&quot;code-quote&quot;&gt;&quot;dms&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;workspace name=&lt;span class=&quot;code-quote&quot;&gt;&quot;packages&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;workspace name=&lt;span class=&quot;code-quote&quot;&gt;&quot;Store&quot;&lt;/span&gt; /&amp;gt;
        &amp;lt;workspace name=&lt;span class=&quot;code-quote&quot;&gt;&quot;Expressions&quot;&lt;/span&gt; /&amp;gt;
    &amp;lt;/Repository&amp;gt;
&amp;lt;/JCR&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="17146" author="had" created="Wed, 16 Jul 2008 14:22:50 +0200"  >&lt;blockquote&gt;
&lt;p&gt;To bring them in synch again we have worked out the following procedure:&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;export the nodes&lt;/li&gt;
	&lt;li&gt;delete then nodes&lt;/li&gt;
	&lt;li&gt;restart the server&lt;/li&gt;
	&lt;li&gt;import the nodes&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Simply exporting, deleting and then importing did not fix the issue.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Seems to me like something kills the indexer. In your configuration&lt;/p&gt;
&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;&amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;extractorPoolSize&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;3&quot;&lt;/span&gt; /&amp;gt;
&amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;extractorTimeout&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;100&quot;&lt;/span&gt; /&amp;gt;
&amp;lt;param name=&lt;span class=&quot;code-quote&quot;&gt;&quot;extractorBackLogSize&quot;&lt;/span&gt; value=&lt;span class=&quot;code-quote&quot;&gt;&quot;100&quot;&lt;/span&gt; /&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;you are using 3 indexers running on the background asynchronously. If the issue was simple failing to index the data, you should see the exception in the logs. If the indexing slows down it will be cancelled after the timeout (value is in miliseconds).&lt;br/&gt;
You could try two things at this point:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;increase the timeout, so the indexer has more time to index the content. It won&apos;t fix the issue, just decrease probability of it to manifest itself.&lt;/li&gt;
	&lt;li&gt;set pool size to 0 so all the indexing is done on main thread (saving content will be slower, but if there is problem with the content you will see it as a blockage so you can figure out saving which piece of content triggers the behaviour.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;The question is why should indexing slow down permanently (so once it happens document will always timeout before it can be indexed) and why should it get up to speed after restart ... you might be hitting some underlying issue with either JackRabbit or Lucene.&lt;/p&gt;</comment>
                            <comment id="17148" author="had" created="Wed, 16 Jul 2008 14:54:06 +0200"  >&lt;p&gt;Actually if the timeout is the issue setting logging level to &lt;tt&gt;INFO&lt;/tt&gt; for &lt;tt&gt;org.apache.jackrabbit.core.query.lucene.TextExtractorJob&lt;/tt&gt; should make dump messages about timeouts to the log file.&lt;/p&gt;</comment>
                            <comment id="17149" author="pmm" created="Wed, 16 Jul 2008 15:25:19 +0200"  >&lt;p&gt;Or log level for rg.apache.jackrabbit.core.query.lucene.TextExtractorJob was WARN &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.magnolia-cms.com/images/icons/emoticons/sad.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;br/&gt;
I&apos;ll adjust the log level and check the next time we observe the behavior. Thanks for all the prompt help.&lt;/p&gt;</comment>
                            <comment id="17373" author="pmm" created="Mon, 4 Aug 2008 17:56:47 +0200"  >&lt;p&gt;We had a look at our logs and did find the described log entry only when we bootstrapped with samples. It looks at first glance that the timeout happened for a PDF file.&lt;/p&gt;

&lt;p&gt;However we still deployed the configuration change (disable async indexing) first to our test and now our production environment. All the inconsistencies we could previously observe are now gone.&lt;/p&gt;

&lt;p&gt;I don&apos;t know if this has any influence or not but we run inside an OpenVZ virtual machine.&lt;/p&gt;

&lt;p&gt;As far as we are concerned the bug can be closed. If we observe some anomalies again we&apos;ll file a new one.&lt;/p&gt;

&lt;p&gt;Thanks again for all the help.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                            <customfield id="customfield_14166" key="com.okapya.jira.checklist:checklist">
                        <customfieldname>Acceptance criteria</customfieldname>
                        <customfieldvalues>
                            
        <checklist>
        <![CDATA[
                            




                
                                    <div class="o-completion" style="display: flex; flex-shrink: 0;"><span  class="aui-lozenge aui-lozenge-complete" style="font-size: 12px; font-weight: normal; display: flex; flex-direction: row; align-items: center;" ><span style="padding-right: 4px; vertical-align: middle;"><svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" fill="white"><path clip-rule="evenodd" d="m10.41037,3.42544l-7.86501,0c-0.72395,0 -1.31084,0.58688 -1.31084,1.31084l0,7.86508c0,0.7239 0.58689,1.3108 1.31084,1.3108l7.86501,0c0.724,0 1.3109,-0.5869 1.3109,-1.3108l0,-7.86508c0,-0.72396 -0.5869,-1.31084 -1.3109,-1.31084zm-7.86501,-0.65542c-1.08593,0 -1.96626,0.88032 -1.96626,1.96626l0,7.86508c0,1.0859 0.88033,1.9662 1.96626,1.9662l7.86501,0c1.086,0 1.9663,-0.8803 1.9663,-1.9662l0,-7.86508c0,-1.08594 -0.8803,-1.96626 -1.9663,-1.96626l-7.86501,0z" fill-rule="evenodd"/><path d="m5.09049,10.18526l-1.82767,-1.82766l-0.78479,0.78479l2.61246,2.61246l5.38758,-5.38754l-0.78483,-0.78479l-4.60275,4.60274z"/></svg></span><span>Empty</span></span></div>
                        ]]>
    </checklist>


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_14169" key="com.okapya.jira.checklist:checklist">
                        <customfieldname>Bug DoR</customfieldname>
                        <customfieldvalues>
                            
        <checklist>
        <![CDATA[
                            




                
                        
        <div style="margin-bottom: 8px;">
                            <div class="o-completion" style="display: flex; flex-shrink: 0;"><span  class="aui-lozenge" style="font-size: 12px; font-weight: normal; display: flex; flex-direction: row; align-items: center;" ><span style="padding-right: 4px; vertical-align: middle;"><svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" fill="white"><path clip-rule="evenodd" d="m10.41037,3.42544l-7.86501,0c-0.72395,0 -1.31084,0.58688 -1.31084,1.31084l0,7.86508c0,0.7239 0.58689,1.3108 1.31084,1.3108l7.86501,0c0.724,0 1.3109,-0.5869 1.3109,-1.3108l0,-7.86508c0,-0.72396 -0.5869,-1.31084 -1.3109,-1.31084zm-7.86501,-0.65542c-1.08593,0 -1.96626,0.88032 -1.96626,1.96626l0,7.86508c0,1.0859 0.88033,1.9662 1.96626,1.9662l7.86501,0c1.086,0 1.9663,-0.8803 1.9663,-1.9662l0,-7.86508c0,-1.08594 -0.8803,-1.96626 -1.9663,-1.96626l-7.86501,0z" fill-rule="evenodd"/><path d="m5.09049,10.18526l-1.82767,-1.82766l-0.78479,0.78479l2.61246,2.61246l5.38758,-5.38754l-0.78483,-0.78479l-4.60275,4.60274z"/></svg></span><span>0/2</span></span></div>
                    
            <div class="checklist-progress-bar-wrapper" style="">
        <div class="checklist-progress-bar" style="position: relative; width: 100%; background-color: #cccccc; margin-bottom: 2px; margin-top: 5px;">
                        <div class="checklist-progress" style="display: block; float: none; width: 0%; height: 2px; background: #14892c;">
                            </div>
        </div>
    </div>
        </div>
    
                                    <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Steps to reproduce, expected, and actual results filled</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Affected version filled</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                            ]]>
    </checklist>


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10111" key="com.atlassian.jira.toolkit:reporterdomain">
                        <customfieldname>Company</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>netcetera.ch</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_10031" key="com.atlassian.jira.ext.charting:firstresponsedate">
                        <customfieldname>Date of First Response</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>Tue, 15 Jul 2008 18:21:00 +0200</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_12730" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_14151" key="com.atlassian.jira.toolkit:message">
                        <customfieldname>Docu info</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_10061" key="com.atlassian.jira.toolkit:lastusercommented">
                        <customfieldname>Last comm is not jira-dev</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>true</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10071" key="com.atlassian.jira.toolkit:lastupdaterorcommenter">
                        <customfieldname>Last participant</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>mmuehlebach</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_13136" key="com.atlassian.jira.toolkit:LastCommentDate">
                        <customfieldname>Last public comment date</customfieldname>
                        <customfieldvalues>
                            15 years, 29 weeks, 6 days ago
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10020" key="com.atlassian.jira.toolkit:attachments">
                        <customfieldname>Number of attachments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10150" key="com.atlassian.jira.toolkit:comments">
                        <customfieldname>Number of comments</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>8.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10011" key="com.atlassian.jira.toolkit:participants">
                        <customfieldname>Participants</customfieldname>
                        <customfieldvalues>
                                        <customfieldvalue>had</customfieldvalue>
            <customfieldvalue>gjoseph</customfieldvalue>
            <customfieldvalue>pmm</customfieldvalue>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                    <customfield id="customfield_10833" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0|i012un:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10244" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>6344</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <customfield id="customfield_14168" key="com.okapya.jira.checklist:checklist">
                        <customfieldname>Task DoD</customfieldname>
                        <customfieldvalues>
                            
        <checklist>
        <![CDATA[
                            




                
                        
        <div style="margin-bottom: 8px;">
                            <div class="o-completion" style="display: flex; flex-shrink: 0;"><span  class="aui-lozenge" style="font-size: 12px; font-weight: normal; display: flex; flex-direction: row; align-items: center;" ><span style="padding-right: 4px; vertical-align: middle;"><svg width="15" height="15" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg" fill="white"><path clip-rule="evenodd" d="m10.41037,3.42544l-7.86501,0c-0.72395,0 -1.31084,0.58688 -1.31084,1.31084l0,7.86508c0,0.7239 0.58689,1.3108 1.31084,1.3108l7.86501,0c0.724,0 1.3109,-0.5869 1.3109,-1.3108l0,-7.86508c0,-0.72396 -0.5869,-1.31084 -1.3109,-1.31084zm-7.86501,-0.65542c-1.08593,0 -1.96626,0.88032 -1.96626,1.96626l0,7.86508c0,1.0859 0.88033,1.9662 1.96626,1.9662l7.86501,0c1.086,0 1.9663,-0.8803 1.9663,-1.9662l0,-7.86508c0,-1.08594 -0.8803,-1.96626 -1.9663,-1.96626l-7.86501,0z" fill-rule="evenodd"/><path d="m5.09049,10.18526l-1.82767,-1.82766l-0.78479,0.78479l2.61246,2.61246l5.38758,-5.38754l-0.78483,-0.78479l-4.60275,4.60274z"/></svg></span><span>0/6</span></span></div>
                    
            <div class="checklist-progress-bar-wrapper" style="">
        <div class="checklist-progress-bar" style="position: relative; width: 100%; background-color: #cccccc; margin-bottom: 2px; margin-top: 5px;">
                        <div class="checklist-progress" style="display: block; float: none; width: 0%; height: 2px; background: #14892c;">
                            </div>
        </div>
    </div>
        </div>
    
                                    <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Doc/release notes changes? Comment present?</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Downstream builds green?</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Solution information and context easily available?</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span><strong>Tests</strong></span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><path d="M0.441406 6.94141C0.441406 5.28455 1.78455 3.94141 3.44141 3.94141H15.4414C17.0983 3.94141 18.4414 5.28455 18.4414 6.94141V18.9414C18.4414 20.5983 17.0983 21.9414 15.4414 21.9414H3.44141C1.78455 21.9414 0.441406 20.5983 0.441406 18.9414V6.94141Z" fill="#EFF4FB" /><path fill-rule="evenodd" clip-rule="evenodd" d="M12.4414 3.94141H3.44141C1.78455 3.94141 0.441406 5.28455 0.441406 6.94141V18.9414C0.441406 20.5983 1.78455 21.9414 3.44141 21.9414H15.4414C17.0983 21.9414 18.4414 20.5983 18.4414 18.9414V9.94141H17.4414V18.9414C17.4414 20.046 16.546 20.9414 15.4414 20.9414H3.44141C2.33684 20.9414 1.44141 20.046 1.44141 18.9414V6.94141C1.44141 5.83684 2.33684 4.94141 3.44141 4.94141H12.4414V3.94141Z" fill="#ADBBD0" /><path d="M21.5306 5.91574L19.3486 4.58101L21.5306 3.24628C21.5681 3.22328 21.595 3.18633 21.6053 3.14348C21.6156 3.10063 21.6084 3.05545 21.5855 3.01792L20.9444 1.96985C20.8966 1.89162 20.7942 1.86696 20.716 1.91479L18.6331 3.18898V0.747138C18.6331 0.65546 18.5587 0.581055 18.4671 0.581055H17.2386C17.1469 0.581055 17.0725 0.65546 17.0725 0.747138V3.18898L14.9896 1.91487C14.9112 1.86704 14.8091 1.89162 14.7612 1.96993L14.1201 3.018C14.0972 3.05554 14.09 3.10071 14.1003 3.14356C14.1106 3.18641 14.1375 3.22336 14.175 3.24637L16.3571 4.58101L14.175 5.91574C14.1375 5.93866 14.1106 5.9757 14.1003 6.01847C14.09 6.0614 14.0972 6.10657 14.1201 6.14411L14.7612 7.1921C14.8091 7.27032 14.9112 7.29507 14.9896 7.24724L17.0725 5.97304V8.41489C17.0725 8.50657 17.1469 8.58097 17.2386 8.58097H18.4671C18.5587 8.58097 18.6331 8.50657 18.6331 8.41489V5.97313L20.7161 7.24715C20.7943 7.29499 20.8967 7.27032 20.9444 7.19218L21.5856 6.14411C21.6085 6.10657 21.6157 6.0614 21.6054 6.01855C21.5952 5.97562 21.5682 5.93875 21.5306 5.91574Z" fill="#de350b" /></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span><strong>FixVersion</strong> filled and not yet released</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                                <div style="display: flex; align-items: flex-start; padding: 0; margin-left: 12px; float: none; font-size: 14px;">
                                                                <span style="padding-right: 5px; align-self: flex-start;">
                                <svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg" class="unchecked"><rect fill="#EFF4FB" height="17.5" rx="2.5" stroke="#ADBBD0" width="18" x="0.44141" y="3.94141"/></svg>
                        </span>
                                        <div style="cursor: default; text-align: left; flex-grow: 1; padding-right: 3px; margin-top: 2px;">
                                                
                                                
                                                <span >
                                                        <span>Architecture Decision Record (<strong>ADR</strong>)</span>

                        </span>
                    </div>
                                                                    <span style="padding-right: 1px; white-space: nowrap;">
                                                        
                                                        
                                                                                </span>
                                    </div>
                                            ]]>
    </checklist>


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                    <customfield id="customfield_14145" key="com.intenso.jira.issue-templates:issue-templates-customfield">
                        <customfieldname>Template</customfieldname>
                        <customfieldvalues>
                            


                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                <customfield id="customfield_15131" key="com.onresolve.jira.groovy.groovyrunner:scripted-field">
                        <customfieldname>Time in Discovery</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>0</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10032" key="com.atlassian.jira.ext.charting:timeinstatus">
                        <customfieldname>Time in Status</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        </customfields>
    </item>
</channel>
</rss>