Should I use FastFuture with Akka Http
@eugenemiretsky wrote: Akka Http uses FastFuture internally to avoid context switching A common pattern is to make calls like Unmarshal(decodedResponse.entity).to[Res] .map(..do domething)...
View ArticleDown unreachable node by HTTP
@vadzim-marchanka wrote: Hello, everyone. It is my first time when I am messaging here. Please forgive me if I am doing something wrong =) I have a silly question because the current documentation did...
View ArticleAkka Typed sender() workaround
@Al wrote: Is it possible to get the sender() inside Behavior for interop with classic actors, when I can’t send the sender with a message. For example, in ActorSink.actorRef[Message](actor, Message)...
View ArticlegetFromBrowseableDirectories
@babloo80 wrote: Hello there, I am trying to host a local filepath resource into http using getFromBrowseableDirectories directive. import akka.actor.ActorSystem import akka.http.scaladsl.Http import...
View ArticleCluster Design Question
@iLoveZod13 wrote: Hi there, I am newbie to akka. And I have a design question as below. I am trying to design a payroll calculation framework as: 1- A main service node (role = ‘MainService’) which...
View ArticleNew to Alpakka, question about downloading file(s)
@moyphilip wrote: Hello, I have been trying to figure a way to download a file from s3. I want to: list the files from s3://bucket/key filter for csv files. write them to a local directory I have been...
View ArticleAkka-HTTP server HTTPS Support
@archie_by wrote: I found myself struggling to enable https support for our akka-http java application. The documentation page...
View ArticleSchema registry fails
@Raghav2211 wrote: Hi there, I’ve a use case where I’m using alpakka-kafka to produce records on a topic with two avro schemas(HttpRequest & HttpResponse) with ProducerMessage.single but if one of...
View Article"message unhandled" logged when using Behaviors#transformMessages
@pawelkaczor wrote: I would expect no “message unhandled” messages in the log when using akka.actor.typed.javadsl.Behaviors#transformMessages ? Posts: 6 Participants: 2 Read full topic
View ArticleAkka 2.5.30 released
@patriknw wrote: Dear hakkers, We are pleased to announce the 2.5.30 patch release of Akka 2.5. The release contains backports of a few important fixes. Notable changes: Support for base64 in...
View ArticleSupervision: Getting hold of Exception
@dubaut wrote: Let’s take a simple example: Behaviors.supervise { Behaviors.receiveMessage[Command] { [..] } }.onFailure[Throwable](SupervisorStrategy.resume) How can I get hold of the Throwable,...
View ArticleAkka gRPC 0.8.0 released
@raboof wrote: Dear hakkers, We’re happy to announce version 0.8.0 of Akka gRPC! gRPC is a transport mechanism for request/response and (non-persistent) streaming use cases. See Why gRPC? for more...
View ArticleAkka 2.6.4 released
@patriknw wrote: Dear hakkers, We are excited to announce a new patch release of Akka 2.6. In addition to bug fixes and improvements it includes 3 bigger new features related to Akka Cluster. Notable...
View ArticleAkka http log levels for production
@huntc wrote: I feel that Akka HTTP is quite chatty when it comes to logging and want to share my production-based experience to see if we could/should make it less so. I’ve been running Akka HTTP in...
View ArticleProblems using MultiJVM Test + Persistence Plugin Proxy
@angelcervera wrote: I’m trying to use the Persistence Plugin Proxy with the MultiJVM test and I’m near to . What I understand from the documentation and from the Spec that I found is that: I must...
View ArticleAkka Management 1.0.6 released
@patriknw wrote: Uniform URL scheme for bootstrap URLs, #603, thanks to @otto-dev Use TaskSets to discover nodes in ECS, #636, thanks to @milanvdm Structured log events for bootstrap process, #629...
View ArticleAlpakka and S3 truncating downloaded files
@fsoler wrote: Hello, I have a simple piece of code, based on alpakka examples, which should download some file from S3 for further processing: S3.download(bucket, file) .runWith(Sink.head) .flatMap {...
View ArticleAkka HTTP2:many GET requests, multiple POST with extractStrictEntity of 30...
@surendarchandra wrote: We’re using HTTP2. When there are multiple GETs a few POSTs,we sometimes run into a scenario where a POST gets stuck waiting for entity for over 30 seconds. Since I’ve...
View ArticleAkka Dispatcher Thread creation
@hemnath wrote: I have been working on Akka Actor model. I have an usecase where more than 1000 actors will be in active and I have to process those actors. I thought of controlling the thread count...
View ArticleDeath watching across clusters
@Poorva17 wrote: Hello, Use case description, We have akka cluster A and akka cluster B. Our deathwatch actor is part of cluster A and another actor that we want to watch is part of cluster B. We are...
View Article