RE: Help with a Join Query

2014-12-11 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
May be you can try using AND condition in the single join something like q={!join from=parent to=id}(Id:xxx AND (Color:red OR Color:Blue)), I don't think this will give bigger performance issue. Thanks Ravi -Original Message- From: Darin Amos [mailto:dari...@gmail.com] Sent:

Help on Notification for SOLR

2014-11-24 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hello, I am working on implementing a notification system when there is any change in the solr index (Addition or removal of documents from Index). Can someone guide me on the starting point. I see some articles using DIH? Is there any way using without DIH. Thanks Ravi

RE: Synonymn for Numbers

2014-11-10 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
? It sounds like you want to use these synonyms only at query time. Otherwise, 10 in the index becomes 2010 in the index. -- Jack Krupansky -Original Message- From: EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) Sent: Friday, November 7, 2014 2:22 PM To: solr-user@lucene.apache.org

Synonymn for Numbers

2014-11-07 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi Group, I am working on implementing synonym for number like 10,2010 14,2014 2 digit number to get documents with four digit, I added the above lines in synonym and everything works. But now I have to get for one direction, I tried 10=2010 but it is still gets the record belongs to 10 , if I

search query text field with Comma

2014-10-06 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi users, This is may be a basic question, but I am facing some trouble.. The scenario is , I have a text Truck Series, 12V and 15V, if the user search Truck Series it is not getting the row , but Truck Series, is working.. How can I get for search Truck Series..? Thanks Ravi

RE: Boosting Top selling items

2014-10-03 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi Bob, I tried using a product type attribute which separates the products/parts and boost the product in TOP with OR condition for productype as parts. This way you get all the products /parts related to your search and always keeping the Products in the Top and Parts next to Products. This

RE: Boosting Top selling items

2014-10-03 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
relevance, but can give a small boost to TOP products. Do you determine when they are searching for a product? Otherwise, if I search for a part and you boost products that would be frustrating to a user. Thanks for the discussion. -Bob On Oct 3, 2014, at 9:38 AM, EXTERNAL Taminidi Ravi (ETI

AND OR Condition in Solr

2014-08-26 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi , I have situation and wondering is there any way to implement that. I have a search word for e.g. Houston Texas Chicago , Is it possible to add a fq depends on the records match. E,g if my search has records for Huston and Texas then it should a kind of results , ideally Houston AND

Strange Behavior

2014-08-21 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi , I have a field type text_general where query type for worddelimiter I am using the below type: where wddftype.txt contains - DIGIT When I do a query I am not getting the right results. E.g. Name:Wi-Fi Gets results but Name:Wi-Fi Devices Make not getting any results but if I change it to

WordDelimiter

2014-08-08 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
HI, I have a situation where I don't want to split the words, I am using the workdelimterfilter where it works good. For eg. If I send to analyszer for 100-001 , it is not splitting the keyword, but if I send 100-R8989 then the worddelimiter filter to 100 | R9889, below is the filed analyzer

fq bq

2014-07-29 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi , I am using the bq to boost a particular value of a field. But when I try to add a filter query (fq) there results are Zero, Do you have thoughts, can I use both bq and fq togerther...? bq=(Type:Car)^1000fq=Country:US Thanks Ravi

RE: fq bq

2014-07-29 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
parameter? Try with q and fq alone as see if you get any results. Try with q set to your fq query alone and see what results you get, if any. -- Jack Krupansky -Original Message- From: EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) Sent: Tuesday, July 29, 2014 8:10 AM

RE: fq bq

2014-07-29 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
in-depth knowledge of the join internals could comment. -- Jack Krupansky -Original Message- From: EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) Sent: Tuesday, July 29, 2014 10:51 AM To: solr-user@lucene.apache.org Cc: j...@basetechnology.com Subject: RE: fq bq Hi Jack, My

Get Data under Highlight Json value pair

