You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Thomas Draier (JIRA)" <ji...@apache.org> on 2010/02/15 20:53:27 UTC

[jira] Created: (JCR-2494) Problem with ItemManager shareable node caches, eviction not propagated from one session to another

Problem with ItemManager shareable node caches, eviction not propagated from one session to another
---------------------------------------------------------------------------------------------------

                 Key: JCR-2494
                 URL: https://issues.apache.org/jira/browse/JCR-2494
             Project: Jackrabbit Content Repository
          Issue Type: Bug
          Components: jackrabbit-core
    Affects Versions: 2.0.0
            Reporter: Thomas Draier


Hi,

When deleting one share of a shareable node from a list with one session, the shareableNodesCache of the other session is not updated on save and the entry is not removed. There's no problem when the item is completely deleted - in that case, the ItemStateListener propagates the event to other sessions to evict the entries from the cach.

This leads to some issues if the item is later retrieved with ItemManager.retrieveItem(id) - this one returns the first entry of the shareableNodesCache, which may be the one that has been deleted. The NodeData here has a primaryParentId - but the node behind this id does not have the shareable node as a child anymore. Subsequent calls to getName() or getPath() on this node throws exception ( failed to build path of xx: yy has no child entry for xx , from NodeImpl:3092)

It's quite difficult to reproduce, and does not crashes everytime (as we're getting one item from the shareableNodesCache map), but we have some scenarios where this happens quite frequently - here's some code to reproduce the problem :

    // Create structure
    Node n1 = node.addNode("n1", "nt:unstructured");
    Node n2 = node.addNode("n2", "nt:unstructured");
    Node n3 = node.addNode("n3", "nt:unstructured");
    Node n4 = node.addNode("n4", "nt:unstructured");
    Node s1 = n1.addNode("s1", "nt:unstructured");

    s1.addMixin("mix:shareable");
    String id = s1.getIdentifier();
    session.save();
    session.getWorkspace().clone("default", s1.getPath(), n2.getPath() + "/s2", false);
    session.getWorkspace().clone("default", s1.getPath(), n3.getPath() + "/s3", false);
    session.getWorkspace().clone("default", s1.getPath(), n4.getPath() + "/s4", false);

    // Load caches
    session.getNode(node.getPath()+"/n1/s1").getPath();
    session.getNode(node.getPath()+"/n2/s2").getPath();
    session.getNode(node.getPath()+"/n3/s3").getPath();
    session.getNode(node.getPath()+"/n4/s4").getPath();

    // Remove shares from other session
    session2.getNode(node.getPath()+"/n1/s1").remove();
    session2.getNode(node.getPath()+"/n2/s2").remove();
    session2.getNode(node.getPath()+"/n4/s4").remove();
    session2.save();

    assertNotNull(session2.getNodeByIdentifier(id).getPath());
    assertNotNull(session.getNodeByIdentifier(id).getPath());


I fixed the issue by adding a call to evictItems() in stateModified (actually, almost uncommenting the code that was already there). You'll find the patch attached.

Regards


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (JCR-2494) Problem with ItemManager shareable node caches, eviction not propagated from one session to another

Posted by "Thomas Draier (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JCR-2494?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Thomas Draier updated JCR-2494:
-------------------------------

    Status: Patch Available  (was: Open)

