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
0
votes
0 answers

Integration of S3 storage with Jackrabbit Oak implementation application deployed on GCP

I am working on Spring boot application(Content Management System) which will store multiple files in amazon-s3 repository with the help of jack rabbit oak node structure implementation and all node metadata will get store in PostgreSQL 10.4 db. I…
0
votes
0 answers

How to clean up third-party beans properly when Application shutdowns?

what is the best way to dispose DocumentNodeStore in a Spring boot application when the server shutdowns? @Configuration @Profile("production") public class MongoRepositoryInitializer { . . . @Bean public DocumentNodeStore…
mhrsalehi
  • 1,124
  • 1
  • 12
  • 29
0
votes
0 answers

Not able to run Version garbage collection in jcr implementation

I am getting below error while running version garbage collection: "Limit 100000 documents exceeded, reducing next collection interval to 37561439…
abn
  • 41
  • 1
  • 8
0
votes
1 answer

add mandatory property to an existing nodeType

I want to add mandatory property to an existing NodeType that already has some nodes. I specified default value for new field but when new cdn goes to register below exception occurred: org.apache.jackrabbit.oak.api.CommitFailedException:…
mohammad_1m2
  • 1,571
  • 5
  • 19
  • 38
0
votes
1 answer

How to run oak-run console on postgres server

I am trying to connect to my DocumentNodeStore in a postgresql database. Following the instruction from here https://jackrabbit.apache.org/oak/docs/features/oak-run-nodestore-connection-options.html export…
Tan Wei Lian
  • 92
  • 1
  • 9
0
votes
1 answer

SpringBoot application with Jack Rabbit oak implementation taking too much time to start

I am working on Spring boot application(Content Management System) which stores multiple files in amazon-s3 repository with the help of jack rabbit oak node structure implementation and all node metadata stores in PostgreSQL 10.4 db. Our application…
abn
  • 41
  • 1
  • 8
0
votes
1 answer

Are nested array node types valid in Jackrabbit JCR?

I'm fairly new to the JCR space and have inherited a project using Jackrabbit/Apache Oak as the JCR implementation. I have a data model which I'm trying to translate into a JCR node structure like below: { "someProperty": [ […
carbon_ghost
  • 1,114
  • 5
  • 18
  • 40
0
votes
0 answers

javax.jcr.UnsupportedRepositoryOperationException: Node at /testVersionable is not versionable

I am trying to implement versioning for the node, giving below error, at org.apache.jackrabbit.oak.plugins.version.ReadOnlyVersionManager.checkVersionable(ReadOnlyVersionManager.java:313) at…
sandy
  • 97
  • 2
  • 14
0
votes
1 answer

Lucene index: getting empty result while query

I am trying to query with Lucene index but getting the empty result and below errors in the log, Traversal query (query without index): select [jcr:path] from [nt:base] where isdescendantnode('/test') and name='World'; consider creating an…
sandy
  • 97
  • 2
  • 14
0
votes
3 answers

Fulltext query on properties and subnodes does not work properly - AEM Query Builder

I'm trying to perform a query on the CRX of a 6.2 Adobe AEM version. I have to execute a fulltext query on (aNode is a generic subnode of /content/connect/it/supplier/): 1) all properties of /content/connect/it/supplier/aNode/jcr:content 2) all…
harry-potter
  • 1,981
  • 5
  • 29
  • 55
0
votes
1 answer

Using Oracle as datastore/db with webDAV instead of file system

Here is a need for fetching files (word/blob) directly from oracle and show it on browser on edit mode for editing and save it directly on oracle. Using file system is not an option due to security reasons. Please let me know if anyone has done…
0
votes
1 answer

Using PBKDF2 to store password hashes in Jackrabbit OAK

We are migrating an application that was built on Sling 6 & Jackrabbit to Sling 10 & Oak. We are using Oak 1.6.8 which is the version used in the example sling 10 application. We had previously built our own authenticators & login plugins to use…
Marc
  • 415
  • 5
  • 16
0
votes
1 answer

How to implement document flavour in Oak storage?

I am new to jackrabbit Oak, I have been looking into documentations but not finding the right approach, I read Oak comes with two node storage flavors: segment and document. I understood that the segment flavor is for standalone application so I…
Gopi Lal
  • 417
  • 5
  • 23
0
votes
1 answer

Uploading Large Files to JackRabbit Repository Using API

We configured JackRabbit repository for storing the files and other file manipulation. Here we are trying to upload large files to the JackRabbit Repository using CreateDocumentFromFilePath API. It is throwing below error message…
0
votes
1 answer

JCR user login failure

I'm using JCR and Jackrabbit Oak implementation. I want to get session with admin user with this code: Credentials credentials = new SimpleCredentials("admin", "admin".toCharArray()); return repository.login(credentials); but in the return session…
NimaR
  • 1
  • 1