Hi Team,

I have configured an `ExternalFileField` field type in my `schema.xml` file
for document scoring using external files, like this:

```xml
<fieldType name="ext_doc_field" class="solr.ExternalFileField"
keyField="id" defVal="1.5"/>
```

This setup works fine during query execution. However, I am facing resource
locking issues due to the `FileFloatSource$Cache.get` method, which causes
delays. Some queries are fast (under 100 ms), but others are taking 5-10
seconds because of these locks. The external file contains data like:

```
doc-121=2.56
doc-122=2.30
doc-123=2.45
```

Could anyone suggest possible solutions to handle these resource locking
issues?


Regards,
Sagar Gole
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@solr.apache.org
For additional commands, e-mail: dev-h...@solr.apache.org

Reply via email to