Solrj is a java client to access solr. It offers a java interface to add, update, and query the solr index. SolrJ hides a lot of the details of connecting to Solr and allows your application to interact with Solr with simple high-level methods.

learn more… | top users | synonyms

0
votes
0answers
7 views

Solrj IOException occured when talking to server

I am using basic authentication. My solr version is 4.1. I can get query results but when I try to index documents I am getting the following error message: ...
0
votes
1answer
17 views

Get Solrconfig components in java application using solrj

I've set the default field for solr search in solrconfig.xml under requesthandler defaults. <requestHandler name="/select" class="solr.SearchHandler"> <lst name="defaults"> ...
0
votes
0answers
13 views

Solrcloud delete collection bug?

First,I create a collection called usercollection http://xxxxx/solr/admin/collections?action=CREATE&name=usercollection&numShards=3&replicationFactor=3&maxShardsPerNode=3 Then I ...
0
votes
1answer
17 views

I'm getting java.lang.RuntimeException in solr

I'm getting above exception and failed to indexing the data to solr Full Import failed:java.lang.RuntimeException: java.lang.RuntimeException: ...
0
votes
0answers
25 views

injecting HttpSolrServer into spring is throwing error Ambiguous constructor argument types

Exception in thread "main" org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'solrProductServer' defined in class path resource ...
0
votes
0answers
20 views

SolrCore shuts down, throws NullPointerException

I am configuring Solr for the very first time. Google has yielded very little insight. I see questions postesd that are similar to my issue, but not the same. I have a SolrCore called collection1 ...
0
votes
1answer
18 views

Solr highlights shorter similar words

Looking for some help in pointing me in the right direction. I am new user to SOLR and am using solrj to pull data back from the search engine. Everything seems to work fine except the highlighting ...
0
votes
1answer
25 views

NoClassDefError showing in SolrJ calls inside GWT

I'm making calls to Solr using SolrJ from inside a GWT project. I have included all solrj dependent classes in the project including those for which the NoClassDefFound error is showing. But I don't ...
0
votes
0answers
13 views

Using an EmbeddedSolrServer in SolrCloud case

I am currently building an application that is load-balanced (externally via Apache), which starts an Solr 4.2 instance (or more specifically a CoreContainer). I want to set up a SolrCloud that spans ...
0
votes
2answers
40 views

Solr fails with “missing required unique key id” error

There were a few questions on the similar topic but their resolutions do not seem to fit my case. Env: Solr4.2.1, Tomcat 7 I am trying to index public movielens data, and started (as everybody) with ...
0
votes
2answers
34 views

Portability of Solr index

I have built a SOLR Index on Windows 7 Enterprise, 64 Bit. I copy the index to Centos release 6.2, 32 Bit OS. The index is readable and the application is able to load data from the index on Linux. ...
0
votes
0answers
41 views

What is the best user interface for solrj search results?

I have used solrj for a JSF web application. I need some guidance for making a nice user interface for search results. I use faceted searching. I have found some projects like Drupal and blacklight ...
0
votes
1answer
85 views

Is there any SolrJ documentation available for connecting with Solr 4.0 or ahead

I'm unable to connect to my Solr instance on Tomcat from SolrJ. I've been through the documentation shown at "http://wiki.apache.org/solr/Solrj" , but its pretty outdated - primarily because it has no ...
0
votes
1answer
80 views

Solrj Client Vs Plain HTTP Calls

I have tried to communicate with Solr through Solrj client and also through plain HTTP calls. Both are working fine. But, Which among these options would be a better bid? Which can be considered ...
0
votes
2answers
57 views

Solr, how to use the new field update modes (atomic updates) with SolrJ

Solr 4.x has this nice new feature that lets you specify how, when doing an update on an existing document, the multiValued fields will be updated. Specifically, you can say if the update document ...
0
votes
1answer
28 views

Solr: How to show if searched keywords are matched or not?

I don“t want to highlight the searched keywords, I need just the information which keyword exists in a document. My search looks like this: q=keyword1 OR keyword2 OR keyword3 OR keyword4 The result ...
2
votes
3answers
88 views

How many documents can I index in Solr server in one add() call? [closed]

