This is an automated email from the ASF dual-hosted git repository.
vkulichenko pushed a change to branch ignite-3.0.0-alpha2
in repository https://gitbox.apache.org/repos/asf/ignite-3.git.
from 2ae6c60 Update version to 3.0.0-alpha2
new dda1590 IGNITE-14992 - Temporarily commenting out the warning to
avoid excessive output
new 1f6acbb IGNITE-14993 - Choose available port out of a range
new 9b31400 IGNITE-14994 - Topology snapshot print out
new d63d7a2 IGNITE-14995 - Updated NOTICE
new 2090ad7 IGNITE-14996 - Added examples for Table and KeyValueBinaryView
new d26631c IGNITE-14993 - Choose available port out of a range
new a314651 IGNITE-14996 - Updated examples structure
The 7 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/assembly.xml | 29 +++++-
examples/README.md | 21 ++++
examples/config/ignite-config.json | 13 +++
.../pom.xml => examples/pom-standalone.xml | 21 ++--
{modules/cli-common => examples}/pom.xml | 9 +-
.../example/table/KeyValueBinaryViewExample.java | 113 +++++++++++++++++++++
.../apache/ignite/example/table/TableExample.java | 109 ++++++++++++++++++++
.../org/apache/ignite/network/ClusterNode.java | 2 +
.../network/internal/netty/ConnectionManager.java | 2 +
.../ignite/network/internal/netty/NettyServer.java | 17 +++-
.../scalecube/ScaleCubeTopologyService.java | 16 +++
.../ignite/raft/server/impl/RaftServerImpl.java | 7 +-
parent/pom.xml | 12 ++-
pom.xml | 1 +
16 files changed, 353 insertions(+), 24 deletions(-)
create mode 100644 NOTICE
delete mode 100644 assembly/NOTICE
create mode 100644 examples/README.md
create mode 100644 examples/config/ignite-config.json
copy modules/cli-common/pom.xml => examples/pom-standalone.xml (76%)
copy {modules/cli-common => examples}/pom.xml (85%)
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