You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2019/01/23 10:39:14 UTC

[ignite] 01/01: Merge remote-tracking branch 'remotes/origin/master' into ignite-627

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

sboikov pushed a commit to branch ignite-627
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit 07ae7bc11cb0a29006abb542ff2b421a9575d3db
Merge: de73f5d afde85b
Author: sboikov <sb...@apache.org>
AuthorDate: Wed Jan 23 13:38:31 2019 +0300

    Merge remote-tracking branch 'remotes/origin/master' into ignite-627

 .../ml/clustering/KMeansClusterizationExample.java |   3 +-
 .../examples/ml/knn/ANNClassificationExample.java  |   1 -
 .../ignite/configuration/IgniteConfiguration.java  |  31 +
 .../processors/bulkload/BulkLoadProcessor.java     |   9 +-
 .../processors/cache/ClusterCachesInfo.java        |  56 ++
 .../processors/cache/GridCacheProcessor.java       |  10 +
 .../internal/processors/cache/QueryCursorImpl.java |   2 +-
 .../platform/utils/PlatformConfigurationUtils.java |  16 +-
 .../processors/query/QueryHistoryMetrics.java      | 175 ++++++
 .../processors/query/QueryHistoryMetricsKey.java   |  95 +++
 .../processors/query/QueryHistoryMetricsValue.java |  99 ++++
 .../processors/query/QueryHistoryTracker.java      | 150 +++++
 .../processors/query/RunningQueryManager.java      |  87 ++-
 .../IgniteClientCacheInitializationFailTest.java   |   1 -
 ...eactivateTestWithPersistenceAndMemoryReuse.java |   2 +
 ...gniteDiscoveryDataHandlingInNewClusterTest.java | 220 +++++++
 ...IgnitePdsCacheWalDisabledOnRebalancingTest.java |   1 +
 .../IgniteTcpCommunicationHandshakeWaitTest.java   |   2 +
 .../IgniteBinaryObjectsCacheTestSuite3.java        |   2 +-
 .../ignite/testsuites/IgniteCacheTestSuite4.java   |   2 +
 .../cache/query/RegisteredQueryCursor.java         |  17 +-
 .../query/h2/DmlStatementsProcessor.java           |  22 +-
 .../processors/query/h2/IgniteH2Indexing.java      |  70 ++-
 .../processors/query/h2/SchemaManager.java         |  38 +-
 .../processors/query/h2/opt/GridH2Table.java       |   2 +-
 .../query/h2/sys/view/SqlSystemViewTables.java     | 129 +++++
 .../processors/query/RunningQueriesTest.java       |  17 +-
 .../query/SqlQueryHistoryFromClientSelfTest.java}  |  41 +-
 .../processors/query/SqlQueryHistorySelfTest.java  | 644 +++++++++++++++++++++
 .../processors/query/SqlSystemViewsSelfTest.java   | 245 +++++++-
 .../IgniteBinaryCacheQueryTestSuite.java           |   6 +
 ...PartitionedCacheJtaLookupClassNameSelfTest.java |   6 +-
 .../ignite/ml/clustering/kmeans/KMeansTrainer.java |  27 +-
 .../ml/knn/ann/ANNClassificationTrainer.java       |  24 -
 .../ml/knn/regression/KNNRegressionTrainer.java    |   2 +-
 .../java/org/apache/ignite/ml/nn/MLPTrainer.java   |   2 +-
 .../ignite/ml/clustering/KMeansTrainerTest.java    |   4 +-
 .../apache/ignite/ml/common/KeepBinaryTest.java    |   2 +-
 .../ignite/ml/knn/ANNClassificationTest.java       |  10 +-
 modules/platforms/cpp/DEVNOTES.txt                 |  50 +-
 .../cpp/binary/include/ignite/binary/binary_type.h |   2 +-
 modules/platforms/cpp/core-test/Makefile.am        |   6 +-
 .../cpp/core-test/include/ignite/test_utils.h      |   8 +
 .../cpp/core-test/include/teamcity_messages.h      |  48 +-
 .../cpp/core-test/project/vs/core-test.vcxproj     |  13 +-
 .../src/binary_identity_resolver_test.cpp          |   4 -
 .../cpp/core-test/src/binary_object_test.cpp       |  16 +-
 .../src/binary_reader_writer_raw_test.cpp          |   6 +-
 .../core-test/src/binary_reader_writer_test.cpp    |   6 +-
 .../cpp/core-test/src/binary_session_test.cpp      |   6 +-
 modules/platforms/cpp/core-test/src/bits_test.cpp  |   6 +-
 .../cpp/core-test/src/cache_invoke_test.cpp        |   4 -
 .../cpp/core-test/src/cache_query_test.cpp         |  22 +-
 .../cpp/core-test/src/cache_store_test.cpp         |   8 +-
 modules/platforms/cpp/core-test/src/cache_test.cpp |   6 +-
 .../platforms/cpp/core-test/src/cluster_test.cpp   |   6 +-
 .../platforms/cpp/core-test/src/compute_test.cpp   |  60 +-
 .../cpp/core-test/src/concurrent_test.cpp          |   6 +-
 .../cpp/core-test/src/continuous_query_test.cpp    |   6 +-
 .../platforms/cpp/core-test/src/date_time_test.cpp |   4 -
 .../platforms/cpp/core-test/src/decimal_test.cpp   |   4 -
 .../cpp/core-test/src/dynamic_size_array_test.cpp  |   6 +-
 .../cpp/core-test/src/fixed_size_array_test.cpp    |   6 +-
 .../platforms/cpp/core-test/src/future_test.cpp    |   6 +-
 .../cpp/core-test/src/handle_registry_test.cpp     |   6 +-
 .../cpp/core-test/src/ignite_error_test.cpp        |   6 +-
 .../platforms/cpp/core-test/src/ignition_test.cpp  |   6 +-
 .../cpp/core-test/src/interop_memory_test.cpp      |   4 -
 .../platforms/cpp/core-test/src/interop_test.cpp   |   4 -
 .../platforms/cpp/core-test/src/reference_test.cpp |   4 -
 .../platforms/cpp/core-test/src/teamcity_boost.cpp | 300 +++++++---
 .../cpp/core-test/src/teamcity_messages.cpp        | 250 ++++----
 modules/platforms/cpp/core-test/src/test_utils.cpp |   2 +
 .../cpp/core-test/src/transactions_test.cpp        |  60 +-
 modules/platforms/cpp/odbc-test/Makefile.am        |   6 +-
 .../cpp/odbc-test/include/sql_test_suite_fixture.h |   4 -
 .../odbc-test/include/teamcity/teamcity_messages.h |  36 +-
 .../platforms/cpp/odbc-test/include/test_utils.h   |   8 +
 .../cpp/odbc-test/project/vs/odbc-test.vcxproj     |  11 +-
 .../cpp/odbc-test/src/api_robustness_test.cpp      |   4 -
 .../odbc-test/src/application_data_buffer_test.cpp |   4 -
 .../cpp/odbc-test/src/attributes_test.cpp          |   4 -
 .../cpp/odbc-test/src/authentication_test.cpp      |   4 -
 .../platforms/cpp/odbc-test/src/column_test.cpp    |   4 -
 .../cpp/odbc-test/src/configuration_test.cpp       |   4 -
 .../cpp/odbc-test/src/connection_info_test.cpp     |   6 +-
 .../cpp/odbc-test/src/connection_test.cpp          |   4 -
 .../platforms/cpp/odbc-test/src/cursor_test.cpp    |   6 +-
 .../platforms/cpp/odbc-test/src/errors_test.cpp    |   4 -
 .../cpp/odbc-test/src/meta_queries_test.cpp        |   4 -
 .../cpp/odbc-test/src/odbc_test_suite.cpp          |  42 +-
 .../platforms/cpp/odbc-test/src/parser_test.cpp    |   6 +-
 .../cpp/odbc-test/src/queries_ssl_test.cpp         |   4 -
 .../platforms/cpp/odbc-test/src/queries_test.cpp   |  13 +-
 modules/platforms/cpp/odbc-test/src/row_test.cpp   |   4 -
 .../odbc-test/src/sql_aggregate_functions_test.cpp |   4 -
 .../odbc-test/src/sql_date_time_functions_test.cpp |   4 -
 .../src/sql_esc_convert_function_test.cpp          |   4 -
 .../cpp/odbc-test/src/sql_get_info_test.cpp        |   4 -
 .../odbc-test/src/sql_numeric_functions_test.cpp   |   4 -
 .../cpp/odbc-test/src/sql_operators_test.cpp       |   4 -
 .../cpp/odbc-test/src/sql_outer_join_test.cpp      |   4 -
 .../cpp/odbc-test/src/sql_parsing_test.cpp         |   4 -
 .../odbc-test/src/sql_string_functions_test.cpp    |   4 -
 .../odbc-test/src/sql_system_functions_test.cpp    |   4 -
 .../platforms/cpp/odbc-test/src/sql_types_test.cpp |   4 -
 .../odbc-test/src/sql_value_expressions_test.cpp   |   4 -
 .../platforms/cpp/odbc-test/src/streaming_test.cpp |   7 -
 .../cpp/odbc-test/src/teamcity/teamcity_boost.cpp  | 292 +++++++---
 .../odbc-test/src/teamcity/teamcity_messages.cpp   | 246 ++++----
 modules/platforms/cpp/odbc-test/src/test_utils.cpp |   2 +
 .../cpp/odbc-test/src/transaction_test.cpp         |   4 -
 modules/platforms/cpp/odbc-test/src/types_test.cpp |   4 -
 .../platforms/cpp/odbc-test/src/utility_test.cpp   |   6 +-
 modules/platforms/cpp/thin-client-test/Makefile.am |   8 +-
 .../include/teamcity/teamcity_messages.h           |  42 +-
 .../cpp/thin-client-test/include/test_utils.h      |   8 +
 .../project/vs/thin-client-test.vcxproj            |  13 +-
 .../cpp/thin-client-test/src/auth_test.cpp         |   4 -
 .../cpp/thin-client-test/src/cache_client_test.cpp |   4 -
 .../thin-client-test/src/ignite_client_test.cpp    |   4 -
 .../cpp/thin-client-test/src/ssl_test.cpp          |   4 -
 .../src/teamcity/teamcity_boost.cpp                | 300 +++++++---
 .../src/teamcity/teamcity_messages.cpp             | 250 ++++----
 .../cpp/thin-client-test/src/test_utils.cpp        |   2 +
 .../Config/full-config.xml                         |   3 +-
 .../IgniteConfigurationSerializerTest.cs           |   6 +-
 .../IgniteConfigurationTest.cs                     |   2 +
 .../Apache.Ignite.Core/IgniteConfiguration.cs      |  27 +-
 .../IgniteConfigurationSection.xsd                 |   6 +-
 .../WebSessionTransactionalSelfTest.java           |  10 +-
 131 files changed, 3504 insertions(+), 1209 deletions(-)