Anna created SOLR-15494:
---------------------------

             Summary: Unexisting feature store in list after feature extraction
                 Key: SOLR-15494
                 URL: https://issues.apache.org/jira/browse/SOLR-15494
             Project: Solr
          Issue Type: Bug
      Security Level: Public (Default Security Level. Issues are Public)
          Components: contrib - LTR
    Affects Versions: 8.8.1
            Reporter: Anna


After I execute a feature extraction with a feature store that doesn't exist, 
it appears in the list of feature stores.

Here an example.

Before the feature extraction query:

{
    "responseHeader": {
        "status": 0,
        "QTime": 0
    },
    "featureStores": [
        "first_store",
        "second_store"
    ]
}

I then execute the feature extraction query with a store that doesn't exist:

[features store=*third_store* efi.first_feature=1 efi.second_feature=1]

Then the feature store list becomes:

{
    "responseHeader": {
        "status": 0,
        "QTime": 0
    },
    "featureStores": [
        "first_store",
        "second_store",
        "*third_store*"
    ]
}

After reloading the collection we return to see the correct feature stores:

{
    "responseHeader": {
        "status": 0,
        "QTime": 0
    },
    "featureStores": [
        "first_store",
        "second_store"
    ]
}

 

It seems like a temporarily empty store is created after the feature extraction 
request. This shouldn't happen.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to