querying nested entity fields

2013-10-18 Thread sathish_ix
Hi , can some help if below query is possible, Schema: A product1 product2 B product12 product23 Is it possible to like this q=tag.category:A AND tag.category.product=product1 ??? -- View t

change schema.xml without bringing down the solr

2013-08-29 Thread sathish_ix
Hi, I have couple of usecase need to be implemented. 1. Out application is 24 X 7 , so we require search feature to be available 24 X 7. How to add new field to live solr node , without brining down the solr instance ? 2. How to additional shard to existing collection and re distribute the

Re: SolrCloud - Path must not end with / character

2013-08-29 Thread sathish_ix
Hi , Check your configuration files uploaded into zookeeper is valid and no error in config files uploaded. I think due to this error, solr core will not be created. Thanks, Sathish -- View this message in context: http://lucene.472066.n3.nabble.com/SolrCloud-Path-must-not-end-with-character-

RE: Solr 4.1.0 not using solrcore.properties ?

2013-07-23 Thread sathish_ix
Hi , Can any one help on how to refer the solrcore.properties uploaded into Zookeeper ? -- View this message in context: http://lucene.472066.n3.nabble.com/Solr-4-1-0-not-using-solrcore-properties-tp4040228p4079654.html Sent from the Solr - User mailing list archive at Nabble.com.

Refering SOLRcore properties in zookeeper

2013-07-23 Thread sathish_ix
Hi, I have uploaded solrconfig.xml, db-data-config.xml , solrcore.properties (ABC.properties ) files into zookeeper. below is my solr.xml file, while starting the solr, it was not able to recognize ABC.properties . Am i doing correct ? Th

Re: Usage of CloudSolrServer?

2013-07-11 Thread sathish_ix
Hi , Iam using cloudsolrserver to connect to solrcloud, im indexing the documents using solrj API using cloudsolrserver object. Index is triggered on master node of a collection, whereas if i need to find the status of the loading , it return the message from replica where status is null. How to f

Appending a value to fl parameter

2013-06-23 Thread sathish_ix
Hi, Can write the query like this way ? I need to append *** to returned field, is this possible. account_number has last 4 character account_name has full name of the account I need to append *** front of account number. Instead of handling in front end, thought to handle in solr. How can we do

Re: Doubt Regarding Shards Index

2013-06-07 Thread sathish_ix
Hi , How did you distribute the index by year to different shards, do we need to write any code ? Thanks, Sathish -- View this message in context: http://lucene.472066.n3.nabble.com/Doubt-Regarding-Shards-Index-tp3629964p4068869.html Sent from the Solr - User mailing list archive at Nabble.co

How to stop index distribution among shards in solr cloud

2013-06-07 Thread sathish_ix
Hi, I have two shards, logically each shards corresponds to a region. Currently index is distributed in solr cloud to shards, how to load index to specific shard in solr cloud, Any thoughts ? Thanks, Sathish -- View this message in context: http://lucene.472066.n3.nabble.com/How-to-stop-inde

Re: Is there a way to load multiple schema when using zookeeper?

2013-06-07 Thread sathish_ix
Hi, we were able to accomplish this by single collection. Zookeeper : create separate node for each shards, and upload the dbconfig file under shards. eg : /config/config1/shard1 /config/config1/shard2 /config/config1/shard3 In the solrconfig.xml,

Re: Is there a way to load multiple schema when using zookeeper?

2013-06-07 Thread sathish_ix
Hi, we were able to accomplish this by single collection. Zookeeper : create separate node for each shards, and upload the dbconfig file under shards. eg : /config/config1/shard1 /config/config1/shard2 /config/config1/shard3 In the solrconfig.xml,

Re: Configuring seperate db-data-config.xml per shard

2013-06-07 Thread sathish_ix
Hi, we were able to accomplish this by single collection. Zookeeper : create separate node for each shards, and upload the dbconfig file under shards. eg : /config/config1/shard1 /config/config1/shard2 /config/config1/shard3 In the solrconfig.xml,

solr.NoOpDistributingUpdateProcessorFactory in SOLR CLOUD

2013-06-07 Thread sathish_ix
Hi , Need more information how NoOpDistributingUpdateProcessorFactory works, Below is the cloud setup, collection1 shard1 ---node1:8983 (leader) | | _ _ _ _ _ _ _ _ _ _ node2:8984 | |_ _ _ _ _ _ _ _ _ _ _ _ shard2--- node3:7585 (

Sole instance state is down in cloud mode

2013-06-05 Thread sathish_ix
Hi, When i start a core in solr-cloud im getting below message in log I have setup zookeeper separately and uploaded the config files. When i start the solr instance in cloud mode, state is down. INFO: Update state numShards=null message={ "operation":"state", "numShards":null, "shard":"s

Re: Question on Copy filed

2013-06-04 Thread sathish_ix
thanks guys for your reply -- View this message in context: http://lucene.472066.n3.nabble.com/Question-on-Copy-filed-tp4068047p4068084.html Sent from the Solr - User mailing list archive at Nabble.com.

Question on Copy filed

2013-06-04 Thread sathish_ix
Hi , Few question on copy field, When a field is edgeNgram and stored into a field (field 1 ), EdgeNgram field (field 1) is copied into another field ( field 2 ) , will edgeNgram token will be stored in copyfield (field 2) ? Field 1 : 123456 ( 12 , 123 .1234. 1245, 123456) Field 2 : 12, 123

Question on distrib=false

2013-05-31 Thread sathish_ix
Hi, We have following setup , Maseter Slave 1 |_ Slave 2 we indexed few records in slave1 and few records in slave2, while querying we need data only from slave 1. So used below query http://xxx.com/solr/select?q=*:*&shards=slave1,slave2&distrib=false We are get

Application connecting to SOLR cloud

2013-05-27 Thread sathish_ix
Hi, We have setup the SOLR cloud with zookeeper. Zookeeper (localhost:8000) 1 shard (localhost:9000) 2 Replica (localhost:9001,localhost:9002) Question : We load the solr index from Relational DB using DIH, Based on solr cloud documentation the request to load the data will be forwarded

Function queries

2013-05-15 Thread sathish_ix
Hi , i would like to get all documents when searching for a keyword. http://localhost:8080/solr/select?q=caram&rows=_val_:"docfreq(SEARCH_TERM,'caram')" Searching for 'caram', there are 200 documents, but iam getting first 10 documents. I thought of adding function to the rows. Can we pass resu

faceting multivalued field

2013-03-15 Thread sathish_ix
Hi,I have a requirement below is my dataset ,Client_name rep_name acct_nameSUSAN CHILTONGERARD BUCHANAN CHILTON SLARRY CHILTON GERARD BUCHANAN CHILTON LMy schema.xml SEARCHI need response as,Search for CHILTON , group by Client name