2014-07-24 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
I am trying to get the content under highlighting json string, but I am not able to map the values as the highlighting has and values. E.g below . How can I get the value , is there any option at query syntax, current I used h1.on and h1.fl=List of Fields highlighting:{ :{

RE: text search problem

2014-07-21 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
. But debug=all will show you. Plus, take a look at the admin/analysis page, your tokenization may not be what you expect. Best, Erick On Fri, Jul 18, 2014 at 2:00 PM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) external.ravi.tamin...@us.bosch.com wrote: Hi, Below

text search problem

2014-07-18 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi, Below is the text_general field type when I search Text:Boradway it is not returning all the records, it returning only few records. But when I search for Text:*Broadway*, it is getting more records. When I get into multiple words ln search like Broadway Hotel, it may not get Broadway ,

Upper or Lower Case

2014-07-16 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi , If I search 'Transmission Flush' it get the good match results, but when I use 'transmission flush' I get different order of results, I search for the Name column in the schema and it has below config for the field type. Any clue what is wrong or is there any Conf changes need to get the

RE: Lower/UpperCase Issue

2014-07-10 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
a guess. Best, Erick On Wed, Jul 9, 2014 at 4:20 PM, Shawn Heisey s...@elyograg.org wrote: On 7/9/2014 2:02 PM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) wrote: Here is the schema part. field name=Name type=text_general indexed=true stored=true / Your query is *:*, which

Lower/UpperCase Issue

2014-07-09 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
I have a situation here, when I search with BALANCER the results are different Compare to Balancer and the order is different When I search BALANCER then, the documents with Upper Case are first in the List and for Balancer it is in different order. I am confused why this behavior, Can some

RE: Lower/UpperCase Issue

2014-07-09 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) wrote: I have a situation here, when I search with BALANCER the results are different Compare to Balancer and the order is different When I search BALANCER then, the documents with Upper Case are first in the List and for Balancer

RE: Lower/UpperCase Issue

2014-07-09 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
. Ahmet On Wednesday, July 9, 2014 7:18 PM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) external.ravi.tamin...@us.bosch.com wrote: I have a situation here, when I search with BALANCER the results are different Compare to Balancer and the order is different  When I search BALANCER

RE: Exact Match first in the list.

2014-07-08 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Thanks shawn, I am already using the Boosting but the OR condition works for me as you mentioned. One question If I used in search field (TAGs) , it is returning lot of Fields but if try with the '( something like TAGs, it is getting less, why the ( ) are changing the results.? They won't

Hypen in search keyword

2014-07-08 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
I have the below config for the field type text_general. But then I search with keyword e.g 100-001, it get 100-001, 100 in starting records ending with 001 . I want to treat - as another character not to split. fieldType name=text_general class=solr.TextField positionIncrementGap=100

Exact Match first in the list.

2014-07-07 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
HI, I HAVE A situation where applying below search rules. When I search columns for the full text search. Product Variant Name, the exact match has to be in the first list and other match like , product or variant or name or any combination will be next in the results. Any thoughts, why

Facet for calculated Column

2014-06-25 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi, Is it possible to get the facet count for calculated values, along with regular columns. e.g I have Price MSRP, I like to get how many are in Sale (Price MSRP) Onsale (10) Jeans (20) Shirts (50) Above, Jeans Shirts are there in Schema.xml, I can add there in the facet fields, How

RE: running Post jar from different server

2014-06-24 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
? That would resolve to the SQLDB host where Solr is not running. Instead of using localhost in the -Durl part of your command line, use the full hostname or IP address of your Solr server. On Mon, Jun 23, 2014 at 11:04 PM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions

RE: POST Vs GET

2014-06-24 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
just use the jetty shipped with Solr? It has all the correct defaults. In future, we may not even support shipping a war file. On Mon, Jun 23, 2014 at 11:07 PM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) external.ravi.tamin...@us.bosch.com wrote: Hi, I am executing a solr query

RE: running Post jar from different server

2014-06-23 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
HI Anyone has the any reference for these type of execution..? -Original Message- From: EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) [mailto:external.ravi.tamin...@us.bosch.com] Sent: Friday, June 20, 2014 1:46 PM To: solr-user@lucene.apache.org Subject: RE: running Post

POST Vs GET

2014-06-23 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi, I am executing a solr query runs 10 to 12 lines with all the boosting and condition. I change the Http Contentype to POST from GET as post doesn't have any restriction for size. But I am getting an error. I am using Tomcat 7, Is there any place we need to specify in Tomcat to accept POST..

SOLR in Production

