Hi, As a general comment, I'd say that the feature you are using is old, pre-dating Solr in-place updates of numeric fields. I recommend switching to that. Maybe the feature you are using should be deprecated.
On Wed, Jan 15, 2025 at 9:10 AM Sagar Gole <sagar.go...@gmail.com> wrote: > 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