SystemSession question

2007-08-27 Thread Esteban Franqueiro
e any significant performace issue related to using them in such a way? Is it advisable? Is there a better way? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated ent

Re: release for Jackrabbit 1.4

2007-09-17 Thread Esteban Franqueiro
repository/workspace.xml, and for JCR-935 (this one is commented in the the issue). Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be

RE: Jackrabbit 1.3.2 and 1.4 release planning

2007-09-20 Thread Esteban Franqueiro
ke to > see it released soon. I'd like to push to have the 1.3.2 > release out already in early October. Sounds good to me too. I would start by suggesting including the revisions that contain the fixes for JCR-862 (already commited by Jukka), JCR-962, JCR-978 and JCR-1082. Regards,

RE: [jira] Resolved: (JCR-926) Global data store for binaries

2007-09-24 Thread Esteban Franqueiro
27;ll get back to it soon. We can contribute our code, but it's gonna take same time to extract it (we moved it over a few JR versions). Also note that our code it's more of a POC than production-ready for now. Regards, PS: sorry for the lengthy mail Esteban Franqueiro [EMAIL PRO

RE: [jira] Resolved: (JCR-926) Global data store for binaries

2007-09-25 Thread Esteban Franqueiro
e our code, > > That would be great of course! Ok then, our current implementation is against a patched-up 1.3.1. What do you think is the best way to isolate the code? > > but it's gonna take same time to extract it our code it's more of a > > POC than production-ready for

RE: [jira] Resolved: (JCR-926) Global data store for binaries

2007-09-28 Thread Esteban Franqueiro
> What we need is the implementations of the > org.apache.jackrabbit.code.data interfaces. It's okay if I just zip them and attach them in an email to the list? Or to you only? I should also send any other changes to the rest of the core (there aren't too many). Regards, Es

RE: [jira] Resolved: (JCR-926) Global data store for binaries

2007-10-02 Thread Esteban Franqueiro
first I need to understand the issue... > > > Ok then, our current implementation is against a patched-up 1.3.1. > > What do you think is the best way to isolate the code? May be we should discuss further after you get the code. Since the copy of Jackrabbit I'm working has a lot

RE: [VOTE] Release Apache Jackrabbit 1.3.2

2007-10-03 Thread Esteban Franqueiro
3.2 candidate as the > diff to 1.3.3 will be minimal unless other issues are found. > > BR, > > Jukka Zitting Hi all. Sorry if the questions sounds silly, but why can't you change the header and keep the release in 1.3.2? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice:

RE: [jira] Resolved: (JCR-926) Global data store for binaries

2007-10-17 Thread Esteban Franqueiro
On a different topic, I want to discuss again another issue. When you are marking (ie, updating nodes times) on a workspace, and then you delete records older than the current cut-point, you risk deleting records belonging to other workspaces. The solution I propose is simply to mark the nodes of all

Re: [jira] Resolved: (JCR-926) Global data store for binaries

2007-10-17 Thread Esteban Franqueiro
it gets null'ed so that the weak reference can be collected. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confide

RE: [jira] Commented: (JCR-1154) Database Data Store

2007-10-25 Thread Esteban Franqueiro
Hi Thomas. Do you have a patch that could be applied to trunk in order to begin testing our newest code and phase out 1.3.*? Thanks a lot. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc

Realtime datastore garbage collector

2007-10-30 Thread Esteban Franqueiro
about a real scenario? I hope you can understand me. If not, I'll try to explain better. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entit

Re: Realtime datastore garbage collector

