Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Noble Paul നോബിള്‍ नोब्ळ्
The code can be written against JDBC. But we need to test the DDL and data types on al the supported DBs But , which one would we like to ship with Solr as a default option? H2 looks impressive. the jar (small) is just 667KB and the memory footprint is small too --Noble On Wed, Dec 3, 2008 at 1

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Ryan McKinley
check http://www.h2database.com/ in my view the best embedded DB out there. from the maker of HSQLDB... is second round. However, from anything solr, I would hope it would just rely on JDBC. On Dec 2, 2008, at 12:08 PM, Shalin Shekhar Mangar wrote: HSQLDB has a limit of upto 8GB of data.

[jira] Updated: (SOLR-284) Parsing Rich Document Types

2008-12-02 Thread Chris Harris (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-284?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chris Harris updated SOLR-284: -- Attachment: SOLR-284.patch Changes since my previous upload: * sync CHANGES.txt with trunk * test cases

[jira] Commented: (SOLR-877) Access to Lucene's TermEnum capabilities

2008-12-02 Thread Grant Ingersoll (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-877?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12652623#action_12652623 ] Grant Ingersoll commented on SOLR-877: -- Can you supply as a patch with some simple unit

[jira] Issue Comment Edited: (SOLR-877) Access to Lucene's TermEnum capabilities

2008-12-02 Thread Khee Chin (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-877?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12652603#action_12652603 ] kheechin edited comment on SOLR-877 at 12/2/08 4:12 PM: - As a solr-us

[jira] Commented: (SOLR-877) Access to Lucene's TermEnum capabilities

2008-12-02 Thread Khee Chin (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-877?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12652603#action_12652603 ] Khee Chin commented on SOLR-877: As a solr-user who uses this function for auto-complete, I'd

putting UnInvertedField instances in a SolrCache?

2008-12-02 Thread Chris Hostetter
recent wiki updates have be looking at UnInvertedField for the first time (i haven't been very good at keeping up with commits the last few months) and i'm wondering about the use of a "static Cache multiValuedFieldCache" keyed off of SolrIndexSearcher. Lucene-Java is trying to move away fro

Re: [Solr Wiki] Update of "SimpleFacetParameters" by YonikSeeley

2008-12-02 Thread Chris Hostetter
: I've updated the wording - hopefully it's a little clearer now. Yeah, but SolrFacetingOverview should probably be updated as well. : counting up terms. This did exist for single valued fields, and now : also exists for multi-valued fields. The implementation is different : of course, but I

Re: [Solr Wiki] Update of "SimpleFacetParameters" by YonikSeeley

2008-12-02 Thread Yonik Seeley
On Tue, Dec 2, 2008 at 2:32 PM, Chris Hostetter <[EMAIL PROTECTED]> wrote: > > : + This parameter indicates what type of algorithm/method to use when > faceting a field. > : + > : + The {{{enum}}} method was the default (and only) method prior to Solr1.4. > It enumerates all terms in a field, ca

Re: [Solr Wiki] Update of "SimpleFacetParameters" by YonikSeeley

2008-12-02 Thread Chris Hostetter
: + This parameter indicates what type of algorithm/method to use when faceting a field. : + : + The {{{enum}}} method was the default (and only) method prior to Solr1.4. It enumerates all terms in a field, calculating the set intersection of documents that match the term with documents that

[jira] Issue Comment Edited: (SOLR-828) A RequestProcessor to support updates

2008-12-02 Thread Noble Paul (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-828?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12652442#action_12652442 ] noble.paul edited comment on SOLR-828 at 12/2/08 10:14 AM: --- The new

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Noble Paul നോബിള്‍ नोब्ळ्
I shall try to explain the implementation. Ideally the backup store should keep all fields of all uncommitted docs. For committed docs, it must store all the non-stored fields and any field which is a destination of copyField. The idea of fetching all the stored fields from DB is not right I gue

[jira] Commented: (SOLR-828) A RequestProcessor to support updates

2008-12-02 Thread Noble Paul (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-828?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12652442#action_12652442 ] Noble Paul commented on SOLR-828: - The new {{UpdateProcessor}} called ({{UpdateableIndexProc

[jira] Updated: (SOLR-828) A RequestProcessor to support updates

2008-12-02 Thread Noble Paul (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-828?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Noble Paul updated SOLR-828: Description: This is same as SOLR-139. A new issue is opened so that the UpdateProcessor approach is highlig

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Yonik Seeley
On Tue, Dec 2, 2008 at 12:08 PM, Shalin Shekhar Mangar <[EMAIL PROTECTED]> wrote: > HSQLDB has a limit of upto 8GB of data. In Solr, you might want to go beyond > that without a commit. Ah, so you only use the DB to store the uncommitted docs so you can quickly reference their fields? If that's a

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Shalin Shekhar Mangar
HSQLDB has a limit of upto 8GB of data. In Solr, you might want to go beyond that without a commit. On Tue, Dec 2, 2008 at 10:33 PM, Dawid Weiss <[EMAIL PROTECTED]>wrote: > > Isn't HSQLDB an option? Its performance ranges a lot depending on the > volume of data and queries, but otherwise the lice

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Dawid Weiss
Isn't HSQLDB an option? Its performance ranges a lot depending on the volume of data and queries, but otherwise the license looks BSDish. http://hsqldb.org/web/hsqlLicense.html Dawid

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Yonik Seeley
On Tue, Dec 2, 2008 at 11:47 AM, Noble Paul നോബിള്‍ नोब्ळ् <[EMAIL PROTECTED]> wrote: > OK . Could you guys give some quick feedback on SOLR-828 and SOLR-810 > > If I get early feedback I may be able to avoid rewrites. Took a very quick look. Seems like documents should have a version or revision

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Noble Paul നോബിള്‍ नोब्ळ्
OK . Could you guys give some quick feedback on SOLR-828 and SOLR-810 If I get early feedback I may be able to avoid rewrites. On Tue, Dec 2, 2008 at 10:14 PM, Noble Paul നോബിള്‍ नोब्ळ् <[EMAIL PROTECTED]> wrote: > OK . So , I'll stick to JDBC. Derby looks like the best bet > > If we must ship it

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Noble Paul നോബിള്‍ नोब्ळ्
OK . So , I'll stick to JDBC. Derby looks like the best bet If we must ship it along w/ Solr it is another 2.6MB jar (embdded version) with the distro. On Tue, Dec 2, 2008 at 9:35 PM, Jason Rutherglen <[EMAIL PROTECTED]> wrote: > It's mostly dead and synchronizes on reads and writes. > > On Tue

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Andrzej Bialecki
Jason Rutherglen wrote: It's mostly dead and synchronizes on reads and writes. On Tue, Dec 2, 2008 at 7:46 AM, Yonik Seeley <[EMAIL PROTECTED]> wrote: On Tue, Dec 2, 2008 at 10:12 AM, Andrzej Bialecki <[EMAIL PROTECTED]> wrote: Please consider using JDBM, now in the Apache incubator, It does

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Jason Rutherglen
It's mostly dead and synchronizes on reads and writes. On Tue, Dec 2, 2008 at 7:46 AM, Yonik Seeley <[EMAIL PROTECTED]> wrote: > On Tue, Dec 2, 2008 at 10:12 AM, Andrzej Bialecki <[EMAIL PROTECTED]> wrote: > > Please consider using JDBM, now in the Apache incubator, > > It doesn't look like it's

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Yonik Seeley
On Tue, Dec 2, 2008 at 10:12 AM, Andrzej Bialecki <[EMAIL PROTECTED]> wrote: > Please consider using JDBM, now in the Apache incubator, It doesn't look like it's in the incubator yet... there was interest, but a proposal was never put on the wiki. > but with a long > history at SF.net and wide us

[jira] Updated: (SOLR-892) PHPResponseWriter fails to serialize boolean vars for spellcheck output

2008-12-02 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-892?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Yonik Seeley updated SOLR-892: -- Attachment: SOLR-892.patch This simple patch should fix the boolean encoding issue. > PHPResponseWriter

[jira] Commented: (SOLR-892) PHPResponseWriter fails to serialize boolean vars for spellcheck output

2008-12-02 Thread Yonik Seeley (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-892?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12652403#action_12652403 ] Yonik Seeley commented on SOLR-892: --- I don't know PHP, but I was able to verify that boole

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Andrzej Bialecki
Yonik Seeley wrote: On Mon, Dec 1, 2008 at 11:20 PM, Noble Paul നോബിള്‍ नोब्ळ् <[EMAIL PROTECTED]> wrote: BDB-JE does not have a a JDBC driver. It has a java API to read/write. I just looked at this license - unfortunately it has a GPL like clause: * 3. Redistributions in any form must be ac

Re: Can we use Berkley DB java in Solr

2008-12-02 Thread Yonik Seeley
On Mon, Dec 1, 2008 at 11:20 PM, Noble Paul നോബിള്‍ नोब्ळ् <[EMAIL PROTECTED]> wrote: > BDB-JE does not have a a JDBC driver. It has a java API to read/write. I just looked at this license - unfortunately it has a GPL like clause: * 3. Redistributions in any form must be accompanied by informati

[jira] Updated: (SOLR-892) PHPResponseWriter fails to serialize boolean vars for spellcheck output

2008-12-02 Thread Steffen Baumgart (JIRA)
[ https://issues.apache.org/jira/browse/SOLR-892?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Steffen Baumgart updated SOLR-892: -- Affects Version/s: 1.3.1 > PHPResponseWriter fails to serialize boolean vars for spellcheck outpu

[jira] Created: (SOLR-892) PHPResponseWriter fails to serialize boolean vars for spellcheck output

2008-12-02 Thread Steffen Baumgart (JIRA)
PHPResponseWriter fails to serialize boolean vars for spellcheck output --- Key: SOLR-892 URL: https://issues.apache.org/jira/browse/SOLR-892 Project: Solr Issue Type: Bug

Solr nightly build failure

2008-12-02 Thread solr-dev
init-forrest-entities: [mkdir] Created dir: /tmp/apache-solr-nightly/build [mkdir] Created dir: /tmp/apache-solr-nightly/build/web compile-common: [mkdir] Created dir: /tmp/apache-solr-nightly/build/common [javac] Compiling 40 source files to /tmp/apache-solr-nightly/build/common