search on special characters

2015-04-08 Thread avinash09
not able to search on special characters like . ,_

my query
http://localhost:8983/solr/rna/select?q=name:UAE
Bwt=jsonfl=namerows=100

getting result UAE_bhdgsfsdbj

but for
http://localhost:8983/solr/rna/select?q=name:UAE_wt=jsonfl=namerows=100

no result found

I am using below field type
   fieldType name=text_suggest_ngram2 class=solr.TextField
analyzer type=index
  charFilter class=solr.MappingCharFilterFactory
mapping=mapping-ISOLatin1Accent.txt/
  tokenizer class=solr.StandardTokenizerFactory/
  filter class=solr.WordDelimiterFilterFactory
generateWordParts=1 generateNumberParts=1 catenateWords=0
catenateNumbers=0 catenateAll=0 splitOnCaseChange=1/
  filter class=solr.LowerCaseFilterFactory/
  filter class=solr.EdgeNGramFilterFactory maxGramSize=20
minGramSize=1/
  filter class=solr.PatternReplaceFilterFactory
pattern=([^\w\d\*æøåÆØÅ ]) replacement= replace=all/
/analyzer
analyzer type=query
  charFilter class=solr.MappingCharFilterFactory
mapping=mapping-ISOLatin1Accent.txt/
  tokenizer class=solr.StandardTokenizerFactory/
  filter class=solr.LowerCaseFilterFactory/
/analyzer
  /fieldType



--
View this message in context: 
http://lucene.472066.n3.nabble.com/search-on-special-characters-tp4198286.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: distributed search on tables

2015-04-08 Thread avinash09
thanks Erick



--
View this message in context: 
http://lucene.472066.n3.nabble.com/distributed-search-on-tables-tp4197456p4198285.html
Sent from the Solr - User mailing list archive at Nabble.com.


i am using text_general not able to search on space

2015-04-08 Thread avinash09


http://localhost:8983/solr/rna/select?q=test_name:*Uae
blow*wt=jsonrows=100

getting 
{
responseHeader: {
status: 400,
QTime: 28
},
error: {
msg: no field name specified in query and no default specified via 'df'
param,
code: 400
}
}

plz help!!





--
View this message in context: 
http://lucene.472066.n3.nabble.com/i-am-using-text-general-not-able-to-search-on-space-tp4198470.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: Solr -indexing from csv file having 28 cols taking lot of time ..plz help i m new to solr

2015-04-04 Thread avinash09
Thanks Toke , nice explanation , i have one more concern instead of comma
separated my columns are ^A separated how to deal ^A ??



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Solr-indexing-from-csv-file-having-28-cols-taking-lot-of-time-plz-help-i-m-new-to-solr-tp4196904p4197607.html
Sent from the Solr - User mailing list archive at Nabble.com.


distributed search on tables

2015-04-03 Thread avinash09
Hi,

I have a use case search all the name=*test* from two tables (product and
department)
i need distributed result 5 result from product and 5 from department

but i am getting first all result from which is 434 and then department as
shared below

http://localhost:8983/solr/test_core/select?q=name:*test*wt=jsonfacet=truefacet.field=table_name


{
responseHeader: {
status: 0,
QTime: 19
},
response: {
numFound: 569,
start: 0,
docs: [
{
name: test 6576,
table_name: product
},
{
name: test 6578,
table_name: product
},
{
name: test 65760,
table_name: product
},
{
name: test 657699,
table_name: product
},
{
name: test 657699,
table_name: product
},
{
name: test 657666,
table_name: product
},
{
name: test 657689,
table_name: product
},
{
name: test 6576yu,
table_name: product
},
{
name: test 657607,
table_name: product
},
{
name: test 657687,
table_name: product
}
]
},
facet_counts: {
facet_queries: { },
facet_fields: {
table_name: [
product,
434,
dealer,
135
]
},
facet_dates: { },
facet_ranges: { }
}
}

please help me



--
View this message in context: 
http://lucene.472066.n3.nabble.com/distributed-search-on-tables-tp4197456.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: Solr -indexing from csv file having 28 cols taking lot of time ..plz help i m new to solr

2015-04-02 Thread avinash09
Alex,
finally it worked for me found ctrl A separator ==( separator=%01escape=\)

Thanks for your help



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Solr-indexing-from-csv-file-having-28-cols-taking-lot-of-time-plz-help-i-m-new-to-solr-tp4196904p4197143.html
Sent from the Solr - User mailing list archive at Nabble.com.


Solr -indexing from csv file having 28 cols taking lot of time ..plz help i m new to solr

2015-04-01 Thread avinash09

  entity name=test1
processor=LineEntityProcessor
dataSource=fds
url=test.csv
rootEntity=true
transformer=RegexTransformer,TemplateTransformer 
  field column=rawLine

regex=^(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*),(.*)$
 groupNames=test,,

,,,is_frequency_cap_enabled,,,daily_spend_limit,,, /
 field column=table_name name=table_name template=test1 /
/entity



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Solr-indexing-from-csv-file-having-28-cols-taking-lot-of-time-plz-help-i-m-new-to-solr-tp4196904.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: Solr -indexing from csv file having 28 cols taking lot of time ..plz help i m new to solr

2015-04-01 Thread avinash09
no could you please share an example



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Solr-indexing-from-csv-file-having-28-cols-taking-lot-of-time-plz-help-i-m-new-to-solr-tp4196904p4196928.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: Solr -indexing from csv file having 28 cols taking lot of time ..plz help i m new to solr

2015-04-01 Thread avinash09
sir , a silly  question m confuse here what is difference between data import
handler and update csv



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Solr-indexing-from-csv-file-having-28-cols-taking-lot-of-time-plz-help-i-m-new-to-solr-tp4196904p4196940.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: Solr -indexing from csv file having 28 cols taking lot of time ..plz help i m new to solr

2015-04-01 Thread avinash09
thanks Erick and Alexandre Rafalovitch R

one more doubt how to pass ctrl A(^A) seprator while csv upload  




--
View this message in context: 
http://lucene.472066.n3.nabble.com/Solr-indexing-from-csv-file-having-28-cols-taking-lot-of-time-plz-help-i-m-new-to-solr-tp4196904p4196998.html
Sent from the Solr - User mailing list archive at Nabble.com.