I'd like to have a single instance of Solr, protected by some sort of authentication, that operated against different indexes based on the credentials used for that authentication. The ... |
In my current project I need to index all e-mails and their attachments from multiple mailboxes.
I will use Solr, but I don't know what is the best approach to build my ... |
I'm considering the use of Apache solr for indexing data in a new project. The data is made of different, independent types, which means there are for example
|
I have just started using SOLR. I have configured the data directory in the solrconfig.xml. However, I've noticed that a subdirectory called index is always created in the end. Is there ... |
Afternoon guys,
I'm using a SOLR index for searching through items on my site. The search results contain an average rating of the item and an amount of comments the item ... |
I am indexing some files written in spanish in Solr, and sometimes appears chars like ¿D é ....
I wonder if there is some TokenFilter to avoid this chars when ...
|
I am trying to build the spellcheck index with IndexBasedSpellChecker
<lst name="spellchecker">
<str name="name">default</str>
<str name="field">text</str>
<str name="spellcheckIndexDir">./spellchecker</str>
</lst>
And I want to specify the dynamic field "*_text" as the field ... |
|
Is there a way to store information about documents that are stored in Lucene such that I don't have to update the entire document to update certain attributes about the documents? ... |
How do we create multivalued index through code.
|
I implement search engine with solr that import minimal 2 million doc per day.
User must can search on imported doc ASAP (near real-time).
I using 2 dedicated Windows x64 with tomcat ... |
I am having a problem with striping punctuation from the solr index
When the punctuation sign follow right after a word then this word is not indexed properly.
For example: if we index ... |
I'm working on a structured document viewer, where each Solr document is a "section" or "paragraph" in a large set of legal documents, along with assorted metadata. I have a corpus ... |
I am new to Solr.
When i index the files, every variable gets indexed, but some are not searchable, how can i stop solr from displaying any results in that case.
|
I'm having an issue querying Solr using the following field type:
<fieldType name="text_ci" class="solr.TextField" positionIncrementGap="100">
<analyzer>
<tokenizer class="solr.WhitespaceTokenizerFactory"/>
<filter class="solr.LowerCaseFilterFactory"/>
...
|
Do I need to rebuild a Lucene index when I only add a random field to a schema? Or could I run some code to update that field without rebuilding ... |
I have 120k db records to commit into a Solr index.
My question is:
should I commit after submitting every 10k records, or only commit once after submitting all the 120k records? ... |
We have a general question about best practice/programming during a long index rebuild. This question is not "solr specific" could just as well apply to raw Lucene or any other similar ... |
At our university they have chosen to implement screwturn wiki. I am responsible for the enterprise search solution at this organisation. This solution is based on Solr-Lucene. I have been looking ... |
I need to figure out how many unique terms are in our Solr (Lucene) index. And by unique terms, I dont mean by document. I mean total unique terms ... |
When I changed my synonyms.txt I only see the diferences when I do this:
- restart solr server
- indexed some item (empty commit?)
Some knows a way to reload synonyms.txt file without restart server?
Tks a ... |
I have an index containing 1.2 billion of documents (Solr 1.4.1). I want to enable faceted navigation on a field (int type) containg around 250 unique values.
I am getting Java heap ... |
I'm working on an update to our company intranet...
Currently I'm looking at into index. One of the cool things about Drupal is the built in search features. Some of the ... |
So I have a solr server running as part of a chef server. Some of my nodes just aren't coming up in searches. I can use ?q=*:* to show the documents ... |
I use SolrJ to send data to my Solr server.
When I start my program off, it indexes stuff at the rate of about 1000 docs per sec(I commit every 250,000 docs)
I ... |
We're setting up a Solr to index documents where title field can be in various languages. After googling I found two options:
- Define different schema fields for
every language i.e. title_en,
title_fr,... applying different
filters ...
|
I have an index that it's size is more than 4GB. So re-indexing costs too much for me.
I'm trying to show facets of search word. My facet_field is "category". Some ... |
|
I'm just getting started with Solr, running it from Tomcat6. I followed all the install instructions and the webapp seems to be running fine. I used curl to to send the ... |
I have two Solr server. The databases every day large amounts of data changes will happen. How I know and automate the problem that, until solr0 adding/commiting/warmuping, while just solr1 serve, ... |
We updated ColdFusion to 9.01 according to the Adobe Docs. Existing Solr Collections were still working, but if we created a NEW collection of type="CUSTOM" nothing was indexed. There are no ... |
How do I index text files, web sites and database in the same Solr schema? All 3 sources are a requirement and I'm trying to figure out how to do it. ... |
Help. For the past two days I've tried to get Solr to index the exampledocs. I've learned a lot, but am completely stuck. I've tried it on two different ... |
I'm trying to build a Spellcheck dictionary in Solr.
I have a multicore set up, my main searchable index (mainIndex) and a secondary one (spellIndex) with a fairly static set of ... |
I am indexing documents by Solr, which were scraped from the web. The documents contain HTML entities (such as £ or £). Mostly the documents contain central european characters. Is there ... |
We are facing some issues with SOLR search.
We are using SOLR 3.1 with Jetty. We have set schema according to our requirement. We have set data-config.xml to import records into the ... |
Possible Duplicate:
SOLR 3.1 Indexing Issue
We are facing some issues with SOLR search.
We are using SOLR 3.1 with Jetty. We have set schema according to ... |
my solrconfig.xml configuration is as :
<mainIndex>
<useCompoundFile>false</useCompoundFile>
<ramBufferSizeMB>32</ramBufferSizeMB>
<mergeFactor>5</mergeFactor>
<maxMergeDocs>10</maxMergeDocs>
<maxFieldLength>10000</maxFieldLength>
<unlockOnStartup>false</unlockOnStartup>
</mainIndex>
and ... |
I have two tables contacts and inventory. These two tables are not related. I want to index these two tables and search using Solr.
Is this possible?
|
is it possible to index some document on cifs server with solr ?
Thanks
|
Currently if I send the following delete-by-query command to Solr, the index should be cleared of all entries:
//<delete><query>*:*</query></delete>
http://<solr-server>:<port>/solr/update?stream.body=%3Cdelete%3E%3Cquery%3E*%3A*%3C%2Fquery%3E%3C%2Fdelete%3E
The response I get from the solr server seems normal:
<response>
<lst name="responseHeader">
...
|
We need control of the data in the production solr index and we need it to be compatible with new development. Ideally, we'd like to mock the index on local machines, ... |
I have a Solr index 1.4 whose size is more than 20 GB. I would like to split it in 2 or 3 indexes.
Lucene 3.3 has the function PKIndexSplitter but it ... |
i have the following in dataconfig_1.xml
<?xml version="1.0" encoding="UTF-8"?>
<dataConfig>
<dataSource batchSize="-1" convertType="true" driver="com.mysql.jdbc.Driver" password="solrpw" url="jdbc:mysql://127.0.0.1/solrDB" user="solruser"/>
<document name="items">
<entity name="root" pk="id" preImportDeleteQuery="data_source:1" query="select a.id, a.body, a.headline ... |
I am investigating whether it is feasable to deploy search servers to the cloud and one of the questions I had revolved around data security. Currently all of our fields ... |
I have a site in which users can post some questions, so I a have a table in mysql like this
question_id, user_id, tags, views, creation_date
what I want is ... |
We are using two solrs to index the files. Sometimes one article is indexed in both solrs because we do update. It cause a problem that the facet counts are not ... |
I am kind of working on speeding up my Solr Indexing speed. I just want to know by default how many threads(if any) does Solr use for indexing. Is there a ... |
I have the schema with 10 fields. One of the fields is text(content of a file) , rest all the fields are custom metadata. Document doesn't chnages but the metadata changes ... |
I have multiple sources of data from which I want to produce Solr documents. One source is a filesystem, so I plan to iterate through a set of (potentially many) files ... |
I have master - slave configuration of solr.On master index will be updated 24X7.its a continuous process.my slave pulls the index from the master after every 30 minutes.
The Problem is this ... |
I have an index containing AT&T as a field , but when I search for this field we cannot put & sign in the query , so it is encoded ... |
I am trying to index VIVO RDF data using Linked Data Index Builder in Apache Solar. But I dont know how to integrate those two. I have a VIVO instance localy ... |
I have a products table on my database, and a table with features of this products. The features table have 3 columns: id, type and value. Id is a foreign key ... |
We need to create our index in Solr and it is taking way too long. We have about 800k records and it seems like it is going to take 15 ... |
I'm setting up a Solr search, using Coldfusion 9 and Solr 1.3 (according to the schema.xml file)
I'm populating the index from multiple data sources. Each one does an optional "delete" ... |
Recently i stared working on solr. I have created index in solr and i want to query on it through my java application. I don't want to use solr.war in my ... |
I need to get the Index Size of the total documents in Apache Solr in Java. And this code is getting the numFound means total number of documents in Apache Solr. ... |
I need to create index from two tables that are not related. But when I try to do so I get the response that record fetched is equal to both tables ... |
I read the Indexing SQL data chapter of the "Web Application Construction Kit", by Ben Forta.
Passing a query object to the CFINDEX tag is great for building an index from scratch ... |
i have a tipical solr stuff: need of indexing documents, only that my documents are related to the topics, not associated with them in advance... in OO paradigm this scenario would ... |
|