You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by am...@apache.org on 2021/10/15 07:00:08 UTC

[ignite-3] branch ignite-15096 updated (4d73d30 -> 7069abd)

This is an automated email from the ASF dual-hosted git repository.

amashenkov pushed a change to branch ignite-15096
in repository https://gitbox.apache.org/repos/asf/ignite-3.git.


    from 4d73d30  WIP.
     add bd7617c  IGNITE-15396 TableManager#table(UUID) could return null value even though the required table is already created. Fixes #15396
     add 0083c45  IGNITE-15720 - Fixed examples to be able to run with a remote node (#394)
     add 8858465  Updated READMEs for alpha3 + minor formatting
     add 7069abd  Merge branch 'main' into ignite-15096

No new revisions were added by this update.

Summary of changes:
 RELEASE.md                                         |  14 +
 assembly/README.md                                 |  23 +-
 examples/.gitignore                                |   2 +-
 examples/README.md                                 |  11 +-
 examples/config/ignite-config.json                 |   2 +-
 examples/config/java.util.logging.properties       |   4 +-
 examples/config/rebalance/ignite-config-0.json     |  13 -
 examples/config/rebalance/ignite-config-1.json     |  13 -
 examples/config/rebalance/ignite-config-2.json     |  13 -
 examples/config/rebalance/ignite-config-3.json     |  13 -
 examples/config/rebalance/ignite-config-4.json     |  13 -
 .../ignite/example/rebalance/RebalanceExample.java | 209 +++++++++-----
 .../ignite/example/sql/jdbc/SqlJdbcExample.java    |  21 +-
 .../ignite/example/table/KeyValueViewExample.java  |  21 +-
 .../ignite/example/table/RecordViewExample.java    |  21 +-
 .../ignite/example/sql/jdbc/SqlExamplesTest.java   |  26 ++
 .../ignite/example/table/TableExamplesTest.java    |  26 ++
 .../schemas/table/TableConfigurationSchema.java    |   2 +
 .../ignite/client/fakes/FakeIgniteTables.java      |   5 +
 .../DirectNamedListConfiguration.java              |   5 +-
 .../internal/testframework/IgniteTestUtils.java    |  16 +-
 .../internal/runner/app/ITTablesApiTest.java       | 314 +++++++++++++++++++++
 .../storage/DistributedConfigurationStorage.java   |   3 +
 .../internal/table/IgniteTablesInternal.java       |   9 +
 .../internal/table/distributed/TableManager.java   |  45 ++-
 25 files changed, 640 insertions(+), 204 deletions(-)
 delete mode 100644 examples/config/rebalance/ignite-config-0.json
 delete mode 100644 examples/config/rebalance/ignite-config-1.json
 delete mode 100644 examples/config/rebalance/ignite-config-2.json
 delete mode 100644 examples/config/rebalance/ignite-config-3.json
 delete mode 100644 examples/config/rebalance/ignite-config-4.json
 create mode 100644 modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/ITTablesApiTest.java