Distributed Lucene : A distributed free text index for Hadoop


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Distributed Lucene : A distributed free text index for Hadoop
# 1  
Old 06-09-2008
Distributed Lucene : A distributed free text index for Hadoop

HPL-2008-64 Distributed Lucene : A distributed free text index for Hadoop - Butler, Mark H.; Rutherford, James
Keyword(s): distributed, high availability, free text, parallel, search
Abstract: This technical report described a parallel, distributed free text index written at HP Labs called Distributed Lucene. Distributed Lucene is based on two Apache open source projects, Lucene and Hadoop. It was written to gain a better understanding of the Apache Hadoop architecture, which is derived f ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

distributed filesystem over internet/VPN

On this forum was already posted similar question, but it was 4 years ago and didn't give me answers. I have two groups of engineers that works in far locations connected via VPN. Physically, the connection is a DSL. Currently we have a linux server in one location that provide files over... (4 Replies)
Discussion started by: Domino
4 Replies

2. Programming

Distributed Automation kill()

Ok, so Ive been stumped by this problem for the last 3 days, and my exploration is reaching its limitations... The key idea is that at any moment in time, the automation controller could theoretically have any number of threads open to any number of node machines running any number of... (2 Replies)
Discussion started by: jjinno
2 Replies

3. High Performance Computing

Grid vs. Parallel vs. Distributed

Hello all, I was wondering if someone could either explain or maybe point me to another article somewhere that explains the difference between: distributed computing grid computing parallel computing I see these terms thrown around a lot in server and cluster environments, but I'd like a... (2 Replies)
Discussion started by: Heathe_Kyle
2 Replies

4. Programming

Creating a Unique ID on distributed systems

Hi, How do you actually create a unique ID on a distributed system. I looked at gethostid but the man page says that its not guaranteed to be unique. Also using the IP address does not seem to be a feasible solution. Is there a function call or mechanism by which this is possible when even the... (4 Replies)
Discussion started by: pic
4 Replies

5. UNIX for Dummies Questions & Answers

Distributed

I've downloaded distributed latest build for dnetc, and I think i installed it. Not sure where the excicuteable would be. Any help? i realize this is a little ambigious, so I can allways reintstall it if i know how to put it in a specific directory.. does anyone know if VNC works for the Intel... (3 Replies)
Discussion started by: veitcha
3 Replies
Login or Register to Ask a Question
KinoSearch1(3pm)					User Contributed Perl Documentation					  KinoSearch1(3pm)

NAME
KinoSearch1 - search engine library VERSION
1.00 STABLE FORK
KinoSearch1 is a fork of KinoSearch version 0.165 intended to provide stability and backwards compatibility. For the latest features, see the main branch. SYNOPSIS
First, write an application to build an inverted index, or "invindex", from your document collection. use KinoSearch1::InvIndexer; use KinoSearch1::Analysis::PolyAnalyzer; my $analyzer = KinoSearch1::Analysis::PolyAnalyzer->new( language => 'en' ); my $invindexer = KinoSearch1::InvIndexer->new( invindex => '/path/to/invindex', create => 1, analyzer => $analyzer, ); $invindexer->spec_field( name => 'title', boost => 3, ); $invindexer->spec_field( name => 'bodytext' ); while ( my ( $title, $bodytext ) = each %source_documents ) { my $doc = $invindexer->new_doc; $doc->set_value( title => $title ); $doc->set_value( bodytext => $bodytext ); $invindexer->add_doc($doc); } $invindexer->finish; Then, write a second application to search the invindex: use KinoSearch1::Searcher; use KinoSearch1::Analysis::PolyAnalyzer; my $analyzer = KinoSearch1::Analysis::PolyAnalyzer->new( language => 'en' ); my $searcher = KinoSearch1::Searcher->new( invindex => '/path/to/invindex', analyzer => $analyzer, ); my $hits = $searcher->search( query => "foo bar" ); while ( my $hit = $hits->fetch_hit_hashref ) { print "$hit->{title} "; } DESCRIPTION
KinoSearch1 is a loose port of the Java search engine library Apache Lucene, written in Perl and C. The archetypal application is website search, but it can be put to many different uses. Features o Extremely fast and scalable - can handle millions of documents o Incremental indexing (addition/deletion of documents to/from an existing index). o Full support for 12 Indo-European languages. o Support for boolean operators AND, OR, and AND NOT; parenthetical groupings, and prepended +plus and -minus o Algorithmic selection of relevant excerpts and highlighting of search terms within excerpts o Highly customizable query and indexing APIs o Phrase matching o Stemming o Stoplists Getting Started KinoSearch1 has many, many classes, but you only need to get aquainted with three to start with: o KinoSearch1::InvIndexer o KinoSearch1::Searcher o KinoSearch1::Analysis::PolyAnalyzer Probably the quickest way to get something up and running is to cut and paste the sample applications out of KinoSearch1::Docs::Tutorial and adapt them for your purposes. SEE ALSO
The actively developed main branch, KinoSearch. The KinoSearch homepage, where you'll find links to the mailing list and so on, is <http://www.rectangular.com/kinosearch>. The Lucene homepage is <http://lucene.apache.org>. KinoSearch1::Docs::FileFormat, for an overview of the invindex file format. History Search::Kinosearch 0.02x, no longer supported, is this suite's forerunner. Plucene is a pure-Perl port of Lucene 1.3. KinoSearch is a from-scratch project which attempts to draws on the lessons of both. The API is not compatible with either. KinoSearch is named for Kino, the main character in John Steinbeck's novella, "The Pearl". SUPPORT
Please direct support questions to the KinoSearch mailing list: subscription information at <http://www.rectangular.com/kinosearch>. BUGS
UTF-8 scalars are not indexed properly. This is fixed in KinoSearch 0.3x, but cannot be fixed in KinoSearch1 without breaking index compatibility with KinoSearch 0.165 from which KinoSearch1 was forked. Not thread-safe. Indexing crashes reliably on Solaris 2.9 or other systems which are fussy about pointer alignment. Please report any other bugs or feature requests to "bug-kinosearch1@rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=KinoSearch1>. COPYRIGHT &; LICENSE Copyright 2005-2010 Marvin Humphrey This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. Terms of usage for Apache Lucene, from which portions of KinoSearch1 are derived, are spelled out in the Apache License: see the file "ApacheLicense2.0.txt". DISCLAIMER OF WARRANTY
BECAUSE THIS SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR CORRECTION. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE SOFTWARE AS PERMITTED BY THE ABOVE LICENCE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. perl v5.14.2 2011-11-15 KinoSearch1(3pm)