Questions tagged [solr9]

22 questions
2
votes
0 answers

When Solr 9 updates managed-schema.xml on the file system?

In the out of the box configuration (standalone) with a custom configset I observed that sometimes the managed-schema.xml changes, sometimes it does not when creating and filling new core with data. Noticed this because the configset is under…
Roman Susi
  • 4,135
  • 2
  • 32
  • 47
1
vote
2 answers

Solr: SimplePostTool not found error using quick start guide

I am learning Solr and using the quick start guide. When posting the example documents to the Solr core using the command: java -jar -Dc=techproducts example/exampledocs/post.jar *.xml I get those errors: Error: Could not find or load main class…
Brajesh
  • 441
  • 1
  • 5
  • 14
1
vote
0 answers

SOLR: Dropping not compliante values in an insert operation instead of canceling the whole transaction

I have a Solr Server with a managed schema. The data that gets stored in it does however not always abide the defined types. The problem here is that cleaning the data properly would take way too long for the amount of data that is inserted.…
Eric
  • 115
  • 1
  • 10
1
vote
2 answers

How to set solr index data path version 9.2.0

I have a linux system and installed solr 9.2.0 and started solr. My solr installation path is /opt/solr-9.2.0/ and I tried creating a core by doing the following steps mkdir -p /opt/solr-9.2.0/server/solr/samplecore/conf cp -pr…
TheNerdRaj
  • 11
  • 1
1
vote
0 answers

Solr 9.0.0 [doc=null] missing required field in case of Partial Atomic Update - Bug in Solr code

In Apache Solr 9.0.0 while performing partial update it give below error [doc=null] missing required field: id This happens even after providing id field which is uniquefield as well. While investigating we saw that it this error occurs because of…
Kailash
  • 21
  • 5
1
vote
1 answer

Solr 9: Dense Vector input being converted to pdouble format

I passed a dense vector to Solr9 for indexing but it takes the values passed and put them into a variable whose data type is pdoubles. I have made changes to the managed-schema.xml to identify the field named vector as a knn_vector, but solr…
1
vote
1 answer

SOLR 9 - Delete Schema from Schema Designer

I am trying to delete a schema from SOLR 9. The schemas were created as part of following the tutorials: https://solr.apache.org/guide/solr/latest/getting-started/tutorial-films.html The schema designer doesn't seem to have an option to…
user2260040
  • 1,275
  • 1
  • 13
  • 26
1
vote
0 answers

Why solr error in logs when adding documents

I am getting Error when am adding document. My process will be deleting document with id and adding whole document again. I am using spring boot solr to do this operations. Most of the time document is added but some time I see it is missing in solr…
wpd
  • 21
  • 1
  • 5
0
votes
0 answers

Solr 9.2.1 server SolrJ index and retrieve issues

Env: Solr 9.2.1 docker image I am using Parent POJO, Child POJO and indexing with SolrJ library I am looking for SolrJ solution who could help me managed-schema.xml updated with
Narayana Basetty
  • 129
  • 3
  • 13
0
votes
0 answers

Solr 2 nodes setup not working with zookeeper

I have a 2 solr node setup with 3 zookeeper nodes.I was running with 8.11 version and it was working all fine. Now, I have upgraded solr nodes to 9.12 and when I start solr service on both of them, it starts on 1 node but never start on the other…
0
votes
0 answers

How to create Solr schema for collection using api in Solr Cloud mode?

I created new collection curl --request POST \ --url http://localhost:8983/api/collections \ --header 'Content-Type: application/json' \ --data '{ "create": { "name": "members", "numShards": 1, "replicationFactor": 1 } }' And by…
0
votes
0 answers

Bitnami Solr not able to push configsets

I have solrcloud deployment by bitnami hosted on kubernetes, I am trying to push custom configsets using solr zk upconfig -d -n -z but the configsets are not reflected on the server.
Chinmaya B
  • 405
  • 1
  • 7
  • 21
0
votes
0 answers

Keywords not identified in solr cloud mode

I have a solr schema in following format { "id": , "keyword": "apple", "type": "fruit" } when I try to query "keyword": "get me 10 apples" This query returns correct results on solr standalone mode, same query fails to execute on solrcloud…
Chinmaya B
  • 405
  • 1
  • 7
  • 21
0
votes
1 answer

Using Tesseract OCR with Solr 9.1

I had a set up running where I could extract in Solr (8.11.2 with tika 1.27) and get OCR from Tesseract (5.2.0). To do this i had updated TesseractOCRConfig.properties inside tika-parsers-1.27.jar…
Blem
  • 796
  • 16
  • 36
0
votes
0 answers

Solr 9 - How can I delete document?

I'm trying to delete a solr document with the following but it is not being removed from the repository: http://localhost:8983/solr/cd1/update?commit=true&stream.body=%3Cdelete%3E%3Cquery%3E_version_:1743777526692446200%3C/query%3E%3C/delete%3E The…
mrcrag
  • 310
  • 3
  • 16
1
2