This is an automated email from the ASF dual-hosted git repository.
vkulichenko pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/ignite-3.git.
from 2ef376c IGNITE-14890 Using SLF4J log format. Fixes #175
new 4c93ea1 IGNITE-14993 - Choose available port out of a range
new 262022f IGNITE-14994 - Topology snapshot print out
new 5b81332 IGNITE-14995 - Updated NOTICE
new adfc9d4 IGNITE-14996 - Added examples for Table and KeyValueBinaryView
new 9230f61 IGNITE-14996 - Updated examples structure
new 7140111 IGNITE-15005 - Binary distribution README
The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
NOTICE | 5 +
assembly/NOTICE | 0
assembly/README | 0
assembly/README.md | 52 ++++++++++
assembly/assembly.xml | 27 ++++-
examples/README.md | 21 ++++
examples/config/ignite-config.json | 13 +++
.../pom.xml => examples/pom-standalone.xml | 21 ++--
{modules/cli-common => examples}/pom.xml | 11 +-
.../example/table/KeyValueBinaryViewExample.java | 113 +++++++++++++++++++++
.../apache/ignite/example/table/TableExample.java | 109 ++++++++++++++++++++
.../org/apache/ignite/network/ClusterNode.java | 2 +
.../internal/network/netty/ConnectionManager.java | 2 +
.../ignite/internal/network/netty/NettyServer.java | 17 +++-
.../scalecube/ScaleCubeTopologyService.java | 16 +++
parent/pom.xml | 12 ++-
pom.xml | 1 +
17 files changed, 399 insertions(+), 23 deletions(-)
create mode 100644 NOTICE
delete mode 100644 assembly/NOTICE
delete mode 100644 assembly/README
create mode 100644 assembly/README.md
create mode 100644 examples/README.md
create mode 100644 examples/config/ignite-config.json
copy modules/cli-common/pom.xml => examples/pom-standalone.xml (73%)
copy {modules/cli-common => examples}/pom.xml (83%)
create mode 100644
examples/src/main/java/org/apache/ignite/example/table/KeyValueBinaryViewExample.java
create mode 100644
examples/src/main/java/org/apache/ignite/example/table/TableExample.java