You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2017/09/02 03:28:00 UTC

[jira] [Updated] (FLINK-7432) Unclosed HighAvailabilityServices instance in QueryableStateClient

     [ https://issues.apache.org/jira/browse/FLINK-7432?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ted Yu updated FLINK-7432:
--------------------------
    Description: 
{code}
  public QueryableStateClient(Configuration config) throws Exception {
    this(config, HighAvailabilityServicesUtils.createHighAvailabilityServices(
        config, Executors.directExecutor(), HighAvailabilityServicesUtils.AddressResolution.TRY_ADDRESS_RESOLUTION));
{code}
The HighAvailabilityServices instance is only used for calling getJobManagerLeaderRetriever().

The instance should be closed upon leaving QueryableStateClient ctor.

  was:
{code}
  public QueryableStateClient(Configuration config) throws Exception {
    this(config, HighAvailabilityServicesUtils.createHighAvailabilityServices(
        config, Executors.directExecutor(), HighAvailabilityServicesUtils.AddressResolution.TRY_ADDRESS_RESOLUTION));
{code}

The HighAvailabilityServices instance is only used for calling getJobManagerLeaderRetriever().

The instance should be closed upon leaving QueryableStateClient ctor.


> Unclosed HighAvailabilityServices instance in QueryableStateClient
> ------------------------------------------------------------------
>
>                 Key: FLINK-7432
>                 URL: https://issues.apache.org/jira/browse/FLINK-7432
>             Project: Flink
>          Issue Type: Bug
>          Components: Queryable State
>            Reporter: Ted Yu
>            Priority: Minor
>
> {code}
>   public QueryableStateClient(Configuration config) throws Exception {
>     this(config, HighAvailabilityServicesUtils.createHighAvailabilityServices(
>         config, Executors.directExecutor(), HighAvailabilityServicesUtils.AddressResolution.TRY_ADDRESS_RESOLUTION));
> {code}
> The HighAvailabilityServices instance is only used for calling getJobManagerLeaderRetriever().
> The instance should be closed upon leaving QueryableStateClient ctor.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)