You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-dev@lucene.apache.org by "Eric Pugh (JIRA)" <ji...@apache.org> on 2009/05/20 19:09:45 UTC

[jira] Created: (SOLR-1178) Retrieve CoreContainer from EmbeddedSolrServer

Retrieve CoreContainer from EmbeddedSolrServer
----------------------------------------------

                 Key: SOLR-1178
                 URL: https://issues.apache.org/jira/browse/SOLR-1178
             Project: Solr
          Issue Type: Improvement
    Affects Versions: 1.4
            Reporter: Eric Pugh
            Priority: Minor


Submitting the patch suggested by Paul Noble to deal with this issue:

Hi all,

I notice that when I use EmbeddedSolrServer I have to use Control C to stop the process.  I think the way to shut it down is by calling

coreContainer.shutdown().

However, is it possible to get the coreContainer from a SolrServer object?  Right now it is defined as protected final CoreContainer coreContainer;.

I wanted to do:

((EmbeddedSolrServer)solr)getCoreContainer.shutdown();

But is seem I need to keep my own reference to the coreContainer?

Is changing this worth a patch?

Eric


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (SOLR-1178) Retrieve CoreContainer from EmbeddedSolrServer

Posted by "Eric Pugh (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/SOLR-1178?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Eric Pugh updated SOLR-1178:
----------------------------

    Attachment: embedded_solr_container.patch

Patch file, and I added a really stupidly simple test.  I added it to TestSolrProperties.java just cause it didn't seem worth creating another .java file, and I don't know if we need it.

> Retrieve CoreContainer from EmbeddedSolrServer
> ----------------------------------------------
>
>                 Key: SOLR-1178
>                 URL: https://issues.apache.org/jira/browse/SOLR-1178
>             Project: Solr
>          Issue Type: Improvement
>    Affects Versions: 1.4
>            Reporter: Eric Pugh
>            Priority: Minor
>         Attachments: embedded_solr_container.patch
>
>
> Submitting the patch suggested by Paul Noble to deal with this issue:
> Hi all,
> I notice that when I use EmbeddedSolrServer I have to use Control C to stop the process.  I think the way to shut it down is by calling
> coreContainer.shutdown().
> However, is it possible to get the coreContainer from a SolrServer object?  Right now it is defined as protected final CoreContainer coreContainer;.
> I wanted to do:
> ((EmbeddedSolrServer)solr)getCoreContainer.shutdown();
> But is seem I need to keep my own reference to the coreContainer?
> Is changing this worth a patch?
> Eric

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.