Re: Migrate Legacy Solr Cores to SolrCloud

2020-12-05 Thread Erick Erickson
First thing I’d do is run one of the examples to insure you have Zookeeper set up etc. You can create a collection that uses the default configset. Once that’s done, start with ‘SOLR_HOME/solr/bin/solr zk upconfig’. There’s extensive help if you just type “bin/solr zk -help”. You give it the pat

Migrate Legacy Solr Cores to SolrCloud

2020-12-05 Thread Jay Mandal
Hello All, Please can some one from the Solr Lucene Community Provide me the Steps on how to migrate an existing Solr legacy Core, data and conf(manage schema,solrconfig.xml files to SolrCloud configuration with collections and shards and where to copy the existing files to reuse the data in the

Re: http://localhost:8983/solr/#/~cores

2019-10-29 Thread Erick Erickson
Follow the instructions here: http://lucene.apache.org/solr/community.html#mailing-lists-irc. You must use the _exact_ same e-mail as you used to subscribe. If the initial try doesn't work and following the suggestions at the "problems" link doesn't work for you, let us know. But note you need

Re: http://localhost:8983/solr/#/~cores

2019-10-29 Thread Eric Katherman
unsubscribe On Tue, Oct 29, 2019 at 4:34 AM UMA MAHESWAR wrote: > hi all, > SolrCore Initialization Failures > {{core}}: {{error}} > Please check your logs for more information > > > {{exception.msg}} > > here my log file > 2019-10-29 06:03:30.995 INFO (main) [ ] o.e.j.u.log Logging initializ

Re: http://localhost:8983/solr/#/~cores

2019-10-29 Thread Erick Erickson
There’s no exception message there. Please do a little work when asking for this kind of help to narrow down what we should be looking at and present it in a manner that helps us help you with the least effort, this is after all a volunteer list. You might want to review: https://cwiki.apache

http://localhost:8983/solr/#/~cores

2019-10-29 Thread UMA MAHESWAR
hi all, SolrCore Initialization Failures {{core}}: {{error}} Please check your logs for more information {{exception.msg}} here my log file 2019-10-29 06:03:30.995 INFO (main) [ ] o.e.j.u.log Logging initialized @1449ms to org.eclipse.jetty.util.log.Slf4jLog 2019-10-29 06:03:31.302 INFO (ma

Re: How to have the same SOLR cores for both 8983 and 8984 ports

2019-01-21 Thread Jan Høydahl
As I said before: "For us to help you more, you will have to provide more details on how you have installed and started Solr, where your SOLR_HOME is located etc". I am guessing that you start Solr with two different SOLR_HOMEs and thus will not see the existing cores. But then I don't even kno

Re: How to have the same SOLR cores for both 8983 and 8984 ports

2019-01-18 Thread Muniraj M
Hi Jan, Yes we would like to have the SOLR to be running only on 8984 port however our concern is we are not able to see any cores created when the SOLR was running on 8983. Before enabling SSL, we were running our SOLR on port 8983 with 3 different cores. After enabling SSL, SOLR is now running

Re: How to have the same SOLR cores for both 8983 and 8984 ports

2019-01-07 Thread Jan Høydahl
Solr runs on only one port at a time, so there must be some misunderstanding here. If you have Solr running on both ports at the same time then you have simply started a new instance, not reconfigured the previous. For us to help you more, you will have to provide more details on how you have in

How to have the same SOLR cores for both 8983 and 8984 ports

2019-01-06 Thread Muniraj M
Hi, I am using Apache SOLR 6.6.5 as my search engine running on port 8983. I just wanted to enable SSL for solr and followed this guide to make it work under 8984 port with SSL. Here my problem is that I am not able to see any cores on

Re: SOLR cores are getting locked

2017-10-17 Thread Gunalan V
Thanks Erik! I have created separate solr home directory for each solrclound node and looks like now it's working fine. GVK On Mon, Oct 16, 2017 at 9:05 AM, Erick Erickson wrote: > bin/solr start -help > > will give you a lot of info. But yes, the -s option is what you should > use. Here's on

Re: SOLR cores are getting locked

2017-10-16 Thread Erick Erickson
bin/solr start -help will give you a lot of info. But yes, the -s option is what you should use. Here's one of my batch files I used to start various cloud examples: bin/solr start -c -z localhost:2181 -p 898 -s example/cloud/node1/solr On Sun, Oct 15, 2017 at 11:48 PM, Gunalan V wrote: > Thank

Re: SOLR cores are getting locked

2017-10-15 Thread Gunalan V
Thanks Erick, I'm using the one VM where all SOLRCloud and Zookeeper nodes are running. I have two solr nodes in solrcloud. Just wanted to check do I need to create different solr home directory using -s param for each SOLR nodes ? If yes kindly share me some documentation to configure separate

Re: SOLR cores are getting locked

2017-10-12 Thread Erick Erickson
You might be hitting SOLR-11297, which is fixed in Solr 7.0.1. The patch should back-port cleanly to 6x versions though. Best, Erick On Thu, Oct 12, 2017 at 12:14 AM, Gunalan V wrote: > Hello, > > I'm using SOLR 6.5.1 and I have 2 SOLR nodes in SOLRCloud and created > collection using the below

SOLR cores are getting locked

2017-10-12 Thread Gunalan V
Hello, I'm using SOLR 6.5.1 and I have 2 SOLR nodes in SOLRCloud and created collection using the below [1] and it was created successfully during initial time but next day I tried to restart the nodes in SOLR cloud. When I start the first node the collection health is active but when I start the

How to check if solr cores have any issues and the node needs to be restarted

2017-09-11 Thread swathi
Hello Team, I am trying to restart a node that has issues with the cores. I was hoping to use CORE STATUS api and check whether it has any cores listed in the initFailures or not. Since all such cores do not respond to ping and receive traffic, I want to put effort into finding out the reason fro

Re: Creating Solr cores dynamically with config files using solrj

2016-11-10 Thread Gimantha Bandara
Thank you very much Shawn! Will give it a try.. On Friday, November 11, 2016, Shawn Heisey wrote: > On 11/9/2016 11:04 PM, Gimantha Bandara wrote: > > I have requirement where multiple solr cores need to be created with > > different schema. Using CoreAdminAPI, I can create a c

Re: Creating Solr cores dynamically with config files using solrj

2016-11-10 Thread Shawn Heisey
On 11/9/2016 11:04 PM, Gimantha Bandara wrote: > I have requirement where multiple solr cores need to be created with > different schema. Using CoreAdminAPI, I can create a core dynamically > but, I have to create a folder and copy the schema.xml and > solrconfig.xml there before invo

Creating Solr cores dynamically with config files using solrj

2016-11-09 Thread Gimantha Bandara
Hi all, I have requirement where multiple solr cores need to be created with different schema. Using CoreAdminAPI, I can create a core dynamically but, I have to create a folder and copy the schema.xml and solrconfig.xml there before invoking the API. Is there a way to create solr cores with some

All solr cores in a solr server are down. Cannot find anything from log.

2016-09-12 Thread forest_soup
: lib (resolved as: /mnt/solrdata1/solr/home/lib). -- View this message in context: http://lucene.472066.n3.nabble.com/All-solr-cores-in-a-solr-server-are-down-Cannot-find-anything-from-log-tp4295679.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solrcloud 4.8.1 - Solr cores reload

2015-12-12 Thread Erick Erickson
Right. What's happening is, essentially what used to be happening in your custom code where individual core reload commands were being sent. Except it's all happening in Solr. To whit: 1> the code looks at the collection state 2> for each replica it sends a core admin API reload command to the

Re: Solrcloud 4.8.1 - Solr cores reload

2015-12-11 Thread Vincenzo D'Amore
Thanks for your suggestion Erick, I'm changing the code and I'll use the Collections API RELOAD. I have done few test changing synonyms dictionary or solrconfig and everything works fine. Well, I think you already know, but looking at solr.log file after the collections api reload call, I have see

Re: Solrcloud 4.8.1 - Solr cores reload

2015-12-11 Thread Erick Erickson
You should absolutely always use the Collection API rather than any core admin API if at all possible. If for no other reason than your client will be _lots_ simpler (i.e. you don't have to find all the replicas and issue the core admin RELOAD command for each one). I'm not entirely sure whether t

Solrcloud 4.8.1 - Solr cores reload

2015-12-11 Thread Vincenzo D'Amore
Hi all, in day by day work, often I need to change the solr configurations files. Often adding new synonyms, changing the schema or the solrconfig.xml. Everything is stored in zookeeper. But I have inherited a piece of code that, after every change, reload all the cores using CoreAdmin API. Now

Add replication to http://localhost:8983/solr/#/~cores/extinfo

2015-10-18 Thread William Bell
It would be very useful to add a button to replicate (like we have optimize) on http://localhost:8983/solr/#/~cores/extinfo Also a link to the core would be great too -- Bill Bell billnb...@gmail.com cell 720-256-8076

Re: Migrating from solr cores to collections

2015-07-15 Thread tedsolr
After playing with SolrCloud I answered my own question: multiple collections can live on the same node. Following the how-to in the solr-ref-guide was getting me confused. -- View this message in context: http://lucene.472066.n3.nabble.com/Migrating-from-solr-cores-to-collections

Re: Migrating from solr cores to collections

2015-07-14 Thread Shawn Heisey
On 7/14/2015 2:39 PM, tedsolr wrote: > I am in the process of migrating from a single Solr instance, with multiple > cores, to the SolrCloud. My product uses cores to physically separate our > customers' data: CocaCola has its own core, Pepsi has its own, etc. I want > to keep that physical separat

Migrating from solr cores to collections

2015-07-14 Thread tedsolr
is it better to have one massive JVM per physical server, or lots and lots of small ones? Thanks! running 4.10 now but considering upgrading to 5.x -- View this message in context: http://lucene.472066.n3.nabble.com/Migrating-from-solr-cores-to-collections-tp4217346.html Sent from the Solr -

Re: Distributed search across Solr cores in a collection - NPE

2015-01-14 Thread Jaikit Savla
It was because I did not have unique id's in my index. I added that and it worked. Also it is mentioned as one of the requirement for Distributed Search. Thanks,Jaikit On Wednesday, January 14, 2015 1:53 AM, Jaikit Savla wrote: Folks, I have set up 3 cores in a single collection a

Re: Distributed search across Solr cores in a collection - NPE

2015-01-14 Thread Mikhail Khludnev
Jaikit, uniq key is mandatory for distributed search. if most of your docs have ids assigned, you can drop remaining ones by adding something like ..&fq=id:[* TO *] On Wed, Jan 14, 2015 at 12:53 PM, Jaikit Savla < jaikit.sa...@yahoo.com.invalid> wrote: > Folks, > I have set up 3 cores in a single

Distributed search across Solr cores in a collection - NPE

2015-01-14 Thread Jaikit Savla
Folks, I have set up 3 cores in a single collection and they all have same schema but different index. I have set unique Id required field to false. When I run query against single core, it works fine. But when I add the shard param and point to different core than request fails with NPE. I looke

Re: How to dynamically create Solr cores with schema

2014-11-10 Thread Andreas Hubold
Hi Alex, Solr 4.10 has support to create fields (of already defined types) with its Schema API: https://cwiki.apache.org/confluence/display/solr/Schema+API#SchemaAPI-Modifytheschema But one has to specify an initial schema.xml which is shared forever between all cores created from the same co

Re: How to dynamically create Solr cores with schema

2014-11-08 Thread Jorge Luis Betancourt González
ynamically create Solr cores with schema For more advanced dynamic fields refer dynamicField elements convention patterns for fields from the below schema.xml http://svn.apache.org/repos/asf/lucene/dev/trunk/solr/server/solr/configsets/basic_configs/conf/schema.xml solr create core api can be referred

Re: How to dynamically create Solr cores with schema

2014-11-08 Thread Anurag Sharma
For more advanced dynamic fields refer dynamicField elements convention patterns for fields from the below schema.xml http://svn.apache.org/repos/asf/lucene/dev/trunk/solr/server/solr/configsets/basic_configs/conf/schema.xml solr create core api can be referred to create a core dynamically. e.g. c

Re: How to dynamically create Solr cores with schema

2014-11-07 Thread Alexandre Rafalovitch
The usual solution to that is to have dynamic fields with suffixes indicating the types. So, your int fields are mapped to *_i, your date fields to *_d. Solr has schemaless support, but it is auto-detect for now. Creating fields of particular types via API I think is in JIRA on the trunk for 5.0.

Re: How to dynamically create Solr cores with schema

2014-11-07 Thread Andreas Hubold
Can somebody help, please? I don't think my use-case is so uncommon. I read this JIRA comment where the idea of using config sets as templates was brought up https://issues.apache.org/jira/browse/SOLR-4478?focusedCommentId=13711098&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-ta

How to dynamically create Solr cores with schema

2014-11-06 Thread Andreas Hubold
Hi, I have a use-case where Java applications need to create Solr indexes dynamically. Schema fields of these indexes differ and should be defined by the Java application upon creation. So I'm trying to use the Core Admin API [1] to create new cores and the Schema API [2] to define fields. W

Re: Solr - Cores not initialised

2014-05-26 Thread Jack Krupansky
f the XML elements. It appears that you mangled that message as well! Feel free to post the complete message here as well. -- Jack Krupansky -Original Message- From: Manikandan Saravanan Sent: Monday, May 26, 2014 1:52 AM To: solr-user@lucene.apache.org Cc: Varuna Venkatesh Subject

Solr - Cores not initialised

2014-05-25 Thread Manikandan Saravanan
Hi, I’m running Solr 4.6.0 on an Ubuntu box. I recently made the following changes: 1. I edited Schema.xml to index my data by a column called timestamp. 2. I then ran the reload procedure as mentioned here  https://wiki.apache.org/solr/CoreAdmin#RELOAD After that, when I restarted Solr, I get a

Re: Solr Cores going down in Solrcloud 4.3.1

2014-03-07 Thread Veera Raghavan
I did more deep diving and found out the following exception while it tries to replicate. 135531514-ERROR - 2014-03-07 23:08:35.454; org.apache.solr.common.SolrException; SnapPull failed :org.apache.lucene.store.AlreadyClosedException: Already closed 135531665- at org.apache.solr.core.CachingDirec

Re: Solr Cores going down in Solrcloud 4.3.1

2014-03-07 Thread Veera Raghavan
Forgot to attach the log during the recovery failed solr.log.129:1625677:ERROR - 2014-03-06 13:29:31.909; org.apache.solr.common.SolrException; Error while trying to recover:org.apache.solr.common.SolrException: Replication for recovery failed. solr.log.129-1625849- at org.apache.solr.cloud.Recove

Solr Cores going down in Solrcloud 4.3.1

2014-03-07 Thread Veera Raghavan
Hi there I have a 6 node solrcloud cluster with 50 collections. All collections are sharded across all the 6 nodes. I am seeing a weird behavior where both the replicas for a shard go to down to go to a "recovering" state and never come back (No specific corelation to writes or reads). I manu

Re: Solr cores across multiple machines

2013-12-17 Thread François Schiettecatte
chine to serving machine? Is there any other > alternatives? > > Regards, > Siva > > > > -- > View this message in context: > http://lucene.472066.n3.nabble.com/Solr-cores-across-multiple-machines-tp4107035.html > Sent from the Solr - User mailing list archi

Solr cores across multiple machines

2013-12-16 Thread sivaprasad
e the SWAP will work between the cores. Based on our setup, any one has any idea how to move the data from indexing machine to serving machine? Is there any other alternatives? Regards, Siva -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-cores-across-multiple-mac

Global .properties file for all Solr cores?

2013-02-08 Thread Hayden Muhl
I've read the documentation about how you can configure a Solr core with a properties file. Is there any way to specify a properties file that will apply to all cores running on a server? Here's my scenario. I have a solr setup where I have two cores, "foo" and "bar". I want to enable replication

Re: Reindex ALL Solr CORES in one GO..

2012-12-27 Thread Ahmet Arslan
> Unfortunately to track the > status of > indexing for a core one need to keeping pinging the server > to check > completion status. Is there a way to get a response from > SOLR once the > indexing is complete ? Yes it is possible : http://wiki.apache.org/solr/DataImportHandler#EventListeners

Re: Reindex ALL Solr CORES in one GO..

2012-12-27 Thread Anupam Bhattacharya
On Wed, Dec 26, 2012 at 7:06 PM, Gora Mohanty wrote: > On 26 December 2012 18:06, Anupam Bhattacharya > wrote: > > Hello Everyone, > > > > Is it possible to schedule full reindexing of all solr cores without > going > > to individually to the DIH screen o

Re: Reindex ALL Solr CORES in one GO..

2012-12-26 Thread Gora Mohanty
On 26 December 2012 18:06, Anupam Bhattacharya wrote: > Hello Everyone, > > Is it possible to schedule full reindexing of all solr cores without going > to individually to the DIH screen of each core ? One could quite easily write a wrapper around Solr's URLs for indexing. You

Re: Limit on SOLR Cores

2012-08-09 Thread Nitin Arora
Any thoughts guys. Your insights will really help if you have already worked on a scenario like this. Thanks in advance Nitin -- View this message in context: http://lucene.472066.n3.nabble.com/Limit-on-SOLR-Cores-tp403p4000299.html Sent from the Solr - User mailing list archive at

Limit on SOLR Cores

2012-08-08 Thread Nitin Arora
p://lucene.472066.n3.nabble.com/Limit-on-SOLR-Cores-tp403.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Solr cores issue

2012-03-28 Thread Sujatha Arun
Isn't it administratively easier with multiple cores instead of multiple webapps?? Regards Sujatha On Tue, Mar 27, 2012 at 6:24 PM, Erick Erickson wrote: > It might be administratively easier to have multiple webapps, but > it shouldn't really matter as far as I know... > > Best > Erick > > On

Re: Solr cores issue

2012-03-27 Thread Erick Erickson
It might be administratively easier to have multiple webapps, but it shouldn't really matter as far as I know... Best Erick On Tue, Mar 27, 2012 at 12:22 AM, Sujatha Arun wrote: > yes ,I must have mis-copied and yes, i do have the conf folder per core > with schema etc ... > > Because of this is

Re: Solr cores issue

2012-03-26 Thread Sujatha Arun
yes ,I must have mis-copied and yes, i do have the conf folder per core with schema etc ... Because of this issue ,we have decided to have multiple webapps with about 50 cores per webapp ,instead of one singe webapp with all 200 cores ,would this make better sense ? what would be your suggestion

Re: Solr cores issue

2012-03-26 Thread Erick Erickson
Shouldn't be. What do your log files say? You have to treat each core as a separate index. In other words, you need to have a core#/conf with the schema matching your core#/data/index directory etc. I suspect you've simply mis-copied something. Best Erick On Mon, Mar 26, 2012 at 8:27 AM, Sujatha

Re: Solr cores issue

2012-03-26 Thread Sujatha Arun
I was migrating to cores from webapp ,and I was copying a bunch of indexes from webapps to respective cores ,when I restarted ,I had this issue where the whole webapp with the cores would not startup and was getting index corrupted message.. In this scenario or in a scenario where there is an issu

Re: Solr cores issue

2012-03-26 Thread Erick Erickson
Index corruption is very rare, can you provide more details how you got into that state? Best Erick On Sun, Mar 25, 2012 at 1:22 PM, Sujatha Arun wrote: > Hello, > > Suppose  I have several cores in a single webapp ,I have issue with Index > beong corrupted in one core  ,or schema /solrconfig of

Solr cores issue

2012-03-25 Thread Sujatha Arun
Hello, Suppose I have several cores in a single webapp ,I have issue with Index beong corrupted in one core ,or schema /solrconfig of one core is not well formed ,then entire webapp refused to load on server restart? Why does this happen? Regards Sujatha

Re: Maybe switching to Solr Cores

2012-03-16 Thread Michael Kuhlmann
would you use to talk me into switching to Solr cores? Different Solr cores already are quite isolated: They use different configs, different caches, different readers, different handlers... In fact, there is not much more common between Solr cores except the solr.xml configuration. One

Maybe switching to Solr Cores

2012-03-16 Thread Mike Austin
I'm trying to understand the difference between multiple Tomcat indexes using context fragments versus using one application with multiple cores? Since I'm currently using tomcat context fragments to run 7 different indexes, could I get help understanding more why I would want to use

Re: Solr Cores

2012-01-29 Thread Erick Erickson
atha Arun >> wrote: >> > > Hello, >> > > >> > > We have in production a number of individual solr Instnaces on a single >> > > JVM.As a result ,we see that the permgenSpace keeps increasing with >> each >> > > additional inst

Re: Solr Cores

2012-01-29 Thread Ranveer Kumar
jatha Arun > wrote: > > > Hello, > > > > > > We have in production a number of individual solr Instnaces on a single > > > JVM.As a result ,we see that the permgenSpace keeps increasing with > each > > > additional instance added. > > > >

Re: Solr Cores

2012-01-24 Thread Sujatha Arun
t; Best > Erick > > On Sun, Jan 22, 2012 at 8:16 PM, Sujatha Arun wrote: > > Hello, > > > > We have in production a number of individual solr Instnaces on a single > > JVM.As a result ,we see that the permgenSpace keeps increasing with each > > additional

Re: Solr Cores

2012-01-23 Thread Erick Erickson
lr Instnaces on a single > JVM.As a result ,we see that the permgenSpace keeps increasing with each > additional instance added. > > I would Like to know ,if we can have solr cores , instead of individual > instances. > > >   - Is there any limit to the number of cores ,for

Solr Cores

2012-01-22 Thread Sujatha Arun
Hello, We have in production a number of individual solr Instnaces on a single JVM.As a result ,we see that the permgenSpace keeps increasing with each additional instance added. I would Like to know ,if we can have solr cores , instead of individual instances. - Is there any limit to the

JEE servlet mapping, security and multiple Solr cores

2011-08-12 Thread Jaeger, Jay - DOT
This is both an FYI for the list so the issue gets documented and a suggestion for the developers. I thought about a JIRA, and would be happy to submit one, but the issue is pretty environment-specific, so I have not done so at this point. In testing Solr 3.3 under WebSphere Application Server

Re: How to create a solr core if no solr cores were created before?

2011-07-14 Thread Chris Hostetter
you need to give us some more info in order to give you meaningful assistance.. 1) what does your solr.xml look like? 2) what files/directories are in pathToSolrHome? 3) what is the full stack trace? : Hi, : : I tried to create a solr core but I always get "No such solr core:"-Exception. : :