> Problem with ItemManager shareable node caches, eviction not propagated from one session to another
> ---------------------------------------------------------------------------------------------------
>
>                 Key: JCR-2494
>                 URL: https://issues.apache.org/jira/browse/JCR-2494
>             Project: Jackrabbit Content Repository
>          Issue Type: Bug
>          Components: jackrabbit-core
>    Affects Versions: 2.0.0
>            Reporter: Thomas Draier
>         Attachments: evict_node_from_cache_on_shareable_node_modification.patch
>
>
> Hi,
> When deleting one share of a shareable node from a list with one session, the shareableNodesCache of the other session is not updated on save and the entry is not removed. There's no problem when the item is completely deleted - in that case, the ItemStateListener propagates the event to other sessions to evict the entries from the cach.
> This leads to some issues if the item is later retrieved with ItemManager.retrieveItem(id) - this one returns the first entry of the shareableNodesCache, which may be the one that has been deleted. The NodeData here has a primaryParentId - but the node behind this id does not have the shareable node as a child anymore. Subsequent calls to getName() or getPath() on this node throws exception ( failed to build path of xx: yy has no child entry for xx , from NodeImpl:3092)
> It's quite difficult to reproduce, and does not crashes everytime (as we're getting one item from the shareableNodesCache map), but we have some scenarios where this happens quite frequently - here's some code to reproduce the problem :
>     // Create structure
>     Node n1 = node.addNode("n1", "nt:unstructured");
>     Node n2 = node.addNode("n2", "nt:unstructured");
>     Node n3 = node.addNode("n3", "nt:unstructured");
>     Node n4 = node.addNode("n4", "nt:unstructured");
>     Node s1 = n1.addNode("s1", "nt:unstructured");
>     s1.addMixin("mix:shareable");
>     String id = s1.getIdentifier();
>     session.save();
>     session.getWorkspace().clone("default", s1.getPath(), n2.getPath() + "/s2", false);
>     session.getWorkspace().clone("default", s1.getPath(), n3.getPath() + "/s3", false);
>     session.getWorkspace().clone("default", s1.getPath(), n4.getPath() + "/s4", false);
>     // Load caches
>     session.getNode(node.getPath()+"/n1/s1").getPath();
>     session.getNode(node.getPath()+"/n2/s2").getPath();
>     session.getNode(node.getPath()+"/n3/s3").getPath();
>     session.getNode(node.getPath()+"/n4/s4").getPath();
>     // Remove shares from other session
>     session2.getNode(node.getPath()+"/n1/s1").remove();
>     session2.getNode(node.getPath()+"/n2/s2").remove();
>     session2.getNode(node.getPath()+"/n4/s4").remove();
>     session2.save();
>     assertNotNull(session2.getNodeByIdentifier(id).getPath());
>     assertNotNull(session.getNodeByIdentifier(id).getPath());
> I fixed the issue by adding a call to evictItems() in stateModified (actually, almost uncommenting the code that was already there). You'll find the patch attached.
> Regards

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (JCR-2494) Problem with ItemManager shareable node caches, eviction not propagated from one session to another

Posted by "Thomas Draier (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/JCR-2494?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12833956#action_12833956 ] 

Thomas Draier commented on JCR-2494:
------------------------------------

Actually, the fix is a little too violent, it generates some other errors - i have : 

javax.jcr.RepositoryException: Unable to update item: node /
	at org.apache.jackrabbit.core.ItemImpl.save(ItemImpl.java:1147)
	at org.apache.jackrabbit.core.SessionImpl.save(SessionImpl.java:919)
...
Caused by: org.apache.jackrabbit.core.state.ItemStateException: Node b2a6b51a-913a-41a5-92ca-09d7de92b320 must be changed as well.
	at org.apache.jackrabbit.core.observation.EventStateCollection.createEventStates(EventStateCollection.java:431)
	at org.apache.jackrabbit.core.state.SharedItemStateManager$Update.begin(SharedItemStateManager.java:702)
	at org.apache.jackrabbit.core.state.SharedItemStateManager.beginUpdate(SharedItemStateManager.java:1110)
	at org.apache.jackrabbit.core.state.SharedItemStateManager.update(SharedItemStateManager.java:1140)
	at org.apache.jackrabbit.core.state.LocalItemStateManager.update(LocalItemStateManager.java:351)
	at org.apache.jackrabbit.core.state.XAItemStateManager.update(XAItemStateManager.java:354)
	at org.apache.jackrabbit.core.state.LocalItemStateManager.update(LocalItemStateManager.java:326)
	at org.apache.jackrabbit.core.state.SessionItemStateManager.update(SessionItemStateManager.java:328)
	at org.apache.jackrabbit.core.ItemImpl.save(ItemImpl.java:1141)


when trying to save the session where the nodes were evicted. b2a6b51a-913a-41a5-92ca-09d7de92b320 is the shareable node.