2007-10-31 Thread Esteban Franqueiro
removals from the weak hash map (so it can update the entry's timestamp). Ideally Session.save() could do this, so that there's no timeframe between the removal of those entries and the call to deleteUnused() in the GC. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This

Re: [jira] Commented: (JCR-1154) Database Data Store

2007-11-01 Thread Esteban Franqueiro
it it - but it will take a few more days. Do you have a patch against trunk? If you do, please upload it, so I can update it with our latest changes and test cases. After that I'll have no problem in doing these. Looking at the ConnectionRecoveryManager, I think that its private methods s

Re: Realtime datastore garbage collector

2007-11-02 Thread Esteban Franqueiro
store cache. And by synchronizing this update and the deletion of of unsaved items, I think we could avoid that scenario. What do you think? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc

Re: Realtime datastore garbage collector

2007-11-13 Thread Esteban Franqueiro
ence to the data store (I added a parameter so far). Another thing is obtaining the DataIdentifier from a PropertyState/PropertyImpl is quite involved. There should be an internal interface or something like that for this job. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email m

Fw: Realtime datastore garbage collector

2007-11-22 Thread Esteban Franqueiro
iodically reclaims unused space. Regarding the scenario I presented, what I would like to know is if we consider it an acceptable risk or not. I'm still not sure about this issue. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments,

DbDataStore implementation

2007-11-23 Thread Esteban Franqueiro
ng at this some more next week. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confidential, proprietary, copyrighted and/or leg

Re: DbDataStore implementation

2007-11-29 Thread Esteban Franqueiro
uot;NOTICE.txt")); session.save(); The save() causes two getRecord() and one getStream() call. And the stream is copied to the filesystem in a temp file. Another thing I noticed is that the code calls usesIdentifier() at the end of addRecord(). Shouldn't be better to call it as s

Re: Fw: Realtime datastore garbage collector

2007-11-30 Thread Esteban Franqueiro
to prevent accidental deletions in the GC. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confidential, proprietary, copyright

Re: Jackrabbit 1.4 release plan

2007-12-03 Thread Esteban Franqueiro
Hi Jukka. What about JCR-314, 935 (which you mentioned) and 1148, issues related with the fine grained locking? We've been testing the fix I proposed for JCR-1148 in the JCR-935 comments for some time now and haven't had any NPE due to it. Regards, Esteban Franqueiro [EMAIL

Re: DbDataStore implementation

2007-12-03 Thread Esteban Franqueiro
x this and start feeding the streams straight from the DB, then, since you only have one connection, you can have only one outstanding stream. Maybe I'm wrong here, but in my initial testing I couldn't feed two or more streams through the same connection. Regards, Esteban

repository.xml

2007-12-04 Thread Esteban Franqueiro
Hi. There are a number of repository.xml files in the core module. What are each of them for? Which is the main one for testing and the main one for deployments? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information

Re: Jackrabbit 1.4 release plan

2007-12-10 Thread Esteban Franqueiro
or some time now and > haven't had any NPE due to it. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confidential, pr

Re: Jackrabbit 1.4 release plan

2007-12-10 Thread Esteban Franqueiro
> Hi, > > On Dec 10, 2007 4:40 PM, Esteban Franqueiro <[EMAIL PROTECTED]> wrote: >> Sorry to insist, but I never got an answer to my previuos email about this. > > No problem. I was offline for the past week, vacationing in China. Nice :) >> What about JCR-314, 9

Re: Fine grained locking in 1.4

2007-12-12 Thread Esteban Franqueiro
data store :) Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confidential, proprietary, copyrighted and/or legally privi

Jackrabbit & MySQL

2007-12-17 Thread Esteban Franqueiro
Hi all. I wanted to know your experience in using Jackrabbit with MySQL as a backend. I usually use Derby+SQL Server for the datastore so I have no experience with MySQL. Any advice? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may

QueryRootNode constructor

2008-01-04 Thread Esteban Franqueiro
Hi all. I was wandering why the QueryRootNode was made protected, instead of public like it used to be. In our application we have our own LuceneQueryProvider that contains a QueryRootNode field, but this doesn't work anymore with 1.4. How can I work around this? Regards, Esteban Franq

Re: [VOTE] Release Apache Jackrabbit 1.4

2008-01-11 Thread Esteban Franqueiro
Hi Jukka. In the release notes, shouldn't there be a note about the data store? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that m

