Questions tagged [jackrabbit-oak]

Questions related specifically to Jackrabbit Oak, as opposed to generic Jackrabbit questions.

Jackrabbit Oak is an effort to implement a scalable and performant hierarchical content repository for use as the foundation of modern world-class web sites and other demanding content applications.

120 questions
1
vote
0 answers

How to create RDBMS oak repository with lucene index

Can anyone share an example of initializing RDBMS Oak Repository with Lucene Index? I have tried below but getting The index update failed org.apache.jackrabbit.oak.api.CommitFailedException: OakAsync0002: Missing index provider detected for type…
sandy
  • 97
  • 2
  • 14
1
vote
2 answers

How can I access a JCR Version of a deleted node?

I'd like to access the javax.jcr.version.VersionHistory of a node that has been deleted to read metadata and change labels, or possibly restore it. How can I do that? The JCR VersionManager provides methods getBaseVersion(java.lang.String absPath)…
Dr. Hans-Peter Störr
  • 25,298
  • 30
  • 102
  • 139
1
vote
0 answers

Why Jackrabbit Full text Query doesn't work?

I tring working with jcr jackrabbit oak, mongoDb and query. The first I added a few file to repository. Now I would like use full-text search. When I use query : Session session = getSessions(); Workspace workspace =…
1
vote
1 answer

Adding restrictions to ACLs yields empty results for queries in Jackrabbit Oak

Using Jackrabbit Oak, I've been attempting to configure security through SecurityProvider and SecurityConfigurations. In particular, I've been using the restrictions which generally works as expected. However, when dealing with JCR-SQL2 queries,…
Søren
  • 95
  • 8
1
vote
1 answer

How to make Jackrabbit WebDAV servlet allow editing with Microsoft Word?

I'm trying to expose a Jackrabbit Oak repository through a servlet. While I'm able to successfully retrieve and edit a .docx file with LibreOffice Writer, Microsoft Word does not work. I'm making use of: Jackrabbit Oak version 1.8.4 Jackrabbit…
Søren
  • 95
  • 8
1
vote
0 answers

How to create new Principal Object using Jackrabbit/JCR

I'm a new developer trying to tackle the Jackrabbit/JCR library. My team and I have been using the EveryonePrincipal for a couple of months now, but we've been wanting to implement more capabilities per user roles/principals so we can grant them…
Kevin Vu
  • 49
  • 4
1
vote
1 answer

Meaning of SessionStatistics in AEM's JMX console

My AEM server after a few days, becomes unresponsive and crashes. As per this article - https://helpx.adobe.com/experience-manager/kb/check-and-analyze-if-JCR-session-leaks-in-your-AEM-instance.html, on checking…
Archit Arora
  • 2,508
  • 7
  • 43
  • 69
1
vote
0 answers

jackrabbit accessmanager: How to create ACL with restriction rep:glob="/foo"

We installed the Accessmanager Bundle and now we are creating our ACL inside the JCR using curl commands. For example: curl -u admin:XXX -FprincipalId=testgroup -Fprivilege@jcr:read=denied http://myhost:4502/content.modifyAce.html` But I have no…
1
vote
1 answer

Jackrabbit oak remove node doesn't freed disk space

So when I try to remove node it doesn't remove file from disk. Only node is removed. There is example of code what I do: Node node = session.getNodeByIdentifier(uuid); node.remove(); I read that garbage collector must be invoked to remove file from…
Grzesiek
  • 69
  • 2
  • 8
1
vote
0 answers

Jackrabbit how are indexes created and updated ? how are the index files updated?

We are using jackrabbit oak with mongodb as document store and s3 as blob store. The content we are currently storing is mostly text and very few images. But the size of s3 is around 80 GB whereas the size of mongoDb is only ~10 GB . I've lucene…
1
vote
2 answers

Is it possible to set up an Oak property index and avoid reindexing?

Even if I add the reindex=false property on the index, it still triggers a reindexing upon creation.
andy
  • 43
  • 5
1
vote
0 answers

Data consistency in a Oak cluster

I'm using Jackrabbit Oak 1.6.1 in a cluster config (by using default configurations). There is one mongodb server which contains one Oak DB. Two instances of Oak are running into Intellij, so I can debug each of them. Each Oak instance records…
1
vote
1 answer

oak version upgrade in aem

I am using AEM 6.1, and upgrading my AEM instance with SP2. I have installed CFP 3 and SP2 in AEM 6.1. earlier my oak version is showing 1.2.7 but after installation of SP2 and CFP ; oak version got downgraded to 1.2.18. but blog1 say: If your…
Rashid
  • 343
  • 4
  • 14
1
vote
1 answer

Jackrabbit Oak Indexing

I'm executing this JCR SQL2 query: SELECT * FROM [my:type] AS n WHERE NAME(n) LIKE 'node_name_prefix.%' AND n.deleted = CAST('false' AS BOOLEAN) AND CONTAINS(n.user, '1f12f97d-6516-48b9-ae75-47d17ef6877f') AND CONTAINS(n.state, 'executing') OR…
funfried
  • 605
  • 3
  • 14
1
vote
0 answers

How to query Jackrabbit for a property value on all the file versions?

I've got an application where I'm required to sync files from a remote server to JCR. Sync rules If a new file (file path) is found on the remote server, this file is added to JCR. Remote server also returns a updateTimestamp field which is stored…