You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@solr.apache.org by "ilariapet (Jira)" <ji...@apache.org> on 2023/05/25 13:08:00 UTC

[jira] [Commented] (SOLR-15494) Unexisting feature store in list after feature extraction

    [ https://issues.apache.org/jira/browse/SOLR-15494?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17726215#comment-17726215 ] 

ilariapet commented on SOLR-15494:
----------------------------------

PR: https://github.com/apache/solr/pull/1487

> 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
>          Components: contrib - LTR
>    Affects Versions: 8.8.1
>            Reporter: Anna
>            Priority: Minor
>              Labels: learning-to-rank
>
> 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.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@solr.apache.org
For additional commands, e-mail: issues-help@solr.apache.org