Re: How to create a solr core if no solr cores were created before?

2011-07-12 Thread Gabriele Kahlout
if you need the core just for testing then use Solr test framework as in the link. On Tue, Jul 12, 2011 at 10:29 AM, Mark Schoy wrote: > Thanks for your answer, but your answer is a little bit useless for > me. Could you please add more information in addition to this link? > > Do I have to crea

Re: How to create a solr core if no solr cores were created before?

2011-07-12 Thread Mark Schoy
Thanks for your answer, but your answer is a little bit useless for me. Could you please add more information in addition to this link? Do I have to create a "root" core to create other cores? How can I create a "root" core? Manually adding in the solr.xml config? 2011/7/11 Gabriele Kahlout : > h

Re: How to create a solr core if no solr cores were created before?

2011-07-11 Thread Gabriele Kahlout
have a look here [1]. [1] https://issues.apache.org/jira/browse/SOLR-2645?focusedCommentId=13062748&page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-13062748 On Mon, Jul 11, 2011 at 4:46 PM, Mark Schoy wrote: > Hi, > > I tried to create a solr core but I always get

How to create a solr core if no solr cores were created before?

2011-07-11 Thread Mark Schoy
Hi, I tried to create a solr core but I always get "No such solr core:"-Exception. - File home = new File( pathToSolrHome ); File f = new File( home, "solr.xml" ); CoreContainer coreContainer = new CoreContainer(); coreContainer.load( pathToSolrHome, f ); EmbeddedSolrServer server = new Emb