Re: [VOTE] Release Apache Jackrabbit 1.4

2008-01-11 Thread Esteban Franqueiro
> Hi, > > On Jan 11, 2008 4:26 PM, Esteban Franqueiro <[EMAIL PROTECTED]> wrote: >> In the release notes, shouldn't there be a note about the data store? > > I mention a "new storage model for binary content" in addition to > listing the data store fe

Jackrabbit roadmap

2008-01-11 Thread Esteban Franqueiro
d. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confidential, proprietary, copyrighted and/or legally privileged, and is intended

Re: Deadlock in XA Environment

2008-01-17 Thread Esteban Franqueiro
> there were some deadlock issues in 1.3 that were fixed in 1.3.1... > assuming by 1.3 you mean 1.3 and not 1.3.1. If you want to stick with 1.3, try 1.3.3 instead of 1.3.1. If not, better upgrade to 1.4. Just a suggestion. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This

Re: Cannot update node's property using JcrTemplate

2008-01-30 Thread Esteban Franqueiro
tions. Hi Paddy. I'm using springmodules 0.6 jcr module and I'm having some dificulties with Jackrabbit 1.4. What's the problem you're having? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information

Re: Why there's no jcr-1.0.jar in 1.4 war dist?

2008-02-01 Thread Esteban Franqueiro
> prototype installation bundles, etc. would all be very helpful. In the mean time, why not putting up a sign in the doc/download page saying "download jcr jar from... and put it in the ... directory of Tomcat"? (if there's such a notice, sorry, I missed it :( ) Regards, Esteb

DbDataStore doesn't support concurrent reads

2008-02-13 Thread Esteban Franqueiro
ociate the DB resources with the stream, leaving them open until the stream is closed. I have this code working with Jackrabbit 1.3 in the previous version of my app. I will move to 1.4 and upload a patch. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, togethe

On the extensibility of the core

2008-02-13 Thread Esteban Franqueiro
stion is: do we wan't people not being able to extend Jackrabbit in this way? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that

Re: On the extensibility of the core

2008-02-14 Thread Esteban Franqueiro
ther things I mentioned were present in the code I uploaded in JCR-1954. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confi

Re: [jira] Commented: (JCR-1154) Database Data Store

2008-02-15 Thread Esteban Franqueiro
l consider this next time :) > Also, please avoid putting multiple independent changes in a single issue or > patch. For example > the test cases should go to JCR-1187 and the concurrent read patch should go > to a new improvement > issue. I'll create a new improvemen

Wrong version in pom?

2008-02-18 Thread Esteban Franqueiro
Hi. Why the pom.xml in /jackrabbit/branches/1.4/jackrabbit-core/pom.xml has verion tag 1.4.1? Is this a mistake? Or it's supposed to be that way? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of

QueryObjectModelTree has the wrong package declaration

2008-02-21 Thread Esteban Franqueiro
It says core.query.qom instead of spi.commons.query.qom. Should I file a bug in Jira? Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be

Re: QueryObjectModelTree has the wrong package declaration

2008-02-21 Thread Esteban Franqueiro
> It says core.query.qom instead of spi.commons.query.qom. > Should I file a bug in Jira? SearchIndex imports the wrong class too. Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsid

Re: Expanding the scope of jackrabbit-jcr-tests

2008-02-28 Thread Esteban Franqueiro
Hi. I agree. But maybe we should have a new package for this tests? Perhaps org.apache.jackrabbit.test.perf[ormance] or something like that. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc

Jackrabbit and Lucene 2.3.0

2008-02-29 Thread Esteban Franqueiro
Hi. I remeber a discussion about moving to Lucene 2.3.0. Are there any updates on that topic? Also, it was said that Jackrabbit 1.4 was incompatible with 2.3.0, is that correct? Thanks. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments

Jackrabbit 1.5

2008-02-29 Thread Esteban Franqueiro
Hi again. Is there an ETA on Jackrabbit 1.5? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confidential, proprietary

