Return-Path: Delivered-To: apmail-lucene-general-archive@www.apache.org Received: (qmail 16229 invoked from network); 10 Apr 2011 18:39:38 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 10 Apr 2011 18:39:38 -0000 Received: (qmail 46856 invoked by uid 500); 10 Apr 2011 18:39:38 -0000 Delivered-To: apmail-lucene-general-archive@lucene.apache.org Received: (qmail 46783 invoked by uid 500); 10 Apr 2011 18:39:37 -0000 Mailing-List: contact general-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: general@lucene.apache.org Delivered-To: mailing list general@lucene.apache.org Received: (qmail 46762 invoked by uid 99); 10 Apr 2011 18:39:37 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Apr 2011 18:39:37 +0000 X-ASF-Spam-Status: No, hits=2.5 required=5.0 tests=HTML_FONT_FACE_BAD,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: local policy) Received: from [173.164.230.50] (HELO mailhost.transaxtions.com) (173.164.230.50) by apache.org (qpsmtpd/0.29) with SMTP; Sun, 10 Apr 2011 18:39:31 +0000 Received: (qmail 9125 invoked from network); 10 Apr 2011 11:31:15 -0700 Received: from unknown (HELO ?192.168.1.120?) (192.168.1.120) by mymailhost.transaxtions.com with SMTP; 10 Apr 2011 11:31:15 -0700 Message-ID: <4DA1F957.7060805@transaxtions.com> Date: Sun, 10 Apr 2011 11:39:19 -0700 From: Nagendra Nagarajayya User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.15) Gecko/20110303 Lightning/1.0b2 Thunderbird/3.1.9 MIME-Version: 1.0 To: general@lucene.apache.org Subject: [Announce] Solr with Near Real Time (NRT) Functionality Content-Type: multipart/alternative; boundary="------------080607080703070403030208" X-Virus-Checked: Checked by ClamAV on apache.org --------------080607080703070403030208 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi! I would like to announce Solr with RankingAlgorithm has Near Real Time functionality now. The NRT functionality allows you to add documents without the IndexSearchers being closed or caches being cleared. A commit is not needed with the document update. Searches can run concurrently with document updates. No changes are needed except for enabling the NRT through solrconfig.xml. A lock-free concurrent time managed access is used to eliminate locking between the IndexWriter and the IndexSearchers to speed up the performance. The performance is about 262 TPS (document adds) on a dual core intel system with 2GB heap with searches in parallel. The performance at the moment is limited by how fast IndexWriter.getReader() performs. I have a white paper that describes NRT in details, allows you to download the tweets, schema and solrconfig.xml files used for testing. You can access the white paper from here: http://solr-ra.tgels.com/papers/solr-ra_real_time_search.pdf You can download Solr with RankingAlgorithm (Solr-RA) from here: http://solr-ra.tgels.com Please give this a try and let me know if you see any problems. Regards, - NN --------------080607080703070403030208--