akka-meta icon indicating copy to clipboard operation
akka-meta copied to clipboard

This repository is dedicated to high-level feature discussions and for persisting design decisions.

Results 20 akka-meta issues
Sort by recently updated
recently updated
newest added

https://github.com/akka/akka/blob/master/CONTRIBUTING.md#creating-commits-and-writing-commit-messages currently just states: ``` 2. First line should be a descriptive sentence what the commit is doing, including the ticket number. ``` When skimming through the commit msgs in...

discuss

`akka-actor` has accrued many features over the past seven years, and in many ways `akka-typed` offers the opportunity to start from the ground up: different package names and APIs make...

This basically means adding a long-enough, cryptographically random piece of data at the end of an ActorRef (practically, make the UID longer and safer). There are additional changes required to...

Once the scope is decided in #18 we need to start the implementation, and there I can see two possible paths: 1. start out from what we have in `akka-actor`,...

The Summary and Interpretation says: "Orleans offers a programming model ... This is achieved by making a set of implementation choices—like at-least-once delivery which is based upon ...." This is...

While implementing the new `akka.typed.internal.ActorCell` based on `akka.actor.ActorCell` I wondered about the complexity of the internal mechanics in relation to the user-visible feature set. A significant part of the cognitive...

A place to capture ideas for Artery, the new remoting.

These are some initial thoughts, exemplified on a hypothetical streaming Kafka connector API. Use-cases that need to be supported: - auto-commit (i.e. at-most-once delivery to the stream) - manual commit...

This is the much simpler cousin of #13. The primary proposal is to model this as a Flow: ``` scala class KafkaSink extends GraphStage[FlowShape[Message, Confirmation]] ``` This is fundamentally what...

I know that you are looking into monitoring support on the JVM side. If I can make a wish, I'd like to see an interface that has an API similair...