Re: svn commit: r633471 - in /jackrabbit/trunk/jackrabbit-core/src/test/java/org/apache/jackrabbit/core: ./ integration/ query/

2008-03-04 Thread Esteban Franqueiro
again. > > WDOT? > > regards > marcel What about having a separate test suite that doesn't run with 'mvn install'? Since this tests are not unit tests, we can isolate them and run them with 'mvn -Dtest=PerformanceTests' or something similar. Regards, Este

Re: Jackrabbit Security -> branch or not

2008-03-07 Thread Esteban Franqueiro
27;t see any problem as long as the changes don't break the build and the current tests continue to pass. Maybe there should be some option to disable (or better yet, enable) these tests, so that we can still make an mvn install with no errors. Regards, Esteban Franqueiro [EMAIL PROTECTE

Re: jackrabbit-core 1.4.2 release plan

2008-03-13 Thread Esteban Franqueiro
d in a patch release if most people want to. But strict decisions can only be made after a policy is in place. In our case, I'm not sure if there's consensus about our release policy. My AR$0,02. All in all, I agree with this proposal for Jackrabbit 1.4.2. Regards, Esteban Franqueir

Re: Jackrabbit activities in the ApacheCon EU

2008-03-17 Thread Esteban Franqueiro
often see that the true power of JCR is lost due to not-the-best-modelling techniques. Unfortunately, I don't think I'll be able to be there. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of

SPI questions

2008-03-19 Thread Esteban Franqueiro
Hi all. Maybe this is a dumb question, but I don't quite understand how the SPI/JCR2SPI/SPI2JCR modules are used, and when. Are they being used? For example when running the integration tests? Any help on this will be usefull. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This

Re: Jackrabbit activities in the ApacheCon EU

2008-03-19 Thread Esteban Franqueiro
> Too bad. ApacheCon US? Don't know yet. I might be attending JavaOne though. Is there anybody participating in JavaOne? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subs

Supported databases

2008-03-25 Thread Esteban Franqueiro
Hi all. What are the officially supported databases? Derby, MS SQL Server, Oracle 9 and 10... What about DB2? MySQL? Any others? Thanks! Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its

Re: [VOTE] Release jackrabbit-jcr-commons 1.4.1

2008-03-26 Thread Esteban Franqueiro
Hi all. These ones should be in plural in the release notes... > Improvement: > Bug: ... since this one is and there are more than one in each. > Known Issues: Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, ma

Re: JCR & thesis

2008-03-27 Thread Esteban Franqueiro
would be interesting. My AR$ 0,02. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confidential, proprietary, copyrighted and/or le

Question regarding data store

2008-04-01 Thread Esteban Franqueiro
x27;m following is in BundleBinding.writeState(). A -2 is written as the size and the value is stored in the data store, but then the blob store code follows and dumps it to a file. I don't understand why is this. Any help is welcomed. Regards, Esteban Franqueiro [EMAIL PROTECTED] Not

Jackrabbit expects a particular Oracle driver

2008-04-03 Thread Esteban Franqueiro
utions to this that I can take care of in my app, but I think Jackrabbit should not fail just because you're not using the driver it expects to. The bigger problem is that it shouldn't expect a particular driver. WDYT? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: Th

DatabaseFileSistem has an incorrectly referenced logger?

2008-04-03 Thread Esteban Franqueiro
In DatabaseFileSystem, the logger is constructed as private static Logger log = LoggerFactory.getLogger(DbFileSystem.class); Shouldn't this be private static Logger log = LoggerFactory.getLogger(DatabaseFileSystem.class); ? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This

Re: Jackrabbit expects a particular Oracle driver

2008-04-04 Thread Esteban Franqueiro
d provide another impl that works with newer versions and doesn't depend on that class? Thanks! Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entiti

Re: Jackrabbit expects a particular Oracle driver

