Questions tagged [jackrabbit]

The Apache Jackrabbit™ content repository is a fully conforming implementation of the Content Repository for Java Technology API (JCR, specified in JSR 170 and 283). A content repository is a hierarchical content store with support for structured and unstructured content, full text search, versioning, transactions, observation, and more.

The Apache Jackrabbit content repository is a fully conforming implementation of the Content Repository for Java Technology API (JCR, specified in JSR 170 and 283).

A content repository is a hierarchical content store with support for structured and unstructured content, full text search, versioning, transactions, observation, and more.

Useful Links:

665 questions
8
votes
3 answers

Store metadata into Jackrabbit repository

can anybody explain to me, how to proceed in following scenario ? receiving documents (MS docs, ODS, PDF) Dublic core metadata extraction via Apache Tika + content extraction via jackrabbit-content-extractors using Jackrabbit to store documents…
lisak
  • 21,611
  • 40
  • 152
  • 243
8
votes
1 answer

How do you backup an apache Jackrabbit repository without shutting Jackrabbit down?

When running Apache Jackrabbit JCR as an embedded service in your app, is there a quick way to get a sound and consistent backup of the contents of the Jackrabbit repository without shutting Jackrabbit down? If so how?
Chinnery
  • 10,179
  • 2
  • 23
  • 25
8
votes
2 answers

How to learn using content repository and Apache JackRabbit?

Where do I go after doing the "First hops" in the Apache JackRabbit website? I don't understand how to create a repository that is not in memory and how to configure it and so on.
LuckyLuke
  • 47,771
  • 85
  • 270
  • 434
8
votes
2 answers

How can I get the property of an older version of a node in jackrabbit?

I have created the node and created 3 versions. String path = "/my111"; MyClass m1 = new MyClass(); m1.setPath(path); m1.setName("Myname"); m1.setLanguage("English"); ocm.create(m1); ocm.save(); for (int i = 0; i < 4; i++) { …
vikiiii
  • 9,246
  • 9
  • 49
  • 68
8
votes
1 answer

Copy Lucene indexes between Jackrabbit repositories

I have two Jackrabbit instances containing the same content. Rebuilding the Lucene index is slow, 30+ hours, and the down-time needed in the cluster is risky. Is it possible to instead just re-index one Jackrabbit then copy the Lucene index from…
Rup
  • 33,765
  • 9
  • 83
  • 112
8
votes
1 answer

Using file system instead of database to store pdf files in jackrabbit

In our project we use jackrabbit with spring and tomcat to manage pdf files. Currently MySql database is being used to store blob files (in terms of jackrabbit it's called BundleDbPersistenceManager). As soon as the number of generated files grow…
basilboli
  • 614
  • 1
  • 6
  • 21
7
votes
4 answers

Best way to import/export a Apache Jackrabbit repository

What is the best way to import/export data from a Apache Jackrabbit repository? Right now, I have a website based on a repository with over 100GB data in a server but I frequently need to take a subset of this data in my notebook for in-loco…
Dema
  • 6,867
  • 11
  • 40
  • 48
6
votes
1 answer

Jackrabbit searches across joined nodes

I have tagged objects in a Jackrabbit repository (actually Adobe/Day CQ's CRX, but I think this is the Jackrabbit code): asset: tags = A, B child asset data 1: tags = A, C, E child asset data 2: tags = D, E I want to query against the union of…
Rup
  • 33,765
  • 9
  • 83
  • 112
6
votes
3 answers

Ideal place to store Binary data that can be rendered by calling a url

I am looking for an ideal (performance effective and maintainable) place to store binary data. In my case these are images. I have to do some image processing,scale the images and store in a suitable place which can be accesses via a RESTful…
dineshr
  • 329
  • 2
  • 6
6
votes
3 answers

Is there a tool to directly edit the contents of a Jackrabbit repository?

I have a file system based Jackrabbit repository which I would like to view and edit directly. Is there an existing tool that allows me to view/edit/delete/add nodes directly?
Chinnery
  • 10,179
  • 2
  • 23
  • 25
6
votes
1 answer

JDBC Driver Registration Deadlock?

In one thread, a JackRabbit is being created: "docs-on-startup" #32 prio=5 os_prio=0 tid=0x00007f730d73e800 nid=0x601d in Object.wait() [0x00007f725bffc000] java.lang.Thread.State: RUNNABLE at…
Marc Polizzi
  • 9,275
  • 3
  • 36
  • 61
6
votes
2 answers

Advantages of using Jackrabbit Oak over MongoDB

We are building a news website similar to a blogging platform or a CMS. Users can write articles, post comment, like and share. We are newbies and are unable to decide between Jackrabbit Oak and MongoDB? I went through the following thread When to…
Abhishek Nalin
  • 4,309
  • 5
  • 24
  • 32
6
votes
1 answer

How to get the CQ5 userInfo in java or jsp by using jackrabbit

How to get the CQ5 userInfo by using org.apache.jackrabbit.api.security.user like name and group information in java or jsp .?
VAr
  • 2,551
  • 1
  • 27
  • 40
5
votes
1 answer

JCR jackrabbit pagination

I'm using the following JCR-SQL2 Query to retrieve some files from jackrabbit repository SELECT id FROM [nt:file] WHERE ISDESCENDANTNODE([/repo/cms]) How can I use pagination in jackrabbit to retrieve only a limit number of files. I mean the…
Ammar Bozorgvar
  • 1,230
  • 19
  • 30
5
votes
3 answers

Jackrabbit user management

I can hardly find any documentation on how to design and build a repository for multiple users. I'm quite new to Jackrabbit and I was always using one master user credentials to build a repository that was accessed by only one master user. Now I…
lisak
  • 21,611
  • 40
  • 152
  • 243
1
2
3
44 45