Return-Path: X-Original-To: apmail-lucene-solr-user-archive@minotaur.apache.org Delivered-To: apmail-lucene-solr-user-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id D3AB9F360 for ; Fri, 12 Dec 2014 14:25:35 +0000 (UTC) Received: (qmail 64238 invoked by uid 500); 12 Dec 2014 14:25:31 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 64171 invoked by uid 500); 12 Dec 2014 14:25:31 -0000 Mailing-List: contact solr-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-user@lucene.apache.org Delivered-To: mailing list solr-user@lucene.apache.org Received: (qmail 64158 invoked by uid 99); 12 Dec 2014 14:25:30 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Dec 2014 14:25:30 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=5.0 tests=SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of apache@elyograg.org designates 166.70.79.219 as permitted sender) Received: from [166.70.79.219] (HELO frodo.elyograg.org) (166.70.79.219) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Dec 2014 14:25:03 +0000 Received: from localhost (localhost [127.0.0.1]) by frodo.elyograg.org (Postfix) with ESMTP id 15AFFA706 for ; Fri, 12 Dec 2014 07:24:41 -0700 (MST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=elyograg.org; h= content-transfer-encoding:content-type:content-type:in-reply-to :references:subject:subject:mime-version:user-agent:from:from :date:date:message-id:received:received; s=mail; t=1418394280; bh=putzEWjvfN1hnFoV6Xto0OyqGWS/lKHv+LmXuSfGrjQ=; b=eokTuLEcaNSL EzYGkv/RXNKnB7Jt62n/Wv9Hc9mUD3yKvnoTF4o5GAxtRXQR+w2YRpRWgqjxYrie y4JoJx+iK9bHcXu9wT5jymnXj2pMYvQbtFGtDPxpTRiYmvrgEPjkyEy2DnrZDeY6 6YGFfbzOJa9F5FTlXGhYd1warUXhCM8= X-Virus-Scanned: Debian amavisd-new at frodo.elyograg.org Received: from frodo.elyograg.org ([127.0.0.1]) by localhost (frodo.elyograg.org [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id QL7kIlK+eGNX for ; Fri, 12 Dec 2014 07:24:40 -0700 (MST) Received: from [192.168.1.102] (102.int.elyograg.org [192.168.1.102]) (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: elyograg@elyograg.org) by frodo.elyograg.org (Postfix) with ESMTPSA id 86B3EA6F4 for ; Fri, 12 Dec 2014 07:24:40 -0700 (MST) Message-ID: <548AFAA6.9030306@elyograg.org> Date: Fri, 12 Dec 2014 07:24:38 -0700 From: Shawn Heisey User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: solr-user@lucene.apache.org Subject: Re: [Hep] tab delimited gz file indexing steps References: In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org On 12/11/2014 11:56 PM, Sithik wrote: > I have a compressed text file (gz) which holds tab delimited data. Is it > possible for me to index this file directly without doing any pre > processing of uncompressing the file on my own? if so, can you please tell > me the steps/config changes I am supposed to follow. The CSV update handler can work with tab-delimited files. https://wiki.apache.org/solr/UpdateCSV#Tab-delimited_importing I think you probably do need to uncompress it with gzip before Solr can do anything with it. Thanks, Shawn