Hi Shawn,
Thanks a million for your response! I really do appreciate it... this helps
clarify how things should be set up.
As for why things are set up the way they are and the webapps location...
honestly I think my predecessor did not really understand solr at all...
I'm trying to pick up the p
Ah, also, this is what the admin console says for location of core docs
when I created the core at command line:
CWD:/opt/solr-5.3.1/serverInstance:/var/solr/data/[corename]Data:
/var/solr/data/[corename]/dataIndex:/var/solr/data/[corename]/data/index
--
Dr. Amanda Shuman
Post-doc researcher
Hi Yago,
we are facing the same problem. Could you solve it somehow?
thx
--
Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html
Nop,
I never found a fix for this problem, sorry.
Regards.
--
Yago Riveiro
On 15 Nov 2017 09:44 +, tothis , wrote:
> Hi Yago,
>
> we are facing the same problem. Could you solve it somehow?
>
> thx
>
>
>
>
> --
> Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html
"The main motivation is to support a geo-specific relevancy
model which can easily be customized without stepping into each other"
Is your relevancy tuning massively index time based ?
i.e. will create massively different index content based on the geo location
?
If it is just query time based o
Thanks Erik,
I have re-mentions it as some required details are missing in my mail. Using
CloudSolrClient my test case as below.
I have used routing key as projectId/2!documentId
1: Detail of Insert Document in SolrIndex
Document Size: 919551
Document Batch Size for insert: 5000 documents in e
Hi
Solr has panel to Analyse Fieldname i.e.
http://localhost:8983/solr/#/corename/analysis
I need an API which will return analysis information in JSON format like
search handler .
Someone ! Is there any API regarding the same ?
Thanks in advance :)
On 11/15/2017 2:28 AM, Amanda Shuman wrote:
1) so does this mean that on the back-end I should first create my new
core, e.g., core1 and then within that place a conf folder with all the
files? Same for the data folder? If so, is it fine to just use the existing
config files that I've previously
Hello All,
I am working on CSV export using Apache Solr. I have written all the
required query and set wt as CSV. I am getting my results as I want,but the
problem is TimeZone.
Solr stores date value in UTC, but my client timeZone is different. Is
there any way to convert date timeZone from UTC t
On 11/15/2017 5:34 AM, Renuka Srishti wrote:
I am working on CSV export using Apache Solr. I have written all the
required query and set wt as CSV. I am getting my results as I want,but the
problem is TimeZone.
Solr stores date value in UTC, but my client timeZone is different. Is
there any way
Turn on your browsers developer mode and check out the HTTP requests behind the
scenes of that page.
Yes! ;)
> On Nov 15, 2017, at 07:19, kumar gaurav wrote:
>
> Hi
>
> Solr has panel to Analyse Fieldname i.e.
>
> http://localhost:8983/solr/#/corename/analysis
>
> I need an API which w
Hello everybody,
First of all, thanks for this great tool!
Do you know if there is a way to apply a *boost inside a SpanOrQuery*
please? (Solr 7.1, lucene of same version I think.)
Example of query structure generated by edismax query parser (inside the
usual BooleanQuery / DisjunctionMaxQuery f
Hi Shawn, Amanda
When we put the data under /var/lib, I feel a need to put the config under
/etc. Is this recommended, and would you use a symbolic link for the conf dir?
Cheers--Rick
--
Sorry for being brief. Alternate email is rickleir at yahoo dot com
Emir,
It certainly seems like I'll need to use streaming expressions.
Thanks for your help!
Chris
> Hi Chris,
> I misunderstood your requirement. I am not aware of some facet result
> filtering feature. What you could do is sort facet results by sum and load
> page by page but that does not
Well, if you must ;)
Basically whatever is easier. "Core discovery" starts at SOLR_HOME,
wherever you've defined that. Which can be done with a sysvar
"-Dwhatrever" at start time or the "-s" param if using the bin/solr
start scripts. That's the root for finding all "core.properties"
files. Eac
JIRA already exists, https://issues.apache.org/jira/browse/SOLR-11622.
On Mon, Nov 13, 2017 at 5:55 PM, Zheng Lin Edwin Yeo
wrote:
> Hi Erick,
>
> I have added the apache-mime4j-core-0.7.2.jar in the Java Build Path of the
> Eclipse, but it is also not working.
>
> Regards,
> Edwin
>
> On 13 No
I found that my boss's solr admin console did display the Args the only
install I have that does...
I do see errors in both Consoles. I see more errors on the ones that don't
display Args
Here are the errors that only show up when Args doesn't:
Error: [ngRepeat:dupes] Duplicates in a repeater are n
So, from looking at those errors + a bit of Googling, it's complaining that
there are duplicate values in the Args list:
- Repeater: arg in commandLineArgs, Duplicate key:
string:-XX:+UseGCLogFileRotation,
Duplicate
value: -XX:+UseGCLogFileRotation
- Repeater: arg in commandLineArgs, Duplicate key
I got it Erik
here is API
http://localhost:8983/solr/core/analysis/field?wt=json&analysis.showmatch=false&analysis.fieldvalue=nokia%20mobile&analysis.fieldname=productfield
thank you so much :)
On Wed, Nov 15, 2017 at 6:18 PM, Erik Hatcher
wrote:
> Turn on your browsers developer mode and c
I see the same issue with Firefox so it's not strictly browser dependent. I
also have one installation that doesn't have the problem.
The JSON in the endpoint clearly has some duplicates
"jmx":{
"bootclasspath":"/usr/java/jdk1.8.0_51/jre/lib/resources.jar:/usr/java/jdk1.8.0_51/jre/lib/rt.jar:
On 11/15/2017 8:40 AM, Webster Homer wrote:
> I do see errors in both Consoles. I see more errors on the ones that don't
> display Args
> Here are the errors that only show up when Args doesn't:
> Error: [ngRepeat:dupes] Duplicates in a repeater are not allowed. Use
> 'track by' expression to speci
In the solr.in.sh script I do see this:
# Set the thread stack size
SOLR_OPTS="$SOLR_OPTS -Xss256k"
I don't remember ever changing this, but it's only there once
I can't find a reference to +UseGCLogFileRotation at all.
I don't see anyplace where we set either of these twice.
We were migrating
Hi
I need to get full field value from TokenStream in my custom filter class .
I am using this
stream.reset();
while (tStream.incrementToken()) {
term += " "+charTermAttr.toString();
}
stream.end();
stream.close();
this is ending streaming . no token is producing if i am using this .
I wan
Hello folks,
To start, we have a sharded solr cloud configuration running solr version 5.1.0
. During shard to shard communication there is a problem state where queries
are sent to a replica, and on that replica the storage is inaccessible. The
node is healthy so it’s still taking requests w
Hi,
Apologies if this is not the relevant question for this mailing list but we
are looking for a solr expert and were wondering If this is the right
mailing list to send the job description. If there is any other list,
please can you suggest?
Regards,
Niraj
Hi Karthik,
Thanks for the update.
I see from the JIRA that it is still unresolved, meaning we can't index EML
files to Solr 7.1.0 for the time being?
Also, when the patch is ready, are we able to apply the patch to the
current Solr 7.1.0? Or do we have to wait for the next release of Solr?
Reg
Hi,
It is interesting that node reports healthy despite store access issue.
That node should be marked down if it can't open the core backing up
sharded collection.
Maybe if you could share exceptions/errors that you see in console/logs.
I have experienced issues with replica node not respondin
On 16 November 2017 at 03:54, Niraj Aswani wrote:
>
> Hi,
>
> Apologies if this is not the relevant question for this mailing list but we
> are looking for a solr expert and were wondering If this is the right
> mailing list to send the job description. If there is any other list,
> please can you
Hi,
Can someone please let me for my below mentions use-case.
Regards,
Ketan
-Original Message-
From: Ketan Thanki
Sent: Wednesday, November 15, 2017 3:42 PM
To: 'solr-user@lucene.apache.org'
Subject: RE: How to routing document for send to particular shard range
Thanks Erik,
I have
Hi,
Are you getting the string but further tokens are not generated? If this is
the case I think no need to end or close the stream in filter.
Hope this helps.
Best,
Modassar
On Thu, Nov 16, 2017 at 1:20 AM, kumar gaurav wrote:
> Hi
>
> I need to get full field value from TokenStream in my cus
Hi all,
I configured Solr and Cassandra. Running full data import but not stop. Only
core load during this process, stop it. Seeing that stop dih, not write
dataimport.properties.
In dataconfig.xml file, i define simplepropertywriter type and filename. But
not write it in dataimport.properties
I have experience this problem recently with MySQL and after checking
solr.log found that there was a connection timeout from MySQL.
Please check solr.log for any Cassandra connection errors.
Thanks,
Sujay
On Thu, Nov 16, 2017 at 12:29 PM, Can Ezgi Aydemir
wrote:
> Hi all,
>
> I configured Solr
First of all thx for reply.
In solr.log file, do not any error or warning. I am sharing this file in below.
DIH not stop but I wait 30 mins. I have 5 rows in Cassandra.
SOLR.LOG
---
2017-11-16 07:20:36.094 INFO (main) [ ] o.a.s.s.SolrDispatchFil
33 matches
Mail list logo