Hi,
Can anyone help me on how to integrate sen and lucene-ja.jar in SOLR 3.4
or 3.5 or 3.6 version?
Thanks,
Shanmugavel
--
View this message in context:
http://lucene.472066.n3.nabble.com/How-to-integrate-sen-and-lucene-ja-in-SOLR-3-x-tp3953266.html
Sent from the Solr - User mailing list archiv
Thank you for the reply Chris.
Please find the sample query which is returning results even though id is
not having any value as "" in SOLR 1.4.1
http://localhost/solr/online/select/?q=%28%20state%20%29^1.8%20AND%20%20%28%20%28id:%22%22%29%29%20AND%20%20%28%20%28content_type_s:%22Video%22%29^1.5%2
Hi,
I am using SOLR 1.4.1. When I search for empty string in a string field,
q=tag_facet:"", it return documents with values in tag_facet.
When I use the same query q=tag_facet:"", in SOLR 3.4, it is returning
only documents with "" string in tag_facet.
SOLR 3.4 works as expected. I just wan
SOLR : 1.4.1
There are 1,300,000+ documents in the index. Sorting on a date field with
timestamp leads to OutOfMemoryError. So, we are looking for a way to copy
the timestamp as a long value to a field and sort based on that field. Can
any one help me on how to convert the timestamp to a long value
Markus,
The problem here is if I call the below two URLs immediately after
replication then I am getting both the index versions as same. In my python
script I have added code to swap the online core on master with offline core
on master and online core on slave with offline core on slave, if bo
How to find Master & Slave are in sync?
Is there a way apart from checking the index version of master and slave
using below two HTTP APIs?
http://master_host:port/solr/replication?command=indexversion
http://slave_host:port/solr/replication?command=details
--
View this message in context:
http
Hi,
These two links helped me to solve the problem.
https://issues.apache.org/jira/browse/SOLR-1154
http://wiki.apache.org/solr/SolrReplication#enable.2BAC8-disable_master.2BAC8-slave_in_a_node
Thanks,
SRD
--
View this message in context:
http://lucene.472066.n3.nabble.com/schema-xml-in-other-
Chris,
Our solr conf folder is in read-only file system. But the data directory
(index) is not in read-only file system. As per our production environment
guidelines, the configuration files should be in read-only file system.
Thanks,
SRD
--
View this message in context:
http://lucene.472066.
Erick,
Thanks for your response. Our production environment is a read only file
system. It is not allowing to modify or create new files under conf folder
at runtime. So copy config through replication is not working for us.
Thanks,
SRD
--
View this message in context:
http://lucene.472066.n3.
I want to place the schema.xml in a place other than conf folder. Is it
possible?
This is as part of master and slave configuration. I want to place all the
files which will be common between master and slave in a particular
location.
Can anyone help me on this?
--
View this message in context:
1) Thanks for this update. I have to use 'WhiteSpaceTokenizer'
2) I have to suggest the whole query itself (Say name or title)
3) Could you please let me know if there is a way to find the evicted docs?
4) Yes, we are seeing improvement in the response time if we optimize. But
still for some queri
I am using SOLR 1.4.1. My SOLR runs in a server which is in EST zone.
I am trying to index a date field which is in MySQL as
'2007-08-08T05:36:50Z' but while indexing it becomes '2007-08-08T09:36:50Z'
where 4 hours got increased. But I want the date as is while indexing,
means, after indexing I wa
Thanks Erick.
--
View this message in context:
http://lucene.472066.n3.nabble.com/copyField-is-not-tokenizing-the-values-at-index-time-tp1952756p1958946.html
Sent from the Solr - User mailing list archive at Nabble.com.
SOLR wiki page is the best place to find that.
http://stackoverflow.com/questions/3004823/solr-spellcheck-configuration
http://wiki.apache.org/solr/SpellCheckerRequestHandler
http://wiki.apache.org/solr/SpellCheckComponent
--
View this message in context:
http://lucene.472066.n3.nabble.com/Spel
Thanks Erick.
--
View this message in context:
http://lucene.472066.n3.nabble.com/Meaning-of-avgTimePerRequest-avgRequestsPerSecond-in-SOLR-stats-page-tp1922692p1932275.html
Sent from the Solr - User mailing list archive at Nabble.com.
Did you configure below one in your default request handler?
spellcheck
--
View this message in context:
http://lucene.472066.n3.nabble.com/Spell-Check-Component-Functionality-tp1923954p1929124.html
Sent from the Solr - User mailing list archive at Nabble.com.
Erick,
Thanks a lot for explaining about these two fields.
Could you please let us know which one we have to look for if we have to
monitor the performance? avgTimePerRequest OR avgRequestsPerSecond.
Thanks,
SRD
--
View this message in context:
http://lucene.472066.n3.nabble.com/Meaning-o
I tried this in JAVA where the SOLR runs. Is it problem due to the encoding?
Code:
GregorianCalendar calendar = new
GregorianCalendar(TimeZone.getTimeZone("US/Eastern"), Locale.US);
System.out.println(calendar.getTime());
calendar.set(0, 0, 0, 0, 0, 0);
System.out.println(calendar.getTime());
Sy
Thanks for your reply.
I am indexing docs in XML using DIH. I am not using MySQL to import data.
--
View this message in context:
http://lucene.472066.n3.nabble.com/DateFormatTransformer-issue-with-value--00-00T00-00-00Z-tp1910644p1916712.html
Sent from the Solr - User mailing list archive a
Hi,
I am having a field as below in my feed.
-00-00T00:00:00Z
I have configured the field as below in data-config.xml.
But after indexing, the field value becomes like this
0002-11-30T00:00:00Z
I want to have the value as '-00-00T00:00:00Z' after indexing also.
Could anyon
Thanks Iorixxx... Boosting is working while using DIH to import XML.
Thanks,
SRD
--
View this message in context:
http://lucene.472066.n3.nabble.com/Index-time-boosting-is-not-working-with-boosting-value-in-document-level-tp1649072p1693423.html
Sent from the Solr - User mailing list archive at
Thanks a ton Eric and Iorixxx.
Since I used DIH to import XML data, boosting was not reflected in score.
When I used /update to import XML data, boosting was considered for scoring
and able to see the intended data on top 10 results.
Could you please let me know how to make boosting value to be re
Eric,
Score is not coming properly even after giving boost value in document
and field level.
Please find the solrconfig.xml, schema.xml, data-config.xml, the feed and
the score & query.
Doc with id 'ABCDEF/L' is boosted and doc with id 'MA147LL/A' is not
boosted, but both are returning s
Thank you Otis. It solved the problem.
--
View this message in context:
http://lucene.472066.n3.nabble.com/SOLR-1-4-1-to-SOLR-1-3-issues-backward-compatability-issue-tp1649789p1664057.html
Sent from the Solr - User mailing list archive at Nabble.com.
Thank you Otis. I will try these steps.
Yes, it is not about indexing issue. Index and search functionality are
working fine. Only admin page is not accessible.
There is a process in our company to look for the roll back option while
moving any changes to LIVE/Production. As part of that we found
When I tried to roll back from SOLR 1.4.1 to SOLR 1.3, I am unable to view
the admin page alone rest of the functionality are fine.
I removed the index folder before reverting back to SOLR 1.3.
Does any one have answer for this?
--
View this message in context:
http://lucene.472066.n3.nabble.co
We are having 10 documents (all 10 documents with name_s="john") with
boosting value 10.0 in doc level out of 100 documents.
DataImportHandler is used to index the documents in xml.
We gave omitNorms="false" in a field called "text" and having schema.xml
configured as below.
Default query field is
27 matches
Mail list logo