Re: Deploying Solr CORES on OVH Cloud

2011-02-16 Thread Otis Gospodnetic
> Sent: Tue, February 15, 2011 6:08:39 AM > Subject: Re: Deploying Solr CORES on OVH Cloud > > Thanks for your response, but it doesn't help me a whole lot! > > Jetty VS Tomcat? > Ubuntu o Debian? > > What are the pro of solr using? > > > > L

Re: Deploying Solr CORES on OVH Cloud

2011-02-15 Thread Erick Erickson
The usual answer is "whatever you're most comfortable/experienced with". >From my perspective, there's enough to learn getting Solr running and understanding how search works without throwing new environments into the mix... So, I'd pick the one you're most familiar with and use that. If you're no

Re: Deploying Solr CORES on OVH Cloud

2011-02-15 Thread Rosa (Anuncios)
Thanks for your response, but it doesn't help me a whole lot! Jetty VS Tomcat? Ubuntu o Debian? What are the pro of solr using? Le 14/02/2011 23:12, William Bell a écrit : The first two questions are almost like religion. I am not sure we want to start a debate. Core setup is fairly easy. A

Re: Deploying Solr CORES on OVH Cloud

2011-02-14 Thread William Bell
The first two questions are almost like religion. I am not sure we want to start a debate. Core setup is fairly easy. Add a solr.xml file and subdirs one per core (see example/) directory. Make sure you use the right URL for the admin console. On Mon, Feb 14, 2011 at 3:38 AM, Rosa (Anuncios) wro