I wrote an application indexing documents on a Solr server. When I try to add some hundreds, everything works fine, but when I try to index the whole content of the database (some 4500 documents) in ...
0
votes
1answer
49 views

What is the default address of Solr Server (Solr 4.0) for use from a SolrJ client

I'm trying to connect with Solr Server from a SolrJ client but it gives an HTTPResponse Exception: Here's my code: SolrServer server = new HttpSolrServer("http://"localhost":8983/solr/"); Here's the ...
-2
votes
1answer
35 views

Is there any way to delete the index of only one row in solr using solrj

I have made a java apllication which can index my last row (which is what I wabt) But now I ask Is there any wa yo deete the index of this role! Can you give me directions how to do that or maybe ...
0
votes
0answers
227 views

Exception in thread “main” java.lang.NoSuchFieldError: DEF_CONTENT_CHARSET

Hello I try to index a row in my database in solr from my java application. I have added the necessary jars, but I keep on getting this error. My solr schema is right and I make request just add new ...
0
votes
0answers
16 views

Nested JSON Indexing in Solr4

I tried Indexing a sample JSON of type: { name: 'ben', state: 'california', country: 'united states', companies: [ { name: 'google', title: 'software engineer', }, { ...
0
votes
1answer
54 views

Doing an MLT (More Like This) Query in Solrj

I am using the recent Solr 4.2.1 solrj libraries. I am trying to execute an MLT Query from a java program. It works fine as long as I only provide small chunks in the stream.body, but that kind of ...
1
vote
2answers
34 views

Solr not returning documents in id search

I'm using distributed search with solr 4.2.x and it seems to crash on one of the indexes. The error is a NullPointerException, which I've debugged to the following case Assuming I have two indexes ...
0
votes
1answer
34 views

How to Print Our Own Coumn Name in CSV Response From Solr?

I want to get the response from solr as CSV Format and write the response as a CSV file. I have done this using CSV Foramt Options in Solr. I have set csv.headerfields as true. The Header Fields are ...
0
votes
1answer
36 views

Solr full refresh without deleting index

I want to do solr full refresh with out deleting the index so that the data can be accessed until full refresh is done. Once the full refresh is completed the old index has to be removed. How can i do ...
0
votes
0answers
19 views

How to Convert Lucene Query to Solr Quey and Get results From Solr Server

How to convert Query q = new MultiFieldQueryParser to QParser createParser in java and How to map Lucene Fields to Solr Fields
0
votes
1answer
80 views

Solrj client and XML response

I am using solr4.0 in jetty server. I want to query solr using solrj and expecting results to be formatted in XML. So i used HttpSolrServer (CloudSolrServer and LBHttpSolrServer does not provide ...
0
votes
0answers
67 views

indexing consumes more time in solr 4.2 version

I have indexed around 2,5000 documents in Solr 3.5 and 4.2 versions with default configurations. But Solr 3.5 takes 22 minutes to index at the same time Solr 4.2 takes around 25 minutes. So 4.2 ...
0
votes
2answers
62 views

solr java.lang.NoClassDefFoundError: org/apache/solr/common/ResourceLoader

For a tests reason I am trying locally to use EmbeddedSolrSolver (I know it's deprected it's only for tests). I was fallowing this example ...
0
votes
1answer
42 views

More like Solr Query filtering

I was trying to use the MLT (more like this) feature of SOLR but was stuck on how to use the filtering of related content. For e.g My documents in solr have following different categories sports, ...
0
votes
1answer
43 views

elasticsearch equivalent of EmbeddedSolrServer for Solr

Is it possible to update index built using elastic search without the overheads of http and serialization? I am searching for an elasticsearch equivalent of EmbeddedSolrServer available with solrj.
0
votes
0answers
43 views

solrj: QueryResponse.getBean(): Exception while setting value of an custom-class-object elements (java)

I'm trying to use solrServer.addbean() to store response object to solr and solrServer.getbeans() to read data from solr. Data is read using: doc = ...
2
votes
0answers
27 views

Implement Image Indexing on a color palette based on indexing for text documents (Solr)

I have added doubletype fields into the solr document. But it is being added as a map of string fieldname, string[] fieldvalues as the pre-built API supports only that. So does this mean I cannot ...
0
votes
0answers
47 views

Update and query documents with Solrj

In my Java application I insert a lot new documents to Solr (4.2) and also make queries with Solrj. After reading the section "Streaming documents for an update" in the Solrj Wiki page I am still ...
0
votes
1answer
32 views

I am new to apache solr, and working on a package. The index created by solr has only .CFS, .gen, insegmentparents file, and .del file

I know it contains header and file data in raw format, but does this mean everytime i query the index, the raw data is processed to find out the frequency of terms? Since I cannot see a .frq file? Is ...
0
votes
2answers
78 views

How to perform these SOLR queries?

I have an indexed data(indexed using solrj from rdbms) having fields related to banking such as(sample):customerid, cust_name, accountno, amount, positions, pos_value, EOD_value etc Now i want to do ...
0
votes
1answer
40 views

helloword solj programe goves me an exception 'bad request'

I try to index this data in solr from my java application. The problem is that it gives me this exception Exception in thread "main" org.apache.solr.common.SolrException: Bad Request Bad Request ...
0
votes
0answers
23 views

trying to index postgresql database using solrj

I'm new to solr and my question may be easy but i can't understand why I've got table ehich I have already indexed in solr (so I've already have the fields of this table in the schema.xml). SO i ...
0
votes
1answer
45 views

java.lang.Exception: Bad Request when i try to index my postgresql table using solrj

I try to index the records from my postgresql database in sol using solrj The problem is that the code gives me an exception 077 [pool-1-thread-1] INFO ...
0
votes
1answer
340 views

Exception in thread “main” java.lang.NoClassDefFoundError: org/apache/commons/codec/DecoderException

I try Querying Solr via Solrj Here is my code public class ReadFromSolr { public static void main(String[] args) throws MalformedURLException, SolrServerException { String url = ...
0
votes
1answer
80 views

Solr : How to search keywords starting with number and also contains characters other than numerals?

How can I define field for predictive search in order to search keywords like "1902 story"? If I enter character '1' it should return all phrases/words starting with number 1. Current Field ...
1
vote
1answer
57 views

How to add shards dynamically to collection in solr?

Using the following query when I create the collection I set two shards for the collection10. /solr/admin/collections?action=CREATE&name=collection10&numShards=2&replicationFactor=2 But ...
0
votes
1answer
116 views

How to configure Solr for improved indexing speed

I have a client program which generates a 1-50 millions Solr documents and add them to Solr. I'm using ConcurrentUpdateSolrServer for pushing the documents from the client, 1000 documents per request. ...
4
votes
1answer
164 views

Solr : Inconsistent search results

I am experiencing inconsistent search result for a particular keyword in Solr. Behavior: For e.g. Keyword is 'music' and have 3 document indexed containing this keyword. Perform search with this ...
0
votes
0answers
52 views

use addbean in Solr ContentStreamUpdateRequest

I have a use case in Solr that I'm struggling with. I want to be able to send beans and binary data to solr for indexing. For the beans i'm using something like: server.addBean(myBean); For the ...
0
votes
0answers
98 views

Using CloudSolrServer as SolrJ client

My question is when we are using CloudSolrServer, we specify single zkHost address and LBHttpSolrServer. Now CloudSolrServer does extracts information about alive and dead nodes from zookeeper ...
0
votes
0answers
34 views

Retrieve documents based on the number of occurrences of a value in a certain field;

So here is my problem. I have a solar index in which I add documents with several fields, one of them being "name". The question is: how could I retrieve the documents that have the value of the ...
0
votes
2answers
51 views

Is there any MySQL's stored procedure alternative in Apache Solr?

Actually I have already created Web Application that widely uses MySQL Store Procedure. Now we want to integrate Apache Solr in our Web Application. In existing application,the Store Procedure takes ...
0
votes
1answer
54 views

Use Solrj in OSGi Container

I have a jax-rs service that i'm deploying into fuse esb which uses solrj to connect to a solr server. I've added the following maven dependancy to the project: <dependency> ...
0
votes
1answer
55 views

Override getSchemaFile and getSolrConfigFile

I'm migrating my Solr test project to Solr 4.1 and I can't override the methods getSchemaFile() and getSolrConfigFile(). I'm getting the following errors: [ERROR] ...

1 2 3 4 5 8