Tagged Questions
1
vote
0answers
36 views
How to index html, css, and javascript using solr
Users of CodePen submit html/css/javascript each time they save a pen. We're setting up Solr search and I'd like to know if any work has been done to properly tokenize html/css/js for optimal ...
1
vote
1answer
50 views
search over 45M text pages for a single string
I'm interested in the best way to search for an exact string inside 45M text pages i own.
I must get all of the results(page details that fit the query) and not just the top results.
It should be ...
1
vote
0answers
26 views
SOLR searching issue in RAILS
We have a solr search implemented. We are encountering a situation and wish to tackle it as cleanly as possible. We have a book that has an isbn number and it has a relation of isbn numbers in ...
0
votes
0answers
35 views
SOLR html content not getting indexed
I am trying to index xml data in SOLR but it seems that the HTML content inside a tag does not get indexed. I am getting the title and data from the xml but not the description properly. For ...
4
votes
1answer
94 views
What is the correct way of maintaining indices for Sunspot Solr?
I am confused about the Solr indexing mechanism. Perhaps someone can shed some light on it.
So, we have 2 rake commands: rake sunspot:solr:index and rake sunspot:solr:reindex
Here's what my index ...
3
votes
1answer
58 views
How to check equality of two Solr Fields?
I am facing a situation where I need to fetch all those records from Solr server with a condition that field_1.value != field_2.value.
Here field_1 and field_2 are Solr field names of my schema.
I ...
0
votes
1answer
24 views
Append to a Solr Index
This may be a trivial question but I am trying to append to an existing Solr index and seem to be overwriting what is there every time. I have two databases that I am getting data from and I can ...
1
vote
1answer
43 views
How can I represent a key value structure in Apache Solr efficiently
I have a structure of names and dates, that are stored in a log table. They represent user actions and when they did that.
Name Date
John A. 2013-04-01
Leev B. 2013-04-02
Anse E. ...
0
votes
1answer
86 views
Matching substrings in fulltext search not working
In my rails application, i'm using solr search. Substring matching working fine on local server but it is matching full words on my deployment server.
searchable block
searchable do
text ...
0
votes
1answer
69 views
Class not found when trying to index documents using Solr with Symfony2
I am very new to Solr and I am probably missing something simple however, having followed Xavier Briand's presentation I have set up Symfony2, Solarium and Nelmio\SolariumBundle.
...
-1
votes
2answers
142 views
indexing files in folder [closed]
How can I index all doc files in particular folder?
Let's say I have mydocuments folder which contains doc and docx files. I need to index all files in that folder for efficient search. What can you ...
0
votes
2answers
142 views
Solr config, encrypting data config file
How can I encrypt the data config portion here?:
<dataConfig>
<dataSource type="JdbcDataSource" driver="com.microsoft.sqlserver.jdbc.SQLServerDriver"
...
0
votes
2answers
70 views
SolrJ - Indexing multiple classes and ensuring document uniqueness
I want to use SolrJ for indexing a set of Java classes. Each class instance is determined by its id which is unique within a class. However, by using the Solr @Field annotation for making Solr ...
0
votes
1answer
56 views
Indexing HTML files using SOLR
Am trying to index a set of HTML files using SOLR. Basic idea is to implement a site search functionality for the website developed. Am very new to Lucene and SOLR and have tried a few samples ...
0
votes
1answer
107 views
how to solve org.apache.lucene.index.CorruptIndexException error in Apache Solr?
Am using Apache Solr 3.1.0 with Lucene 3.1.0. While indexing server got stopped due to hardware failure. I restarted my server but solr indexing is not happening.
am getting
SEVERE: ...
0
votes
0answers
75 views
Solr: Number of posted files does not equal maxDoc
I apologize in advance if this question has already been answered somewhere - I wasn't able to find it.
I'm relatively new to Solr, and have been following the instructions given by the tutorial for ...
0
votes
0answers
59 views
solr indexing taking long time-solr search
I have 10 Mb of mysql data. I am using solr lucene with tomcat on my amazon server. BUt the solr lucene is taking too long time. It has already taken about 7 hours yet still not completed. No records ...
0
votes
0answers
67 views
Solr data indexing , returns only one field
I am trying to use solr for indexing data from my data base.
After I index data, when I query . .
i get just the id field in result. not all the fields which I had in my query.
My data-config.xml
...
0
votes
1answer
74 views
How do I deal with multiple word keyphrases and exact search in Solr?
How do I deal with multiple word keyphrases and exact search in Solr?
Hi. I need some help on the following issue:
I am indexing a list of shops of which each shop has a list of productwords that ...
3
votes
1answer
56 views
Apache solr set domain priority
I crawled with nutch 3 domains (domain01, domain02 and domain03).
I want to get all posts which contains specific keyword (ex. "champions league"), and than in results first show the posts from ...
1
vote
1answer
235 views
Solr connection timeout during indexing?
I have solrj client with infinite timeout(Solr4)
server.server.setSoTimeout(0)
server.server.setConnectionTimeout(0)
When I index my data I have many timeouts on server side.
Where can I update ...
0
votes
1answer
89 views
Trimming fields when adding documents to Solr
I'm using the DataImportHandler from Solr to index certain data from a database. However, the database table scheme uses CHAR-fields, so they have a fixed width and have some trailing spaces.
I'm ...
2
votes
1answer
229 views
CopyField issue on Solr4.1
I am using Solr 3.6.1 and I am very satisfied. Now I want to move on solr4.1. So I took “schema.xml” and “solrconfig.xml” (with minor changes) and place them under my new solr4.1 configuration. The ...
0
votes
1answer
128 views
how to index text file in solr line by line
i have a large Arabic Text File that contains Tweets each line contains one tweet ,
that i want to index in solr such that each line of this document should be indexed in a separate solr document
...
1
vote
2answers
204 views
How to Index nested json objects in solr
I have a json object like this,
{
"id" : "123",
"name" : "aaa",
"loc" : {
"lat" : "",
"lon" : ""
},
}
In solr i added a field like
<field name="loc" type="string" ...
0
votes
1answer
216 views
Solr “starts with” and “phrase” index
I am trying to create an index that'd allow me to do queries based on "starts with" on individual words and partial phrases.
For instance, given the text "blah blah stuff couple blue drums blah more ...
2
votes
0answers
127 views
How to index new data with Solr 4.0 when the database is updated?
I have a database populated with fetched and parsed web pages. Does Solr know automatically which of the columns are updated to index only the changes? Or should i make my own java code or something ...
0
votes
0answers
43 views
Solr Index Error?
I have Drupal 7.14 and Solr 7.x-1.0-rc2.
I am having following ERROR on Indexing out:
An AJAX HTTP error occurred. HTTP Result Code: 500 Debugging
information follows. Path: ...
0
votes
0answers
75 views
solrnet in .net webservice
I have used solr in my web application and it is working fine. I am using solrnet.dll for using solr search. In web application I write the solrnet init code in global.asax in application_start and it ...
0
votes
0answers
37 views
Remove duplicates without considering position
Is there any Filter Factory that can be used to remove duplicates without considering positions?
I cannot use the RemoveDuplicatesTokenFilterFactory because it considers positions [stack].
1
vote
1answer
46 views
How to filter numeric values when indexing a text field in solr
My question is: How can I remove numeric values in text field?
Eg. "ABC COMPANY
SUITE 39
165 MICHIGAN AVE
LANSING MI 48909"
In order to get the folowing terms: "ABC | COMPANY | SUITE | MICHIGAN | ...
0
votes
1answer
80 views
solr index database column name is different from the solr field name
I want indexing a database with a solr field name different from the column name "TR.nom" :
<entity name="id" query="select R.id, R.titre, R.description, TR.nom
from ...
1
vote
1answer
131 views
Data Import in Solr from SQL
I am working on indexing data from MySql into Solr . Following is the response XML I received after this command : localhost:8080/solr/dataimport?command=full-import&flush=true
<response>
...
1
vote
1answer
38 views
Can I replace a new Field's data in Solr?
Can I replace the data in the field using filter?
Let assume data.
<doc>
<field name=id>1</field >
<field name=contents>a article about specific subject</field>
...
0
votes
0answers
138 views
Drupal 7 Solr Indexing Error showing “EntityMalformedException: Missing bundle property on entity of type taxonomy_term”
In Drupal 7.14, when i Index my Whole Site, Solr is showing following error:
AJAX HTTP error occurred. HTTP Result Code: 500 Debugging information follows.
Path: /batch?id=1938&op=do StatusText: ...
0
votes
1answer
74 views
Dynamic Indexing using Solr
How to do dynamic indexing in solr 4.0 using DataimportHandler and mysql database?
I have data-config.xml file with database information and query for indexing. Is there any way to index dynamically ...
0
votes
1answer
190 views
How to run Apache-Solr server as background process?
I am using Apache-Solr for indexing and searching in my java application.
If want to perform any operation related to Apache-Solr then the solr server is must to be started.
Sometime the terminal in ...
1
vote
2answers
110 views
SOLR index time boost depending on the field value
Is it possible to boost a document on the indexing stage depending on the field value?
I'm indexing a text field pulled from the database. I would like to boost results that are shorter over the ...
3
votes
1answer
136 views
Solr 4.0 searching in string field
We upgraded from Solr 3.6 to Solr 4.0. Unfortunately the behaviour of how to retrieve a document from the index by a unique key has apparently changed.
In Solr 3.6 the following query retrieves a ...
2
votes
2answers
506 views
Handling umlauts and accents with Solr
We use Solr 3.6 to index a document collection (DBLP). The meta-data of some documents is in German. For handling umlauts and accents we use the ASCIIFoldingFilterFactory (see schema.xml).
When ...
0
votes
1answer
186 views
solrcloud expanding index without downtime
From what I understood, by reading the solrcloud examples is that you can declare a number of solr instances cores, for example 2, and than create on them a distributed index.
But what if by adding ...
2
votes
0answers
494 views
Error while indexing in solr data crawled by nutch
I am starting working with nutch and solr and I have a problem with integrating Solr with Nutch. I followed the tutorial: http://wiki.apache.org/nutch/NutchTutorial and after using:
bin/nutch crawl ...
0
votes
1answer
114 views
Unsuccessful update request. Response Code 0. (null) when indexing in solr
I'm stuck with my new local installation of solr. Every thing works fine until a certain point.
I can access the admin of solr without any problem : http://localhost:8983/solr/admin/
but when I ...
1
vote
2answers
324 views
Removing Solr duplicate values into multivalued field
My Solr index contains a multivalued field with duplicate values. How can I remove the duplicates ?
Is it possible to overwrite duplicate values into the multivalued field when indexing ?
Thanks
0
votes
0answers
113 views
Does SOLR 4 know if a document has changed on an update?
I am designing a system to index meta-data. As the full data comes in I will extract several pieces of information (meta-data) and create a SOLR document and add that document to SOLR. When a ...
0
votes
1answer
50 views
define many entities and search at single entity type at solr
I have database with 4 tables which is person,location,cities,countries now i want to be able to search in every particular table (like search for all countries start with united) and also search in ...
1
vote
2answers
533 views
How do I index HTML files into Apache SOLR?
By default SOLR accepts XML files, I want to perform search on millions of crawled URLS (html).
0
votes
0answers
56 views
How should scheme for SOLR file look for specificly nested xml files
I have xml files that I need to index in SOLR, but they are nested in a way that are difficult for me to declare in scheme.xml :
<message>
<messageType>first</messageType>
...
0
votes
0answers
31 views
Indexing a recently created file with SOLR
I want to index a newly created xml file with SOLR, is the way using 'delta-import' the only one? Or is there a way to use a path to this new file to index it fast? I was thinking about creating for ...
1
vote
1answer
41 views
Is it possible to call dih with a path to a file?
I'm working on a project where a log is generated after each operation. Is it possible to call DIH whenever a new log is generated with a path to this file as a parameter?