Deploying Solr CORES on OVH Cloud

2011-02-14 Thread Rosa (Anuncios)
Hi, I'm a bit new in Solr. I'm trying to set up a bunch of server (just for solr) on OVH cloud (http://www.ovh.co.uk/cloud/) and create new cores as needed on each server. First question: What do you recommend: Ubuntu or Debian? I mean in term od performance? Second question: Jetty or Tomc

Re: Creating new Solr cores using relative paths

2010-08-27 Thread Jan Høydahl / Cominvent
Yes, this is really a pain sometimes. I'd prefer a well defined base path, which could be assumed everywhere unless otherwise documented. SolrHome is one natural choice. For backward compat we could add a config in solr(config).xml to easily switch to old behaviour. Also, it makes sense to defi

Re: Creating new Solr cores using relative paths

2010-08-26 Thread Chris Hostetter
: http://localhost:8080/solr/admin/cores : ?action=CREATE : &name=core1 : &instanceDir=core1 : &config=core0/conf/solrconfig.xml : &schema=core0/conf/schema.xml : (core1 is the name for the new core to be created, and I want to use the : config and schema from core0 to create the new core). : : b

Creating new Solr cores using relative paths

2010-08-16 Thread Jay Hill
I'm having trouble getting the core CREATE command to work with relative paths in the solr.xml configuration. I'm working with a layout like this: /opt/solr [this is solr.solr.home: $SOLR_HOME] /opt/solr/solr.xml /opt/solr/core0/ [this is the "template" core] /opt/solr/core0/conf/schema.xml [etc.]

Re: Merging Solr Cores Urgent

2010-04-27 Thread Chris Hostetter
: : The Wiki Documentation says that "Merged" core must exist prior to calling : the merge command : : So I created the "Merged" core and pointed it to some "data dir". : : However even after merging the cores it does still points to the old "data : dir" : : Shouldn't the merge command create a

Merging Solr Cores Urgent

2010-04-23 Thread abhatna...@vantage.com
Hi, I have a Question- Merging Solr Cores The Wiki Documentation says that "Merged" core must exist prior to calling the merge command So I created the "Merged" core and pointed it to some "data dir". However even after merging the cores it does still points to

Re: Backup/restore strategies for Solr cores and "legacy" Lucene applications

2010-04-07 Thread Lance Norskog
The NFS mount has to be done with distributed file locking. I don't know what DFL features are available. OS Native file locking is the default in solrconfig.xml, and I think this should be used in your scenario. But doing this over NFS is not likely to work well. On Tue, Apr 6, 2010 at 6:42 AM,

Backup/restore strategies for Solr cores and "legacy" Lucene applications

2010-04-06 Thread Paolo Castagna
Hi, I have an existing web application which is using Lucene (v2.1.0 and/or v2.4.x) and which I'd like to gradually migrate to Solr. I am already using multiple cores, master/slave replication and SolrJ to re-implement current functionalities. One use case I have is: backup/restore indexes. I a

Re: need help with Solr Cores

2010-03-03 Thread muneeb
m > standard solr.home folder. > > Do i need data folder in each core's directory? and Should i copy/paste > the index folder in each core's directory? > > Thanks for your help in advance!! > > > -- View this message in context: http://old.nabble.com/n

need help with Solr Cores

2010-03-03 Thread muneeb
? and Should i copy/paste the index folder in each core's directory? Thanks for your help in advance!! -- View this message in context: http://old.nabble.com/need-help-with-Solr-Cores-tp27767694p27767694.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Question About Solr Cores

2009-07-11 Thread Shalin Shekhar Mangar
On Fri, Jul 10, 2009 at 11:22 PM, danben wrote: > > What I have seen, however, is that the number of open FDs steadily > increases > with the number of cores opened and files indexed, until I hit whatever > upper bound happens to be set (currently 100k). Raising machine-imposed > limits, using t

Question About Solr Cores

2009-07-10 Thread danben
Hi, I'm building an application that dynamically instantiates a large number of solr cores on a single machine (large would ideally be as high as I can get it, in the millions, if it is possible to do so without significant performance degradation and/or system failure). I already tried

Re: Max no of solr cores supported and how to restrict a query to a particular core?

2009-05-14 Thread KK
Thank you very much. LOL, Its in the same wiki I was told to go through. I've a question regarding creating ofsolr cores on the fly. The wiki says, .Creates a new core and register it. If persistence is enabled (persist=true), the configuration for this new core will be saved in 'solr.xml'. If

Re: Max no of solr cores supported and how to restrict a query to a particular core?

2009-05-14 Thread Noble Paul നോബിള്‍ नोब्ळ्
Solr already supports this . please refer this http://wiki.apache.org/solr/CoreAdmin#head-7ca1b98a9df8b8ca0dcfbfc49940ed5ac98c4a08 ensure that your solr.xml is persistent http://wiki.apache.org/solr/CoreAdmin#head-7508c24c6e2dadad2dfea39b2fba045062481da8 On Thu, May 14, 2009 at 3:43 PM, KK wrote

Re: Max no of solr cores supported and how to restrict a query to a particular core?

2009-05-14 Thread KK
Thank you very much. Got the point. One off the track question, can we automate the creation of new cores[it requires manually editing the solr.xml file as I know, and what about the location of core index directory, do we need to point that manually as well]. After going through the wiki what I fo

Re: Max no of solr cores supported and how to restrict a query to a particular core?

2009-05-14 Thread Noble Paul നോബിള്‍ नोब्ळ्
there is no hard limit on the no:of cores. it is limited by your system's ability to open files and the resources. the queries are automatically sent to appropriate core if your url is htt://host:port//select On Thu, May 14, 2009 at 1:58 PM, KK wrote: > I want to know the maximum no of cores sup

Re: Max no of solr cores supported and how to restrict a query to a particular core?

2009-05-14 Thread Shishir Jain
http://wiki.apache.org/solr/CoreAdmin Best regards, Shishir On Thu, May 14, 2009 at 1:58 PM, KK wrote: > I want to know the maximum no of cores supported by Solr. 1000s or may be > millions all under one solr instance ? > Also I want to know how to redirect a particular query to a particular > c

Max no of solr cores supported and how to restrict a query to a particular core?

2009-05-14 Thread KK
I want to know the maximum no of cores supported by Solr. 1000s or may be millions all under one solr instance ? Also I want to know how to redirect a particular query to a particular core. Actually I'm querying solr from Ajax, so I think there must be some request parameter that says which core we

Re: How can i protect the SOLR Cores?

2008-11-23 Thread Chris Hostetter
: 1) modify web.xml (part of the sources of solr.war, which you'll have to : rebuild) to define the authentication constraints you want. for many servlet containers, this isn't neccessary. Jetty cor example also lets you define security realms in the jetty.xml (there's an example of this com

Re: How can i protect the SOLR Cores?

2008-11-20 Thread Norberto Meijome
On Wed, 19 Nov 2008 22:58:52 -0800 (PST) RaghavPrabhu <[EMAIL PROTECTED]> wrote: > Im using multiple cores and all i need to do is,to make the each core in > secure manner. If i am accessing the particular core via url,it should ask > and validate the credentials say Username & Password for each

Re: How can i protect the SOLR Cores?

2008-11-20 Thread Noble Paul നോബിള്‍ नोब्ळ्
rticular core via url,it should ask > and validate the credentials say Username & Password for each core. > > Most preferable suggestions are welcome!!! > > Thanks in advance > Prabhu.K > -- > View this message in context: > http://www.nabble.com/How-can-i-protect-

Re: Multiple Solr Cores

2007-04-21 Thread Jeff Kavanagh
/ & the test/ patches. > > http://www.nabble.com/file/7971/solr-test.patch solr-test.patch > > http://www.nabble.com/file/7972/solr-src.patch solr-src.patch > > > > This being my first attempt at a contribution, I will humbly welcome any > > comment. > > Regards, > > Henri > > > > -- > View this message in context: http://www.nabble.com/Multiple-Solr-Cores-tf3608399.html#a10106126 > Sent from the Solr - User mailing list archive at Nabble.com. > >

Re: Multiple Solr Cores

2007-04-21 Thread Jeff Kavanagh
/www.nabble.com/file/7972/solr-src.patch solr-src.patch > > This being my first attempt at a contribution, I will humbly welcome any > comment. > Regards, > Henri > -- View this message in context: http://www.nabble.com/Multiple-Solr-Cores-tf3608399.html#a10106126 Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multiple Solr Cores

2007-04-20 Thread Henrib
mbly welcome any > comment. > Regards, > Henri > -- View this message in context: http://www.nabble.com/Multiple-Solr-Cores-tf3608399.html#a10106126 Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multiple Solr Cores

2007-04-19 Thread Chris Hostetter
I'm sorry to say I am *way* behind on my patch reading (and moving into my new place this weekend where i have no net access isn't going to help) so i can't comment on the technique (or even style) of this patch ... but if you could do peopel a favor and open a Jira issue and post it there for peo

Re: Multiple Solr Cores

2007-04-19 Thread Henrib
e a great idea, and potentially very useful for my company. > > Can you explain a bit about how you would configure the various solr/home > paths, and how the different indexes would be accessed by clients? > > Thanks! > > - Michael > -- View this message in context: htt

  1   2   >