This is an automated email from the ASF dual-hosted git repository.
He-Pin pushed a change to branch refactor/replace-reflection-with-methodhandles
in repository https://gitbox.apache.org/repos/asf/pekko.git
discard ebdd3fb12e perf: cache MethodHandles and fix review issues
discard c3736c4038 fix: address reflection review comments
discard b81a078f34 perf: use invoke for zero-arg method handles
discard aa26fbe198 refactor: replace java.lang.reflect with
MethodHandle/VarHandle across core modules
add 339537eec3 fix: avoid NPE in outbound TCP stage when upstream finishes
before connect (#3259)
add 17fb00e51e consistent-hashing shard allocation strategy (#3270)
add 44316a57f5 fix: release reference to initial interpreter shell after
it is shut down (#3031)
add c522cfa626 Update netty-handler, netty-transport to 4.2.16.Final
(#3307)
add c65e56f822 Update sbt-boilerplate to 0.8.1 (#3306)
add 062f859503 perf: replace java.lang.reflect with MethodHandle/VarHandle
across core modules
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (ebdd3fb12e)
\
N -- N -- N
refs/heads/refactor/replace-reflection-with-methodhandles (062f859503)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
...stentHashingShardAllocationCompileOnlyTest.java | 141 +++++++++++
...tentHashingShardAllocationCompileOnlySpec.scala | 94 ++++++++
.../consistent-hashing-allocation.excludes} | 12 +-
.../ConsistentHashingShardAllocationStrategy.scala | 163 +++++++++++++
.../pekko/cluster/sharding/ShardCoordinator.scala | 5 +-
.../AbstractLeastShardAllocationStrategy.scala | 87 ++-----
...egy.scala => ClusterShardAllocationMixin.scala} | 71 ++----
.../internal/LeastShardAllocationStrategy.scala | 4 +-
...sistentHashingShardAllocationStrategySpec.scala | 257 +++++++++++++++++++++
...eprecatedLeastShardAllocationStrategySpec.scala | 24 +-
.../LeastShardAllocationStrategySpec.scala | 23 +-
docs/src/main/paradox/persistence-query.md | 5 +
.../typed/cluster-sharded-daemon-process.md | 38 ++-
docs/src/main/paradox/typed/cluster-sharding.md | 38 +++
project/Dependencies.scala | 2 +-
project/plugins.sbt | 2 +-
.../impl/fusing/ActorGraphInterpreterSpec.scala | 59 ++++-
.../scala/org/apache/pekko/stream/io/TcpSpec.scala | 25 ++
.../stream/impl/fusing/ActorGraphInterpreter.scala | 7 +-
.../apache/pekko/stream/impl/io/TcpStages.scala | 20 +-
20 files changed, 899 insertions(+), 178 deletions(-)
create mode 100644
cluster-sharding-typed/src/test/java/jdocs/org/apache/pekko/cluster/sharding/typed/ConsistentHashingShardAllocationCompileOnlyTest.java
create mode 100644
cluster-sharding-typed/src/test/scala/docs/org/apache/pekko/cluster/sharding/typed/ConsistentHashingShardAllocationCompileOnlySpec.scala
copy
cluster-sharding/src/main/mima-filters/{1.0.x.backwards.excludes/jdk-11-specific-classes.excludes
=> 2.0.x.backwards.excludes/consistent-hashing-allocation.excludes} (69%)
create mode 100644
cluster-sharding/src/main/scala/org/apache/pekko/cluster/sharding/ConsistentHashingShardAllocationStrategy.scala
copy
cluster-sharding/src/main/scala/org/apache/pekko/cluster/sharding/internal/{AbstractLeastShardAllocationStrategy.scala
=> ClusterShardAllocationMixin.scala} (63%)
create mode 100644
cluster-sharding/src/test/scala/org/apache/pekko/cluster/sharding/ConsistentHashingShardAllocationStrategySpec.scala
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]