> Problem with ItemManager shareable node caches, eviction not propagated from one session to another
> ---------------------------------------------------------------------------------------------------
>
>                 Key: JCR-2494
>                 URL: https://issues.apache.org/jira/browse/JCR-2494
>             Project: Jackrabbit Content Repository
>          Issue Type: Bug
>          Components: jackrabbit-core
>    Affects Versions: 2.0.0
>            Reporter: Thomas Draier
>         Attachments: evict_node_from_cache_on_shareable_node_modification.patch
>
>
> Hi,
> When deleting one share of a shareable node from a list with one session, the shareableNodesCache of the other session is not updated on save and the entry is not removed. There's no problem when the item is completely deleted - in that case, the ItemStateListener propagates the event to other sessions to evict the entries from the cach.
> This leads to some issues if the item is later retrieved with ItemManager.retrieveItem(id) - this one returns the first entry of the shareableNodesCache, which may be the one that has been deleted. The NodeData here has a primaryParentId - but the node behind this id does not have the shareable node as a child anymore. Subsequent calls to getName() or getPath() on this node throws exception ( failed to build path of xx: yy has no child entry for xx , from NodeImpl:3092)
> It's quite difficult to reproduce, and does not crashes everytime (as we're getting one item from the shareableNodesCache map), but we have some scenarios where this happens quite frequently - here's some code to reproduce the problem :
>     // Create structure
>     Node n1 = node.addNode("n1", "nt:unstructured");
>     Node n2 = node.addNode("n2", "nt:unstructured");
>     Node n3 = node.addNode("n3", "nt:unstructured");
>     Node n4 = node.addNode("n4", "nt:unstructured");
>     Node s1 = n1.addNode("s1", "nt:unstructured");
>     s1.addMixin("mix:shareable");
>     String id = s1.getIdentifier();
>     session.save();
>     session.getWorkspace().clone("default", s1.getPath(), n2.getPath() + "/s2", false);
>     session.getWorkspace().clone("default", s1.getPath(), n3.getPath() + "/s3", false);
>     session.getWorkspace().clone("default", s1.getPath(), n4.getPath() + "/s4", false);
>     // Load caches
>     session.getNode(node.getPath()+"/n1/s1").getPath();
>     session.getNode(node.getPath()+"/n2/s2").getPath();
>     session.getNode(node.getPath()+"/n3/s3").getPath();
>     session.getNode(node.getPath()+"/n4/s4").getPath();
>     // Remove shares from other session
>     session2.getNode(node.getPath()+"/n1/s1").remove();
>     session2.getNode(node.getPath()+"/n2/s2").remove();
>     session2.getNode(node.getPath()+"/n4/s4").remove();
>     session2.save();
>     assertNotNull(session2.getNodeByIdentifier(id).getPath());
>     assertNotNull(session.getNodeByIdentifier(id).getPath());
> I fixed the issue by adding a call to evictItems() in stateModified (actually, almost uncommenting the code that was already there). You'll find the patch attached.
> Regards

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (JCR-2494) Problem with ItemManager shareable node caches, eviction not propagated from one session to another

Posted by "Thomas Draier (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JCR-2494?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Thomas Draier updated JCR-2494:
-------------------------------

    Attachment: evict_node_from_cache_on_shareable_node_modification.patch

> Problem with ItemManager shareable node caches, eviction not propagated from one session to another
> ---------------------------------------------------------------------------------------------------
>
>                 Key: JCR-2494
>                 URL: https://issues.apache.org/jira/browse/JCR-2494
>             Project: Jackrabbit Content Repository
>          Issue Type: Bug
>          Components: jackrabbit-core
>    Affects Versions: 2.0.0
>            Reporter: Thomas Draier
>         Attachments: evict_node_from_cache_on_shareable_node_modification.patch
>
>
> Hi,
> When deleting one share of a shareable node from a list with one session, the shareableNodesCache of the other session is not updated on save and the entry is not removed. There's no problem when the item is completely deleted - in that case, the ItemStateListener propagates the event to other sessions to evict the entries from the cach.
> This leads to some issues if the item is later retrieved with ItemManager.retrieveItem(id) - this one returns the first entry of the shareableNodesCache, which may be the one that has been deleted. The NodeData here has a primaryParentId - but the node behind this id does not have the shareable node as a child anymore. Subsequent calls to getName() or getPath() on this node throws exception ( failed to build path of xx: yy has no child entry for xx , from NodeImpl:3092)
> It's quite difficult to reproduce, and does not crashes everytime (as we're getting one item from the shareableNodesCache map), but we have some scenarios where this happens quite frequently - here's some code to reproduce the problem :
>     // Create structure
>     Node n1 = node.addNode("n1", "nt:unstructured");
>     Node n2 = node.addNode("n2", "nt:unstructured");
>     Node n3 = node.addNode("n3", "nt:unstructured");
>     Node n4 = node.addNode("n4", "nt:unstructured");
>     Node s1 = n1.addNode("s1", "nt:unstructured");
>     s1.addMixin("mix:shareable");
>     String id = s1.getIdentifier();
>     session.save();
>     session.getWorkspace().clone("default", s1.getPath(), n2.getPath() + "/s2", false);
>     session.getWorkspace().clone("default", s1.getPath(), n3.getPath() + "/s3", false);
>     session.getWorkspace().clone("default", s1.getPath(), n4.getPath() + "/s4", false);
>     // Load caches
>     session.getNode(node.getPath()+"/n1/s1").getPath();
>     session.getNode(node.getPath()+"/n2/s2").getPath();
>     session.getNode(node.getPath()+"/n3/s3").getPath();
>     session.getNode(node.getPath()+"/n4/s4").getPath();
>     // Remove shares from other session
>     session2.getNode(node.getPath()+"/n1/s1").remove();
>     session2.getNode(node.getPath()+"/n2/s2").remove();
>     session2.getNode(node.getPath()+"/n4/s4").remove();
>     session2.save();
>     assertNotNull(session2.getNodeByIdentifier(id).getPath());
>     assertNotNull(session.getNodeByIdentifier(id).getPath());
> I fixed the issue by adding a call to evictItems() in stateModified (actually, almost uncommenting the code that was already there). You'll find the patch attached.
> Regards

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.