2008-04-04 Thread Esteban Franqueiro
mmon code (which we could rename to OracleBaseFileSystem or similar, for the reason you said). Then we make the Oracle10FileSystem inherit from the latter. WDYT? Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain informat

Re: Jackrabbit expects a particular Oracle driver

2008-04-07 Thread Esteban Franqueiro
> sounds good. do you want to create to create a related jira issue? Done. I'll try to make this changes as soon as I can finish with my current work. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information

Re: jackrabbit-core 1.4.3 release plan

2008-04-17 Thread Esteban Franqueiro
Hi Jukka. I agree with the new release and also want to suggest JCR-1388 for 1.4.3. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may

Re: jackrabbit-core 1.4.3 release plan

2008-04-17 Thread Esteban Franqueiro
Hi Thomas. > http://issues.apache.org/jira/browse/JCR-1388 > is a patch you have submitted, I thought you will commit it... Should I? Please, do. I haven't had any time to set everything up yet. Thanks! Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, togeth

Re: jackrabbit-core 1.4.3 release plan

2008-04-17 Thread Esteban Franqueiro
Hi Thomas. > http://issues.apache.org/jira/browse/JCR-1388 > is a patch you have submitted, I thought you will commit it... Should I? Please, do. I haven't had any time to set everything up yet. Thanks! Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, togeth

ConnectionRecoveryManager's extensibility

2008-04-18 Thread Esteban Franqueiro
ss is not extensible in the first place. Basically, all that has to be done is make setupConnection() and related fields protected. I would also add a protected constructor that allows to skip the call to setupConnection(), so it can be called in the derived class' constructor instead. Regards

Re: jackrabbit-core 1.4.3 release plan

2008-04-21 Thread Esteban Franqueiro
;t think many people tested this patch (actually, anyone but me). As a side note, we're currently testing our component with this patch included. I'll let you all know our results. Anyway, I'm ok with postponing this patch for 1.5/1.4.4/other. Regards, Esteban Franqueiro [EMAIL

Re: ConnectionRecoveryManager's extensibility

2008-04-21 Thread Esteban Franqueiro
ion() which is the method that actually instantiates the connection. The problem is that this method is private. I hope you can understand now. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems,

Re: New Jackrabbit committer

2008-04-22 Thread Esteban Franqueiro
> Hi, > > Please welcome Esteban Franqueiro as a new committer and PMC member of > the Apache Jackrabbit project. The Jackrabbit PMC recently decided to > offer Esteban committership based on his contributions. I'm happy to > announce that he accepted the offer a

Re: ConnectionRecoveryManager's extensibility

2008-04-22 Thread Esteban Franqueiro
onnection() method in a subclass. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems, Inc., its subsidiaries and affiliated entities, that may be confidential, proprietary, copyrighted and/o

Typo in NameConstants from spi-commons

2008-04-28 Thread Esteban Franqueiro
It says /** * rep:versionStorage */ public static final Name REP_NODETYPES = FACTORY.create(Name.NS_REP_URI, "nodeTypes"); when it should say rep:nodeTypes. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain infor

RE: extending the jackrabbit-api

2008-05-08 Thread Esteban Franqueiro
I think it's a good idea, as long as we don't have to keep those interfaces there for backcompatibility, and we can drop them quickly. Regards, Esteban Franqueiro [EMAIL PROTECTED] De: [EMAIL PROTECTED] en nombre de Tobias Bocanegra Enviado el: jue

RE: DataStore Garbage Collector Performance

2008-05-28 Thread Esteban Franqueiro
g. We're also not using the interface that Thomas created (I don't have the code, and can't remember the name, sorry!) yet. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Systems,

RE: DataStore Garbage Collector Performance

2008-05-29 Thread Esteban Franqueiro
> > We have a working background GC. > > Well, the current released GC implementation can run in the background > as well. Or can it not? What is the difference between your and the > current implementation? I don't see why it shouldn't work, it's just that we have this impl since 1.3 and we jus

