You are viewing a plain text version of this content. The canonical link for it is here.
Posted to oak-issues@jackrabbit.apache.org by "Thomas Mueller (JIRA)" <ji...@apache.org> on 2018/09/21 12:52:00 UTC

[jira] [Resolved] (OAK-7739) Use an index only if a certain node or property exists

     [ https://issues.apache.org/jira/browse/OAK-7739?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Thomas Mueller resolved OAK-7739.
---------------------------------
       Resolution: Fixed
    Fix Version/s: 1.10

I won't document this for now. I would like to first test if and how works in the real world, before we provide official documentation and support.

> Use an index only if a certain node or property exists
> ------------------------------------------------------
>
>                 Key: OAK-7739
>                 URL: https://issues.apache.org/jira/browse/OAK-7739
>             Project: Jackrabbit Oak
>          Issue Type: Improvement
>          Components: indexing, query
>            Reporter: Thomas Mueller
>            Priority: Major
>             Fix For: 1.10, 1.9.9
>
>
> Currently, adding a new index (or reindexing) means the index is used for queries as soon as indexing is finished. When using the composite node store (in a blue-green deployment), it would be better if there is some control on when the index is used for queries. Meaning, the index is used only if a certain node or property exists. It is not used if the node or property doesn't exist. That allows to control usage as follows:
> * Old (blue) version: node /library/version, property v1 does exist, but v2 does not.
> * New (green) version: node /library/version, property v1 does not exist, but v2 does exist.
> Now a new index can be created which is not used with the old version, but used with the new version. The index configuration is as follows:
> {noformat}
> /oak:index/foo_v2/@useIfExists = /library/version/@v2
> {noformat}
> Similary, an index is used only with the old, but not with the new version, as follows:
> {noformat}
> /oak:index/foo_v1/@useIfExists = /library/version/@v1
> {noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)