Re: Getting started with Solr

2015-03-01 Thread Baruch Kogan
OK, got it, works now. Maybe you can advise on something more general? I'm trying to use Solr to analyze html data retrieved with Nutch. I want to crawl a list of webpages built according to a certain template, and analyze certain fields in their HTML (identified by a span class and consisting of

Re: Getting started with Solr

2015-02-28 Thread Baruch Kogan
Thanks for bearing with me. I start Solr with `bin/solr start -e cloud' with 2 nodes. Then I get this: *Welcome to the SolrCloud example!* *This interactive session will help you launch a SolrCloud cluster on your local workstation.* *To begin, how many Solr nodes would you like to run in your

Re: Getting started with Solr

2015-02-26 Thread Erik Hatcher
I’m sorry, I’m not following exactly. Somehow you no longer have a gettingstarted collection, but it is not clear how that happened. Could you post the exact script steps you used that got you this error? What collections/cores does the Solr admin show you have?What are the results of

Re: Getting started with Solr

2015-02-26 Thread Baruch Kogan
Oh, I see. I used the start -e cloud command, then ran through a setup with one core and default options for the rest, then tried to post the json example again, and got another error: buntu@ubuntu-VirtualBox:~/crawler/solr$ bin/post -c gettingstarted example/exampledocs/*.json /usr/lib/jvm/java-7-

Re: Getting started with Solr

2015-02-26 Thread Erik Hatcher
How did you start Solr? If you started with `bin/solr start -e cloud` you’ll have a gettingstarted collection created automatically, otherwise you’ll need to create it yourself with `bin/solr create -c gettingstarted` — Erik Hatcher, Senior Solutions Architect http://www.lucidworks.com

Re: Getting started with solr 4.2 and cassandra

2013-04-01 Thread Otis Gospodnetic
Hi, Solr doesn't have anything like ES River. DIH (DataImportHandler) feels like the closest thing in Solr, though it's not quite the same thing. DIH pulls in data like a typical River does, but most people have external indexers that push data into Solr using one of its client libraries to talk

Re: Getting started with solr 4.2 and cassandra

2013-04-01 Thread Jack Krupansky
ansky -Original Message- From: Utkarsh Sengar Sent: Monday, April 01, 2013 7:41 PM To: solr-user@lucene.apache.org Subject: Re: Getting started with solr 4.2 and cassandra Thanks for the reply. So DSE is one of the options and I am looking into that too. Although, before diving into solr+cass

Re: Getting started with solr 4.2 and cassandra

2013-04-01 Thread Utkarsh Sengar
Thanks for the reply. So DSE is one of the options and I am looking into that too. Although, before diving into solr+cassandra integration (which comes out of the box with DSE). I am just trying to setup a solr instance on my local machine without the bloat the "example" solr instance has to offer

Re: Getting started with solr 4.2 and cassandra

2013-04-01 Thread Jack Krupansky
You might want to check out DataStax Enterprise, which actually integrates Cassandra and Solr. You keep the data in Cassandra, but as data is added and updated and deleted, the Solr index is automatically updated in parallel. You can add and update data and query using either the Cassandra API o

Re: Getting started with indexing a database

2012-01-15 Thread Rakesh Varna
Hi Mike, Can you try removing ' from the nested entities? Just keep it in the top level entity. Regards, Rakesh Varna On Wed, Jan 11, 2012 at 7:26 AM, Gora Mohanty wrote: > On Tue, Jan 10, 2012 at 7:09 AM, Mike O'Leary wrote: > [...] > > My data-config.xml file looks like this: > > > > >

Re: Getting started with indexing a database

2012-01-11 Thread Gora Mohanty
On Tue, Jan 10, 2012 at 7:09 AM, Mike O'Leary wrote: [...] > My data-config.xml file looks like this: > > >                url="jdbc:mysql://localhost:3306/bioscope" user="db_user" > password=""/> >   >                deltaQuery="SELECT doc_id FROM bioscope.docs where last_modified > > '${datai

Re: Getting started with indexing a database

2012-01-11 Thread Erick Erickson
I'm not going to be much help here since DIH is a mystery to me, I usually go with a SolrJ program when DIH gets beyond simple cases. But have you seen: http://wiki.apache.org/solr/DataImportHandler#interactive It's a tool that helps you see what's going on with your query. Best Erick On Mon, Ja

Re: getting started with Solr Flare

2011-10-12 Thread Chris Hostetter
: but run into a problem at step 4 : : Launch Solr: : cd ; java -Dsolr.solr.home= -jar start.jar : : where Solr complains that it can't find solrconfig.xml in either the : classpath or the solr-ruby home dir. Can anyone help me disentangle this? what exactly was the command line you executed? w

RE: Getting started with Velocity

2011-07-06 Thread Chip Calhoun
ssage- From: Way Cool [mailto:way1.wayc...@gmail.com] Sent: Friday, July 01, 2011 5:51 PM To: solr-user@lucene.apache.org Subject: Re: Getting started with Velocity By default, browse is using the following config: explicit velocity browse layout

Re: Getting started with Velocity

2011-07-01 Thread Way Cool
By default, browse is using the following config: explicit velocity browse layout Solritas edismax *:* 10 *,score text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4 text,fea

Re: getting started

2011-06-16 Thread Sascha SZOTT
Hi Mari, it depends ... * How many records are stored in your MySQL databases? * How often will updates occur? * How many db records / index documents are changed per update? I would suggest to start with a single Solr core first. Thereby, you can concentrate on the basics and do not need to d

Re: getting started

2011-06-16 Thread Jonathan Rochkind
On 6/16/2011 4:41 PM, Mari Masuda wrote: One reservation I have is that eventually we would like to be able to type in "Iraq" and find records across all of the collections at once instead of having to search each collection separately. Although I don't know anything about it at this stage, I

Re: Getting started with writing parser

2011-01-25 Thread Gora Mohanty
On Tue, Jan 25, 2011 at 3:46 PM, Dinesh wrote: > > no i actually changed the directory to mine where i stored the log files.. it > is /home/exam/apa..solr/example/exampledocs > > i specified it in a solr schema.. i created an DataImportHandler for that in > try.xml.. then in that i changed that fi

Re: Getting started with writing parser

2011-01-25 Thread Dinesh
no i actually changed the directory to mine where i stored the log files.. it is /home/exam/apa..solr/example/exampledocs i specified it in a solr schema.. i created an DataImportHandler for that in try.xml.. then in that i changed that file name to sample.txt that new try.xml is http://pastebin

Re: Getting started with writing parser

2011-01-25 Thread Gora Mohanty
On Tue, Jan 25, 2011 at 11:44 AM, Dinesh wrote: > > i don't even know whether the regex expression that i'm using for my log is > correct or no.. If it is the same try.xml that you posted earlier, it is very likely not going to work. You seem to have just cut and pasted entries from the Hathi Tru

Re: Getting started with writing parser

2011-01-25 Thread Dinesh
i want to take the month, time, DHCPMESSAGE, from_mac, gateway_ip, net_ADDR - DINESHKUMAR . M I am neither especially clever nor especially gifted. I am only very, very curious. -- View this message in context: http://lucene.472066.n3.nabble.com/Getting-started-with-writing-parser-tp2278092

Re: Getting started with writing parser

2011-01-25 Thread Gora Mohanty
On Tue, Jan 25, 2011 at 10:05 AM, Dinesh wrote: > > http://pastebin.com/CkxrEh6h > > this is my sample log [...] And, which portions of the log text do you want to preserve? Does it go into Solr as a single error message, or do you want to separate out parts of it. Regards, Gora

Re: Getting started with writing parser

2011-01-24 Thread Dinesh
i don't even know whether the regex expression that i'm using for my log is correct or no.. i very much worried i couldn't proceed in my project already 1/3 rd of the timing is over.. please help.. this is just the first stage.. after this i have ti setup up all the log to be redirected to SYSLOG

Re: Getting started with writing parser

2011-01-24 Thread Dinesh
http://pastebin.com/CkxrEh6h this is my sample log - DINESHKUMAR . M I am neither especially clever nor especially gifted. I am only very, very curious. -- View this message in context: http://lucene.472066.n3.nabble.com/Getting-started-with-writing-parser-tp2278092p2326646.html Sent from

Re: Getting started with writing parser

2011-01-24 Thread Gora Mohanty
On Mon, Jan 24, 2011 at 2:28 PM, Dinesh wrote: > > my solrconfig.xml > > http://pastebin.com/XDg0L4di > > my schema.xml > > http://pastebin.com/3Vqvr3C0 > > my try.xml > > http://pastebin.com/YWsB37ZW [...] OK, thanks for the above. You also need to: * Give us a sample of your log files (for cry

Re: Getting started with writing parser

2011-01-24 Thread Dinesh
my solrconfig.xml http://pastebin.com/XDg0L4di my schema.xml http://pastebin.com/3Vqvr3C0 my try.xml http://pastebin.com/YWsB37ZW - DINESHKUMAR . M I am neither especially clever nor especially gifted. I am only very, very curious. -- View this message in context: http://lucene.472066.

Re: Getting started with writing parser

2011-01-23 Thread Gora Mohanty
On Mon, Jan 24, 2011 at 11:54 AM, Dinesh wrote: > > i did all the configurations correctly.. previously i missed a configuration > file Sorry, what are you trying to configure now? The built-in Solr example, or the setup for your log files? Did you get the built-in Solr example to work? How were

Re: Getting started with writing parser

2011-01-23 Thread Dinesh
i did all the configurations correctly.. previously i missed a configuration file after adding it i'm getting a new error called Unknown FieldType: 'string' used in QueryElevationComponent i found it was defined in solrconfig.xml i didn't change any of the line in that but i don't know why am i

Re: Getting started with writing parser

2011-01-23 Thread Gora Mohanty
On Mon, Jan 24, 2011 at 11:18 AM, Dinesh wrote: > > i tried those examples.. is it compuslory that i should make it into XML, how > does it index CSV.. You will have to convert either into XML, or CSV, but neither of those should be too difficult. > should i post my e

Re: Getting started with writing parser

2011-01-23 Thread Dinesh
i tried those examples.. is it compuslory that i should make it into XML, how does it index CSV.. should i post my entire schema that i made it myself and the text file that i tried to index.. - DINESHKUMAR . M I am neither especially clever nor especially gifted. I am only very, very curious

Re: Getting started with writing parser

2011-01-23 Thread Gora Mohanty
On Mon, Jan 24, 2011 at 10:47 AM, Dinesh wrote: > > i tried editing the schema file and indexing my own log..  the error that i > got is > > root@karunya-desktop:/home/karunya/apache-solr-1.4.1/example/exampledocs# > java -jar post.jar sample.txt > SimplePostTool: version 1.2 > SimplePostTool: WAR

Re: Getting started with writing parser

2011-01-23 Thread Dinesh
i tried editing the schema file and indexing my own log.. the error that i got is root@karunya-desktop:/home/karunya/apache-solr-1.4.1/example/exampledocs# java -jar post.jar sample.txt SimplePostTool: version 1.2 SimplePostTool: WARNING: Make sure your XML documents are encoded in UTF-8, other

Re: Getting started with writing parser

2011-01-17 Thread Gora Mohanty
On Tue, Jan 18, 2011 at 11:59 AM, Dinesh wrote: > > how to write a parser program that will convert log files into XML.. [...] There is no point to starting multiple threads on this issue, hoping that someone will somehow solve your problem. You have been given the following: * Links that should

RE: getting started - books/in dept material

2010-09-06 Thread Dennis Gearon
, Markus Jelsma wrote: > From: Markus Jelsma > Subject: RE: getting started - books/in dept material > To: solr-user@lucene.apache.org > Date: Monday, September 6, 2010, 2:51 PM > Did you miss the wiki? > > http://wiki.apache.org/solr/SolrResources > > >   >

RE: getting started - books/in dept material

2010-09-06 Thread Markus Jelsma
Did you miss the wiki? http://wiki.apache.org/solr/SolrResources   -Original message- From: Dennis Gearon Sent: Mon 06-09-2010 22:05 To: solr-user@lucene.apache.org; Subject: getting started - books/in dept material I really don't want to understand the code that is IN Solr/Lucene. S

Re: Getting started with DIH

2009-11-08 Thread Noble Paul നോബിള്‍ नोब्ळ्
The tried and tested strategy is to post the question in this mailing list w/ your data-config.xml. On Mon, Nov 9, 2009 at 1:08 PM, Michael Lackhoff wrote: > On 09.11.2009 08:20 Noble Paul നോബിള്‍ नोब्ळ् wrote: > >> It just started of as a single page and the features just got piled up >> and th

Re: Getting started with DIH

2009-11-08 Thread Michael Lackhoff
On 09.11.2009 08:20 Noble Paul നോബിള്‍ नोब्ळ् wrote: > It just started of as a single page and the features just got piled up > and the page just bigger. we are thinking of cutting it down to > smaller more manageable pages Oh, I like it the way it is as one page, so that the browser full text s

Re: Getting started with DIH

2009-11-08 Thread Noble Paul നോബിള്‍ नोब्ळ्
On Mon, Nov 9, 2009 at 12:43 PM, Michael Lackhoff wrote: > On 09.11.2009 06:54 Erik Hatcher wrote: > >> The brackets probably come from it being transformed as an array.  Try >> saying multiValued="false" on your specifications. > > Indeed. Thanks Erik that was it. > > My first steps with DIH sho

Re: Getting started with DIH

2009-11-08 Thread Noble Paul നോബിള്‍ नोब्ळ्
This one is kind of a hack. So I have opened an issue. https://issues.apache.org/jira/browse/SOLR-1547 On Mon, Nov 9, 2009 at 12:43 PM, Michael Lackhoff wrote: > On 09.11.2009 06:54 Erik Hatcher wrote: > >> The brackets probably come from it being transformed as an array.  Try >> saying multiVa

Re: Getting started with DIH

2009-11-08 Thread Michael Lackhoff
On 09.11.2009 06:54 Erik Hatcher wrote: > The brackets probably come from it being transformed as an array. Try > saying multiValued="false" on your specifications. Indeed. Thanks Erik that was it. My first steps with DIH showed me what a powerful tool this is but although the DIH wiki page

Re: Getting started with DIH

2009-11-08 Thread Erik Hatcher
The brackets probably come from it being transformed as an array. Try saying multiValued="false" on your specifications. Erik On Nov 9, 2009, at 12:34 AM, Michael Lackhoff wrote: On 08.11.2009 16:56 Michael Lackhoff wrote: What didn't work but looks like the potentially best solut

Re: Getting started with DIH

2009-11-08 Thread Michael Lackhoff
On 08.11.2009 16:56 Michael Lackhoff wrote: > What didn't work but looks like the potentially best solution is to fill > the id in my data-config by using the link twice: > > > This would be a definition just for this single data source but I don't > get any docs (also no error message). No

Re: Getting started with DIH

2009-11-08 Thread Lucas F. A. Teixeira
If I'm not wrong, you can have several entities in one document, but just one datasource configured. []sm Lucas Frare Teixeira .·. - lucas...@gmail.com - lucastex.com.br - blog.lucastex.com - twitter.com/lucastex On Sun, Nov 8, 2009 at 3:36 PM, Michael Lackhoff wrote: > On 08.11.2009 17:03 Lu

Re: Getting started with DIH

2009-11-08 Thread Michael Lackhoff
On 08.11.2009 17:03 Lucas F. A. Teixeira wrote: > You have an example on using mail dih in solr distro Don't know where my eyes were. Thanks! When I was at it I looked at the schema.xml for the rss example and it uses "link" as UniqueKey, which is of course good, if you only have rss items but n

Re: Getting started with DIH

2009-11-08 Thread Lucas F. A. Teixeira
You have an example on using mail dih in solr distro []s, Lucas Frare Teixeira .·. - lucas...@gmail.com - lucastex.com.br - blog.lucastex.com - twitter.com/lucastex On Sun, Nov 8, 2009 at 1:56 PM, Michael Lackhoff wrote: > I would like to start using DIH to index some RSS-Feeds and mail folder

Re: getting started

2009-04-03 Thread Chris Hostetter
: http://lucene.apache.org/solr/tutorial.html#Getting+Started : : link - lucene QueryParser syntax fixed in svn, ... the site should update in about 30 minutes. thanks for pointing this out. -Hoss

Re: getting started

2009-03-25 Thread Erick Erickson
OK, now I'll turn it over to the folks who actually maintain that site . Meanwhile, here's the link to the 2.4.1 query syntax. http://lucene.apache.org/java/2_4_1/queryparsersyntax.html Best Erick On Wed, Mar 25, 2009 at 2:00 PM, nga pham wrote: > http://lucene.apache.org/solr/tutorial.html#G

Re: getting started

2009-03-25 Thread nga pham
http://lucene.apache.org/solr/tutorial.html#Getting+Started link - lucene QueryParser syntax is not working On Wed, Mar 25, 2009 at 10:48 AM, nga pham wrote: > Oops my mistake. Sorry for the trouble > > On Wed, Mar 25, 2009 at 10:42 AM, Erick Erickson < > erickerick...@gmail.com> wrote: > >>

Re: getting started

2009-03-25 Thread nga pham
Oops my mistake. Sorry for the trouble On Wed, Mar 25, 2009 at 10:42 AM, Erick Erickson wrote: > Which links? Please be as specific as possible. > > Erick > > On Wed, Mar 25, 2009 at 1:20 PM, nga pham wrote: > > > Hi > > > > Some of the getting started link dont work. Can you please enable it?

Re: getting started

2009-03-25 Thread Erick Erickson
Which links? Please be as specific as possible. Erick On Wed, Mar 25, 2009 at 1:20 PM, nga pham wrote: > Hi > > Some of the getting started link dont work. Can you please enable it? >

Re: Getting started with Solr

2008-09-24 Thread Mark Miller
How can I setup to run Solr as a service, so I don't need to have a SSH connection open? Sorry for being stupid here btw. This is kind of independent from solr. You have to look how to do it for the OS you are running on. With Ubuntu, you could just launch solr with nohup to keep it from stop