Re: Is job/contract posting considered spam? [WAS: Re: devs for fire]

2008-06-05 Thread Esteban Franqueiro
gt; - Ask for off-list replies (in order to keep the noise down) >> - Use a [JOB] marker within the subject line >> >> >> WDYT? +1 Esteban Franqueiro [EMAIL PROTECTED] Notice: This email message, together with any attachments, may contain information of BEA Sy

Re: Component releases, proposed solution

2008-07-22 Thread Esteban Franqueiro
version only when there are changes in core. Why releasing a whole new version for a simple, low impact change in commons? If a change is big enough that it warrants a change in versions, it probably also affects core. My AR$2. Regards, Esteban Franqueiro [EMAIL PROTECTED] Notice: This email me

[jira] Commented: (JCR-926) Global data store for binaries

2007-07-06 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-926?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12510720 ] Esteban Franqueiro commented on JCR-926: Thomas, your patch references

[jira] Commented: (JCR-935) ConcurrentModificationException during logout (cont'd)

2007-09-03 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-935?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12524579 ] Esteban Franqueiro commented on JCR-935: Regarding the NPE that Pablo mentioned, it looks like a race condition

[jira] Commented: (JCR-935) ConcurrentModificationException during logout (cont'd)

2007-09-17 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-935?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12528113 ] Esteban Franqueiro commented on JCR-935: We also sync'ed push() and getOverlayedState() in ItemState

[jira] Issue Comment Edited: (JCR-935) ConcurrentModificationException during logout (cont'd)

2007-09-17 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-935?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12524579 ] efranqueiro edited comment on JCR-935 at 9/17/07 11:56 AM: -- Regarding the NPE that Pabl

[jira] Commented: (JCR-935) ConcurrentModificationException during logout (cont'd)

2007-09-19 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-935?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12528872 ] Esteban Franqueiro commented on JCR-935: Hi Stefan. Although I fully agree with you in that our workaround can

[jira] Commented: (JCR-1148) NullPointerException in ItemState

2007-09-28 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1148?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12531022 ] Esteban Franqueiro commented on JCR-1148: - This issue is related to JCR-935. > NullPointerException

[jira] Issue Comment Edited: (JCR-1148) NullPointerException in ItemState

2007-09-28 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1148?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12531022 ] efranqueiro edited comment on JCR-1148 at 9/28/07 7:34 AM: -- This issue is the same one

[jira] Updated: (JCR-1154) Database Data Store

2007-10-10 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1154?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Esteban Franqueiro updated JCR-1154: Attachment: jr-1.3.1-eaf.zip This is an implementation of a database-based data store. It

[jira] Updated: (JCR-1154) Database Data Store

2007-10-10 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1154?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Esteban Franqueiro updated JCR-1154: Attachment: (was: jr-1.3.1-eaf.zip) > Database Data St

[jira] Updated: (JCR-1154) Database Data Store

2007-10-10 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1154?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Esteban Franqueiro updated JCR-1154: Attachment: jr-1.3.1-bea.zip Changed attachment name. > Database Data St

[jira] Created: (JCR-1187) Asking a property twice for it's stream returns the same stream instance

2007-10-24 Thread Esteban Franqueiro (JIRA)
Issue Type: Bug Components: jackrabbit-core Reporter: Esteban Franqueiro If you ask a property for it's associated stream twice, even if you don't read from any of the streams, the stream instance returned is the same. This behavior is not consistent with the file da

[jira] Updated: (JCR-1187) Asking a property twice for it's stream returns the same stream instance

2007-10-24 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1187?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Esteban Franqueiro updated JCR-1187: Attachment: DataStoreTestUtils.java TestTwoGetStreams.java > Askin

[jira] Updated: (JCR-1187) Asking a property twice for it's stream returns the same stream instance

2007-10-24 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1187?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Esteban Franqueiro updated JCR-1187: Description: If you ask a property stored in the database data store (JCR-1154) for it&#

