You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Vladislav Pyatkov (JIRA)" <ji...@apache.org> on 2018/04/20 15:02:00 UTC

[jira] [Updated] (IGNITE-8348) Debug information about discovery messages in TcpDiscoverySpiMBean

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

Vladislav Pyatkov updated IGNITE-8348:
--------------------------------------
    Description: 
In some discovery issue, like:
1) Behavior on instable network
2) Segmentation of several nodes
or others, when the SPI works does not obviously.
Wants to know - what kind of messages has been sent (receive) from particular node?

By that reason want to add method on TcpDiscoverySpiMBean:

{code}
/**
 * Print a list of discarder messages.
 */
@MXBeanDescription("Print a list of discarded messages to log.")
public void printListOfDiscardedMessages();

/**
 * Print a list of received messages.
 */
@MXBeanDescription("Print a list of received messages to log.")
public void printListOfReceivedMessages();

/**
 * Print a list of sent messages.
 */
@MXBeanDescription("Print a list of sent messages to log.")
public void printListOfSentMessages();
{code}


  was:
In some discovery issue, like:
1) Behavior on instable network
2) Segmentation of several nodes
or others, when the SPI works does not obviously.
Wants to know - what kind of messages has been sent (receive) from particular node?

By that reason want to add method on TcpDiscoverySpiMBean:

{code}
/**
     * Print a list of discarder messages.
     */
    @MXBeanDescription("Print a list of discarded messages to log.")
    public void printListOfDiscardedMessages();

    /**
     * Print a list of received messages.
     */
    @MXBeanDescription("Print a list of received messages to log.")
    public void printListOfReceivedMessages();

    /**
     * Print a list of sent messages.
     */
    @MXBeanDescription("Print a list of sent messages to log.")
    public void printListOfSentMessages();
{code}



> Debug information about discovery messages in TcpDiscoverySpiMBean
> ------------------------------------------------------------------
>
>                 Key: IGNITE-8348
>                 URL: https://issues.apache.org/jira/browse/IGNITE-8348
>             Project: Ignite
>          Issue Type: Bug
>            Reporter: Vladislav Pyatkov
>            Priority: Major
>
> In some discovery issue, like:
> 1) Behavior on instable network
> 2) Segmentation of several nodes
> or others, when the SPI works does not obviously.
> Wants to know - what kind of messages has been sent (receive) from particular node?
> By that reason want to add method on TcpDiscoverySpiMBean:
> {code}
> /**
>  * Print a list of discarder messages.
>  */
> @MXBeanDescription("Print a list of discarded messages to log.")
> public void printListOfDiscardedMessages();
> /**
>  * Print a list of received messages.
>  */
> @MXBeanDescription("Print a list of received messages to log.")
> public void printListOfReceivedMessages();
> /**
>  * Print a list of sent messages.
>  */
> @MXBeanDescription("Print a list of sent messages to log.")
> public void printListOfSentMessages();
> {code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)