Tagged Questions
0
votes
2answers
63 views
Solr Grouping empty field
Edit
I'm sorry if I did not explain well my need. I'll try to give a better explanation.
What I have : Millions of documents that have a field X , another field Y and another field Z which is not ...
0
votes
0answers
70 views
For Solr dismax query, how can I get each field score?
In my application, each document is composed by four text field, namely title, keywords, summary and text. I know that I can use dismax query with "fq=title keywords summary text" to let Solr do ...
0
votes
1answer
56 views
Add text to the start of a SOLR database value
I am using this code for my SOLR DIH:
<dataConfig>
<dataSource name="app" driver="org.postgresql.Driver" url="jdbc:postgresql://localhost:5432/wikipedia" user="wikipedia" ...
0
votes
1answer
50 views
Solr Search with subtraction on 2 field
I want to search in solr with the subtraction on 2 indexed field greater than a specific number.
For example, suppose I have an indexed table with field (int) start and field (int) end, I want solr ...
0
votes
1answer
309 views
Solr-Sunburnt-Nutch. content field missing in results
Im using solr-sunburnt with django. I have used nutch to crawl and index my site. I copied the nutch schema.xml to solr.
The problem I'm facing is that when I send a query, the results do not have ...
0
votes
1answer
246 views
Map static field between nutch and solr
I use nutch 1.4 and I would like to map static field to Solr.
I know there is the index-static plugin. I configured it in nutch-site.xml like this :
<property>
...
0
votes
2answers
665 views
Solr copyField mixed with RegexTransformer
Scenario:
In the database I have a field called Categories which of type string and contains a number of digits pipe delimited such as 1|8|90|130|
What I want:
In Solr index, I want to have 2 ...
1
vote
1answer
824 views
Solr - How to boost a field in Solr? Not getting the correct query
I'm using Solr 1.4.1. I need to boost a field. My schema.xml is the following:
<?xml version="1.0" ?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor ...
0
votes
1answer
323 views
Solr - Boosting result if query is found in a special field
I am wondering if it is possible with Solr 3.4 to boost a search result, if the query is found in a special field without using the "fieldname:query"-syntax.
Let me explain:
I have several fields in ...
3
votes
1answer
4k views
Solr 3.3.0 - Increase field weight in search - boost field priority
I'm indexing with solr 3.3.0 these docs:
<book id="bk101">
<keywords>----</keywords>
<title>----</title>
<owner>----</owner>
...
1
vote
1answer
282 views
Solr highlight : InvalidTokenOffsetsException
I use solr 3.4. When I search a word, I have an InvalidTokenOffsetsException.
My field type look like :
<fieldType name="text" class="solr.TextField" positionIncrementGap="100">
...
0
votes
1answer
44 views
How to know the space occupied by each field in Solr
our Solr index file is about 30G and we want to do some optimization to reduce the size.
Then how to know the space occupied by each field?
0
votes
1answer
2k views
Solr indexing: date field with (empty) no value
I have the following field definition in my SOlr Schema
name="DvdReleaseDate" type="date " stored="true" required="false"
My input xml file contains movie names with DVDReleaseDate. So for ...
0
votes
1answer
155 views
How can I force Solr to return complete field's contents?
I found lots of questions about how to force Solr to truncate field's contents (like this one), but I got an opposite problem. When searching (from both - Solr admin and Solrj) I'm getting only ...
0
votes
2answers
285 views
Solr - Find whole numberin float field
I need some guidance on how to properly index a field representing money.
I need 130 to match 130.64. I tried the trie float configuration below.
<fieldType name="float" ...
0
votes
1answer
152 views
indexing with solr
I'm using solrj to index data, I have created some new field in schema.xml, when I try to index data by java I have to use all new fields, if I don't use one of this new field I have an exception ...
3
votes
1answer
1k views
Add field in solr schema.xml
I am using solr to make search on my database, and am trying to add a new field (publisher_id of an article) in conf/schema.xml to get the value of the publisher_id after making search on my database, ...
0
votes
0answers
141 views
Some queries don't work with dismax solr
I use solr and dismax reqest handler.
But when I use this handler, some queries as query by field haven't worked.
What's the problem ?
Thanks
2
votes
1answer
2k views
Solr search query for dynamic fields indexed
I am implementing the solr search in my project .
I have one question regarding how do i search a dynamic fields that is created in a solr index
Eg:- this is the tag that is formed in the index
And ...
2
votes
3answers
977 views
Can you delete a field from a document in Solr index?
I have a big index, and during the indexation process there was an error. So to avoid reindexing which takes several days, I want to simply delete specific field and reindex. Is there any suggestion?
2
votes
1answer
339 views
solr.RandomSortField on multiple solr server instances
Got a solr question here, I have multiple solr server instances they all the same data and schema, the schema contains a dynamic field which is solr.RandomSortField, so I am wondering if I run ...
0
votes
1answer
364 views
SOLR query, value of field 1 is same as field 2, OR field 1 is empty
Got a SOLR query question here, how do I construct my query to suit the following condition:
(value of field 1 is same as field 2) OR (field 1 is empty)
Cheers
James
1
vote
3answers
1k views
solr search, avoid defaultSearchField
I have a solr search problem, currently our schema is setup have the following
<field name="trading_name" type="trading_name" indexed="true" stored="false" required="true" multiValued="false" ...
0
votes
0answers
246 views
Can't search in a certain field using solR
I'm setting up an environment using Nutch 1.0 + solR 1.4.
In Nutch I configured the subcollection plugin which seems to work nicely. If I search as normal adding fl=* I can see the subcollection field ...