Re: [Multiple] RSS Feeds at a time...

2010-12-12 Thread Ahmet Arslan
> What else am I missing here because the reload-config > command does not seem > to be working. Any ideas would be great! solr/dataimport?command=reload-config should return the message Configuration Re-loaded sucessfully if everything went well. May be you can check that after each reload. May

Re: [Multiple] RSS Feeds at a time...

2010-12-12 Thread Adam Estrada
Hi Ahmet, This is a great idea but still does not appear to be working correctly. The idea is that I want to be able to add an RSS feed and then index that feed on a schedule. My C# method looks something like this. public ActionResult Index() { try { H

Re: [Multiple] RSS Feeds at a time...

2010-12-11 Thread Adam Estrada
You are da man! w00t! adam On Sat, Dec 11, 2010 at 4:48 PM, Ahmet Arslan wrote: > > I found that you can have a single config file that can > > have several > > entities in it. My question now is how can I add entities > > without restarting > > the Solr service? > > You mean changing and re-lo

Re: [Multiple] RSS Feeds at a time...

2010-12-11 Thread Ahmet Arslan
> I found that you can have a single config file that can > have several > entities in it. My question now is how can I add entities > without restarting > the Solr service? You mean changing and re-loading xml config file? dataimport?command=reload-config http://wiki.apache.org/solr/DataImportH

Re: [Multiple] RSS Feeds at a time...

2010-12-11 Thread Adam Estrada
Lance, I found that you can have a single config file that can have several entities in it. My question now is how can I add entities without restarting the Solr service? It doesn't really work otherwise but it looks like it should becasue we call the /dataimport handler after the entire applicati

Re: [Multiple] RSS Feeds at a time...

2010-12-10 Thread Lance Norskog
There is I believe no way to do this without separate copies of your script. Each 'handler=/dataimport' has to refer to a separate config file. You can make several copies and name them config1.xml, config2.xml etc. You'll have to call each one manually, so you have to manage your own thread pool.

[Multiple] RSS Feeds at a time...

2010-12-10 Thread Adam Estrada
All, Right now I am using the default DIH config that comes with the Solr examples. I update my index using the dataimport handler here http://localhost:8983/solr/admin/dataimport.jsp?handler=/dataimport This works fine but I want to be able to index more than just one feed at a time and more im