2014-06-23 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi, We are planning to move solr for Production Environment. I like to get some real time experience or checklist to take care. We have 1 instance of Solr with 2 Cores. What should be taken care in case of the solr instance is down? What I have to do , if I have 2 instances, the first one is

RE: running Post jar from different server

2014-06-20 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
in there. Thanks, -- *Sameer Maggon* http://measuredsearch.com On Thu, Jun 19, 2014 at 8:54 PM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) external.ravi.tamin...@us.bosch.com wrote: Hi, I have situation where my SQL Job initiate a console application , where I am calling the post.jar

running Post jar from different server

2014-06-19 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi, I have situation where my SQL Job initiate a console application , where I am calling the post.jar to upload data to SOLR. Both SQL DB and SOLR are 2 different servers. I am calling post.jar from my SQLDB where the path is mapped to a network drive. I am getting an error file not found.

RE: Tomcat restart removes the Core.

2014-06-05 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
| g+: plus.google.com/appinions https://plus.google.com/u/0/b/112002776285509593336/112002776285509593336/posts w: appinions.com http://www.appinions.com/ On Wed, Jun 4, 2014 at 1:06 PM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) external.ravi.tamin...@us.bosch.com wrote: All, Can

RE: Tomcat restart removes the Core.

2014-06-05 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
://twitter.com/Appinions | g+: plus.google.com/appinions https://plus.google.com/u/0/b/112002776285509593336/112002776285509593336/posts w: appinions.com http://www.appinions.com/ On Thu, Jun 5, 2014 at 3:52 PM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) external.ravi.tamin

Tomcat restart removes the Core.

2014-06-04 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
All, Can anyone help me on what is going wrong in my tomcat. When I restart the tomcat after schema update, the Cores are removed. I need to add the cores manually to get back them on work. Is there anything someone experience.. Thanks Ravi

RE: Email Notification for Sucess/Failure of Import Process.

2014-05-29 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
@lucene.apache.org Subject: Re: Email Notification for Sucess/Failure of Import Process. How about using DIH’s EventListeners? http://wiki.apache.org/solr/DataImportHandler#EventListeners -Stefan On Wednesday, May 28, 2014 at 5:31 PM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) wrote

Email Notification for Sucess/Failure of Import Process.

2014-05-28 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi I am using the XML file for Indexing In SOLR. I am planning to make this process more automation. Creating XML File and Loading to SOLR. I like to get email once the process is completed. Is there any way in solr can this achieved, I am not seeing more inputs on configure notification in

Solr Server Infrastructure Config

2014-04-29 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi, Can some one share or refer to get information on the SOLR server environment for production. Appx. We have 40 Collections, with appx size from 300MB to 8GB (for each Collection) and appx Total 100GB. The average increase of the size for total may be 2-5Gb / Year. To Get best performance

RE: Relevance/Rank

2014-04-11 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
HI thanks Aman/Eric, I move part of the query under q=*:* and there is a difference in the score and the Order. It seems work for me now. I use this and move forward Thanks Ravi -Original Message- From: Aman Tandon [mailto:amantandon...@gmail.com] Sent: Friday, April 11, 2014 12:02

Relevance/Rank

2014-04-10 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi I am looking boosting to help if I can achieve the Rank equal to MS SQL Server. I have a query something like fq=(SKU:123-87458) OR Name: 123-87458 I need to get the Exact Match as first in the results, In this case SKU. But also I can change to display Name in the List which is not

RE: Relevance/Rank

2014-04-10 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
is publishing an e-book here: http://www.lulu.com/spotlight/JackKrupansky (this is the last link I have, there may be more recent copies). Best, Erick On Thu, Apr 10, 2014 at 11:49 AM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) external.ravi.tamin...@us.bosch.com wrote: Hi I am

SOLR Jetty Server on Windows 2003

2014-04-04 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi , I am trying to install solr on the Windows 2003 with Jetty server. Form browser everything works , but when I try to acesss from another javascript Code in other machine I am not getting reponse. I am using Xmlhttprequest to get the response from server using javascript. Any Help...?

Boosing Basic

2014-04-03 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hello, I am trying to implement boosting but I am not able to find a good example, Some places asking to add ^10 to boost score in some places it says use bf . I have query with condition (Name OR Description OR ProductType) but I like to show the results first Name and need to boost the

RE: Empty string in tfloat type field

