Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

IDIEP-81
Author
Sponsor
Created

 

Status

Status
colourRedGrey
titleDRAFTIN PROGRESS


Table of Contents

Motivation

The IEP is intended to eliminate all the current limitations with cluster management and provide additional features which may be available out of the boxsimplify, standardise, unifies development of Ignite management commands by providing declarative API for arguments and unified command invokers via various protocols - CLI, JMX, REST.

Overview

All of Ignite Cluster management operations are presented as running compute tasks over the cluster. Depending on the management operation required to be executed some of the tasks are running on a single Ignite node only or performing full compute operation overall cluster nodes with reducing the computation result on the originating node.

...

Without handlers and abstractions mentioned above, a new management task won't be available for a user even if it persists in the node classpath (it's still possible to run it using the ignite thin client). Most of such handlers and abstractions look like a boilerplate code and must be covered by some internal command exposer.

There are no any sufficient abstractions in any protocol and each protocol has (or has no if you lucky) slightly different logic.

Moreover, format of arguments, help messages and other things are not standardized and have different logic from command to command. 

Command Plugin Extension

Ignite plugins have no control over the cluster management operations. The built-in management tasks can't be extended by Ignite running with custom plugins and even more, they can't be available through the standard Ignite's REST, JMX, CLI APIs.

Internal Binary Protocol

Ignite CLI uses under the hood its own internal communication protocol so-called Binary Rest Protocol which enables CLI tools to communicate with the existing Ignite cluster and run some compute tasks, perform cache operation, as well as has listeners of topology changes. An instance of the GridClient started each time a new management operation executes the same way as an instance of IgniteClient can do which in turn is a part of the official Ignite Binary Protocol. Taking into account that the Binary Rest Protocol which is used for the CLI tool fully undocumented looks like 

Security and Role Model

Ignite has some management tasks that don't obey the role model controlled by SecurityManager and has different execution flow depending on which execution context is set. For instance:

  • a management task uses the internal API guarded by the SecurityPermission enum - both permissions for task execution by name and security permissions must be checked by SecurityManger (it seems only single permission must exist);
  • a management task has GridTaskThreadContextKey#TC_SKIP_AUTH in its execution context - the authorization will be skipped at all;
  • a management task has @GridInternal annotation - the task execution won't be covered by job execution events, so the external audit systems will skip the security issue;

All of the issues above require management tasks to be always being executed in the same manner with the same security context.

Design Issues

The following design issues based on current management task implementation are present:

  • commands and sub-commands have a common compute task return type, thus the result of running a particular sub-command will have unnecessary return data;
  • some CLI implementations like the ignite-visor-console are running the Ignite node in a special daemon mode which doesn't look like an error-prone approach;
  • it is not possible to add and run new management tasks at the cluster runtime (e.g. REPL mode for CLI tools can't be used);

Features

The following new features can be available out of the box with minimal additional source code changes:

  • autogeneration AsciiDoc documentation for management commands with converting them to HTML and Unix man pages;
  • integration with existing command-line frameworks like jcommander [2], picocli [3] etc.

Description

Description

This IEP is primary focused on providing good abstraction for command invocation which includes:

  • Internal framework to declarative command definition.
  • Migration of existing commands to new framework without any changes in public behavior(if possible).
  • Creation of commands registry which provide unified access to all commands known by Ignite. 
  • Creation of invokers for all popular protocols. Each invoker must be able to invoke any of the command based on definition:
    • CLI - control.sh.
    • JMX.
    • REST - Open API bindings and REST endpoint.
  • Automatic documentation creation:
    • Ascii doc during release preparation.
    • man/tldr pages.

Keeping in mind that command will be described in declarative way all newly created commands will be automatically available and used by all of the features above. 

Design Model

Command Execution

...

  1. A ProxyManagementTask - an entry point for each management request through the thin client API.
  2. Input arguments to find the required command by given path.
  3. Input argements to execute the corresponding command with. This is a map of parameters with String  as a key, and String  or String[]  as a value.
  4. The output execution result – BinaryObject. It may be formatted to different string results depending on what type of client is used (e.g. REST, CLI, JMX). 

Command Registration

  1. Static Registration
  2. ServiceLoader
  3. Annotation Scanner

Command Execution Model

draw.io Diagram
bordertrue
diagramNameCommand Registry
simpleViewerfalse
linksauto
tbstyletop
lboxtrue
diagramWidth1433
revision1

...