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/07/27 09:41:17 UTC

[ignite-3] branch main updated (af995ac -> bbc6294)

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

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


    from af995ac  IGNITE-14924 HOCON configuration source and representation implemented. (#228)
     add bbc6294  IGNITE-14840 change slf4j to Ignite logger in raft module (#217)

No new revisions were added by this update.

Summary of changes:
 modules/cli/pom.xml                                |   5 -
 .../java/org/apache/ignite/cli/ErrorHandler.java   |   5 +-
 .../cli/builtins/module/MavenArtifactResolver.java |   7 +-
 .../java/org/apache/ignite/cli/ui/ProgressBar.java |   5 +-
 .../java/org/apache/ignite/lang/IgniteLogger.java  | 130 +++++++++++++++------
 modules/network/pom.xml                            |   7 --
 modules/raft/pom.xml                               |   7 --
 .../ignite/raft/jraft/core/ITCliServiceTest.java   |   5 +-
 .../apache/ignite/raft/jraft/core/ITNodeTest.java  |   5 +-
 .../ignite/raft/server/CounterSnapshotFile.java    |   5 +-
 .../apache/ignite/raft/jraft/RaftGroupService.java |   5 +-
 .../raft/jraft/ThreadPoolMetricsSignalHandler.java |   5 +-
 .../raft/jraft/closure/ClosureQueueImpl.java       |   5 +-
 .../raft/jraft/closure/ReadIndexClosure.java       |   7 +-
 .../ignite/raft/jraft/conf/Configuration.java      |   5 +-
 .../ignite/raft/jraft/conf/ConfigurationEntry.java |   5 +-
 .../raft/jraft/conf/ConfigurationManager.java      |   5 +-
 .../apache/ignite/raft/jraft/core/BallotBox.java   |   5 +-
 .../ignite/raft/jraft/core/CliServiceImpl.java     |   5 +-
 .../ignite/raft/jraft/core/FSMCallerImpl.java      |   5 +-
 .../apache/ignite/raft/jraft/core/NodeImpl.java    |   7 +-
 .../raft/jraft/core/ReadOnlyServiceImpl.java       |   5 +-
 .../apache/ignite/raft/jraft/core/Replicator.java  |   5 +-
 .../raft/jraft/core/ReplicatorGroupImpl.java       |   6 +-
 .../raft/jraft/core/StateMachineAdapter.java       |   7 +-
 .../apache/ignite/raft/jraft/entity/PeerId.java    |   7 +-
 .../ignite/raft/jraft/rpc/RpcRequestClosure.java   |   5 +-
 .../ignite/raft/jraft/rpc/RpcRequestProcessor.java |   7 +-
 .../raft/jraft/rpc/impl/AbstractClientService.java |   9 +-
 .../rpc/impl/cli/BaseCliRequestProcessor.java      |   5 +-
 .../rpc/impl/core/DefaultRaftClientService.java    |   2 +-
 .../ignite/raft/jraft/storage/FileService.java     |   7 +-
 .../raft/jraft/storage/impl/LocalLogStorage.java   |   7 +-
 .../jraft/storage/impl/LocalRaftMetaStorage.java   |   5 +-
 .../raft/jraft/storage/impl/LogManagerImpl.java    |   7 +-
 .../raft/jraft/storage/impl/RocksDBLogStorage.java |  15 ++-
 .../raft/jraft/storage/io/LocalDirReader.java      |   5 +-
 .../storage/snapshot/SnapshotExecutorImpl.java     |   5 +-
 .../snapshot/local/LocalSnapshotCopier.java        |   9 +-
 .../snapshot/local/LocalSnapshotMetaTable.java     |   5 +-
 .../snapshot/local/LocalSnapshotReader.java        |   5 +-
 .../snapshot/local/LocalSnapshotStorage.java       |   5 +-
 .../snapshot/local/LocalSnapshotWriter.java        |   5 +-
 .../jraft/storage/snapshot/remote/CopySession.java |   5 +-
 .../storage/snapshot/remote/RemoteFileCopier.java  |   5 +-
 .../raft/jraft/util/ExecutorServiceHelper.java     |   5 +-
 .../raft/jraft/util/LogExceptionHandler.java       |  11 +-
 .../jraft/util/LogScheduledThreadPoolExecutor.java |   7 +-
 .../raft/jraft/util/LogThreadPoolExecutor.java     |   7 +-
 .../ignite/raft/jraft/util/NamedThreadFactory.java |   7 +-
 .../apache/ignite/raft/jraft/util/Platform.java    |   5 +-
 .../apache/ignite/raft/jraft/util/Recyclers.java   |   5 +-
 .../ignite/raft/jraft/util/RepeatedTimer.java      |   7 +-
 .../ignite/raft/jraft/util/SystemPropertyUtil.java |   7 +-
 .../apache/ignite/raft/jraft/util/ThreadId.java    |   5 +-
 .../org/apache/ignite/raft/jraft/util/Utils.java   |   5 +-
 .../util/concurrent/MpscSingleThreadExecutor.java  |   5 +-
 .../raft/jraft/util/timer/HashedWheelTimer.java    |   5 +-
 .../jraft/closure/SynchronizedClosureTest.java     |   5 +-
 .../ignite/raft/jraft/core/MockStateMachine.java   |   5 +-
 .../raft/jraft/core/ReplicatorGroupTest.java       |   5 +-
 .../jraft/entity/codec/LogEntryCodecPerfTest.java  |   5 +-
 .../ignite/raft/jraft/rpc/impl/FutureTest.java     |   5 +-
 .../ignite/raft/jraft/storage/FileServiceTest.java |   5 +-
 .../ignite/raft/jraft/util/CountDownEventTest.java |   5 +-
 .../ignite/raft/jraft/util/SegmentListTest.java    |   5 +-
 .../LongHeldDetectingReadWriteLockTest.java        |   5 +-
 .../concurrent/MpscSingleThreadExecutorTest.java   |   5 +-
 modules/rest/pom.xml                               |   5 -
 .../java/org/apache/ignite/rest/RestModule.java    |   6 +-
 .../apache/ignite/rest/netty/RestApiHandler.java   |   5 +-
 parent/pom.xml                                     |   7 --
 72 files changed, 255 insertions(+), 287 deletions(-)