Hi, Igniters.

    We've found that invocation results from some MX beans might not be properly represented on clients like jconsole [1]. In the exception cases. We pass Ignite exceptions or JMException with Ignite exception causes to the client. And the client fails to unmarshal unknown exceptions instead of showing failure reason.

Examples:

 * /IgniteMXBean.clusterState()/ can throw /IgniteException/
 * /IgniteMXBean.executeTask()/ can throw /JMException/ holding
   /IgniteException/
 * /IgniteClusterMXBean.tag()/ can throw /JMException/ holding
   /IgniteException/


Solutions might be:

1. For existing /JMExceptions/ let's keep only the error message and
   hold no cause which can't be deserialized.
2. #1 + Let's throw just /RuntimeException/ with the error message
   instead of /IgniteException/ (for example in
   /IgniteMXBean.clusterState()/).
3. #1 + Let's use and declare similar /'throws JMException'/ at methods
   like /IgniteMXBean.clusterState()/. But the user code that uses
   mx-bean public API might not be compiled with this change.
4. Deprecate these exception-throwing methods and bring new ones
   returning string-result like "OK" or "failed: cause". But
   /IgniteMXBean/ has already had several change-cluster-state methods
   including deprecated.


My suggestion is #3. WDYT?


[1] https://issues.apache.org/jira/browse/IGNITE-16416

Reply via email to