2014-03-17 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
-core/org/apache/solr/update/processor/ Ahmet ** Thanks, Greg On Mar 14, 2014, at 8:26 AM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) external.ravi.tamin...@us.bosch.com wrote: HI, I have a Price field with tfloat type. I am using XML to Post the Data. For few documents

Empty string in tfloat type field

2014-03-14 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
HI, I have a Price field with tfloat type. I am using XML to Post the Data. For few documents the Price in the XML is empty. I am getting any error where empty is treated as string and throws exception. Any suggestions to fix this..? Thanks Ravi

RE: Empty string in tfloat type field

2014-03-14 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
time you posted this question three days ago. Allow me to quote: ** Hi Ravi, How about RemoveBlankFieldUpdateProcessorFactory ? https://lucene.apache.org/solr/4_0_0/solr-core/org/apache/solr/update/processor/ Ahmet ** Thanks, Greg On Mar 14, 2014, at 8:26 AM, EXTERNAL Taminidi Ravi (ETI

Store Null in Price Field

2014-03-11 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi, Is there anyway Index/store value for Null Field in Price column..? My Price field is tfloat and the XML data file has empty value for the field, Solr takes this as string and throwing error. Is there any quick fix for this.? --Ravi

SOLR JOINS not working and not returning any data for simple query

2014-03-07 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi All, I am facing a strange behavior with the Solr Server. All my joins are not working suddenly after a restart. Individual collections are returning the response but when I join the collection , I am getting zero documents. Let me know if anyone have same type of issues.

in XML Node Getting Error

2014-02-21 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi, I am getting Error if any of the field in the xml file has as value. How can I fix this issue FYI I changed to amp; in the field but still has issues e.g filed name=NameATT/field or field name=NameATamp;T/field Above both gives error, DO I need to change something in the configuration.

RE: in XML Node Getting Error

2014-02-21 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
: Friday, February 21, 2014 12:16 PM To: solr-user@lucene.apache.org Subject: Re: in XML Node Getting Error Ravi, What's the error you're getting? Thanks, Greg On Feb 21, 2014, at 11:08 AM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) external.ravi.tamin...@us.bosch.com wrote: Hi

RE: Boost Query Example

2014-02-18 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
://www.appinions.com/ On Mon, Feb 17, 2014 at 3:49 PM, EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) external.ravi.tamin...@us.bosch.com wrote: Hi can some one help me on the Boost Sort query example. http://localhost:8983/solr/ProductCollection/select?q=*%3A*wt=jsonin dent=truefq=SKU

RE: Boost Query Example

2014-02-18 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
- From: EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) Sent: Tuesday, February 18, 2014 9:50 AM To: solr-user@lucene.apache.org ; michael.della.bi...@appinions.com Subject: RE: Boost Query Example Hi Michael, Thanks for the information. Now I am trying with the query , but I am

Boost Query Example

2014-02-17 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi can some one help me on the Boost Sort query example. http://localhost:8983/solr/ ProductCollection/select?q=*%3A*wt=jsonindent=truefq=SKU:223-CL10V3^100 OR SKU:223-CL1^90 There is not different in the query Order, Let me know if I am missing something. Also I like to Order with the

RE: Multiple Column Condition with Relevance/Rank

2014-02-14 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
To: solr-user@lucene.apache.org Subject: Re: Multiple Column Condition with Relevance/Rank Use the OR operator between the specific clauses. -- Jack Krupansky -Original Message- From: EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions) Sent: Thursday, February 13, 2014 9:09 AM

Multiple Column Condition with Relevance/Rank

2014-02-13 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hello, Someone can help me on implementing the below query in Solr, I will using a rank in MS SQL and a return distinct Productid Select productid from products where SKU = 101 Select Productid from products where ManufactureSKU = 101 Select Productid from product where SKU Like 101% Select

RE: handleSelect=true with SolrCloud

2014-02-11 Thread EXTERNAL Taminidi Ravi (ETI, Automotive-Service-Solutions)
Hi Jeff, it is not with elevated, I am talking in the link of Relevancy / Boost/ Score. Select productid from products where SKU = 101 Select Productid from products where ManufactureSKU = 101 Select Productid from product where SKU Like 101% Select Productid from Product where ManufactureSKU