[jira] Updated: (JCR-1187) Asking a property twice for it's stream returns the same stream instance

2007-10-24 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1187?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Esteban Franqueiro updated JCR-1187: Attachment: TestTwoGetStreams.java > Asking a property twice for it's stream ret

[jira] Updated: (JCR-1187) Asking a property twice for it's stream returns the same stream instance

2007-10-24 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1187?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Esteban Franqueiro updated JCR-1187: Attachment: (was: TestTwoGetStreams.java) > Asking a property twice for it'

[jira] Commented: (JCR-1187) Asking a property twice for it's stream returns the same stream instance

2007-10-25 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1187?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12537642 ] Esteban Franqueiro commented on JCR-1187: - I agree with you Stefan. This issue has been fixed in our

[jira] Commented: (JCR-1154) Database Data Store

2007-11-01 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1154?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12539451 ] Esteban Franqueiro commented on JCR-1154: - See http://www.nabble.com/Re%3A--jira--Commented%3A-%28JCR-1154%29

[jira] Commented: (JCR-1206) UUID generation: SecureRandom should be used by default

2007-11-13 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1206?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12542199 ] Esteban Franqueiro commented on JCR-1206: - Why not use UUID.randomUUID() directly? > UUID generat

[jira] Commented: (JCR-73) Improve Javadoc documentation

2007-11-22 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-73?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12544877 ] Esteban Franqueiro commented on JCR-73: --- * @return true if consistent check is enabled. (in revision 597414

[jira] Commented: (JCR-73) Improve Javadoc documentation

2007-11-23 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-73?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12545109 ] Esteban Franqueiro commented on JCR-73: --- The sentence "The commit may haven implicitly in case the Co

[jira] Commented: (JCR-73) Improve Javadoc documentation

2007-11-23 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-73?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12545108 ] Esteban Franqueiro commented on JCR-73: --- http://jackrabbit.apache.org/doc/arch/operate/startup.html says the

[jira] Commented: (JCR-1232) Merge UUID to NodeId

2007-11-23 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1232?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12545070 ] Esteban Franqueiro commented on JCR-1232: - To cope with the existing code, shouldn't be public inte

[jira] Commented: (JCR-1232) Merge UUID to NodeId

2007-11-23 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1232?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12545041 ] Esteban Franqueiro commented on JCR-1232: - If getUUID() is used by applications, then I would say a behavior

[jira] Created: (JCR-1246) In DatabasePersistenceManager.store(), if the exception is null or its cause is not an SQLException, then the PM keeps looping forever

2007-11-29 Thread Esteban Franqueiro (JIRA)
-1246 URL: https://issues.apache.org/jira/browse/JCR-1246 Project: Jackrabbit Issue Type: Bug Components: jackrabbit-core Environment: Windows XP x64 Reporter: Esteban Franqueiro In the line if (ise != null && ise.

[jira] Created: (JCR-1250) When adding a large (100MB) binary to the DbDataStore, it fails with an insufficient memory exception

2007-11-30 Thread Esteban Franqueiro (JIRA)
/JCR-1250 Project: Jackrabbit Issue Type: Bug Components: jackrabbit-core Affects Versions: 1.4 Environment: Windows XP x64 client, SQL Server 2005 Reporter: Esteban Franqueiro Attached is a small test case. It fails during save(). I think

[jira] Updated: (JCR-1250) When adding a large (100MB) binary to the DbDataStore, it fails with an insufficient memory exception

2007-11-30 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1250?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Esteban Franqueiro updated JCR-1250: Attachment: BigBinaryTest.java > When adding a large (100MB) binary to the DbDataStore,

[jira] Commented: (JCR-1154) Database Data Store

2007-12-10 Thread Esteban Franqueiro (JIRA)
[ https://issues.apache.org/jira/browse/JCR-1154?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12550093 ] Esteban Franqueiro commented on JCR-1154: - Shouldn't the DataStoreException (as well as every exce

  1   2   >