Search Discussions
-
I'm cutting my teeth on Akka streams, building the quintessential Twitter streaming client. What I'm trying to do is some processing on the tweet stream and then based on the result, divide the ...
Abhijit Sarkar
Oct 4, 2015 at 10:09 am
Oct 7, 2015 at 8:35 am -
Hi, I created a similar post some time ago but the circumstances were a bit different, the project I'm working at the moment has the requirement of processing messages within 5ms, and I chose Akka ...
Guido Medina
Oct 14, 2015 at 9:22 am
Oct 20, 2015 at 12:00 pm -
I create a named actor, stop it and recreate it with the same name. Because stop is async, I end up with exceptions like akka.actor.InvalidActorNameException: actor name [databaseServer] is not ...
Kostas kougios
Oct 2, 2015 at 2:59 pm
Oct 12, 2015 at 8:51 pm -
I had seen a previous post that didn't really seem to come to any definite conclusion about this subject. I have some synchronous behavior I need to accomplish during my actor's construction, but the ...
Rich Henry
Oct 19, 2015 at 1:21 pm
Oct 25, 2015 at 11:39 am -
I'm trying to respond to the sender of a message that killed my actor. I know I get the message if in preRestart if I chose to restart, but if my supervisorStrategy decided to stop (because of max ...
Arne Claassen
Oct 15, 2015 at 5:38 pm
Oct 20, 2015 at 9:23 am -
Hi there! We at Tiny Lab Productions are using Scala+Akka for our game servers. Recently I whined my ex-colleague and your current colleague at Akka Martynas Mickevičius about how untyped actor refs ...
Artūras Šlajus
Oct 25, 2015 at 1:02 pm
Oct 27, 2015 at 5:33 pm -
Hi everyone, I'm proposing the following (breaking) changes to the FlowGraph-related APIs, in order to make it consistent, with a smaller surface area and with more obvious demarcation of power-level ...
Viktor Klang
Oct 17, 2015 at 8:57 pm
Oct 20, 2015 at 9:29 am -
Hello, I'm having an akka stream like, kafkasource ~ transformer ~ Sink(Subscriber) This is the subscriber class I'm using: class Subscriber extends ActorSubscriber { import context.dispatcher ...
Jeeva K
Oct 22, 2015 at 5:24 pm
Oct 24, 2015 at 3:10 pm -
I'm cutting my teeth on Akka streams and did a fibonacci publisher-subscriber example as follows. However, I don't quite understand yet how the demand is initially generated and what relation it has ...
Abhijit Sarkar
Oct 5, 2015 at 5:22 am
Oct 15, 2015 at 2:39 am -
Hi, As I understood that the fork-join-executor is the default dispatcher when non is provided when creating the actor system Can someone explain me the following: 1. fork-join-executor { 2. # Min ...
Maatary Okouya
Oct 11, 2015 at 7:28 pm
Oct 12, 2015 at 10:14 pm -
*TL;DR -- Is there any way to provide an individual Flow component with logic to execute on Graph completion?* I'm trying to wrap an existing API that is used like this: obj.handleContext(c1) ...
Rich Henry
Oct 27, 2015 at 6:49 pm
Oct 28, 2015 at 5:02 pm -
Hi, looking at akka-streams ActorPublisher recently, I found the approach to implement actor 'base-behavior' using aroundReceive quite elegant and much more natural than partial function chaining. Is ...
Jan Algermissen
Oct 18, 2015 at 10:08 pm
Oct 21, 2015 at 2:05 pm -
AWS/S3 HTTP Post with a policy requires an HTTP post with multipart-mime -- one part for the file and one part, each, for various form parameters. When I use akka.http and attempt to marshal FormData ...
Eric Swenson
Oct 12, 2015 at 4:18 am
Oct 15, 2015 at 8:10 pm -
Hi, I have a subclass of an UntypedActor that I use a Future to access. It works for hundreds of accesses then on the same nth message stalls at the same line in a method inside the Actor each time ...
Olddave
Oct 1, 2015 at 8:48 am
Oct 14, 2015 at 8:18 am -
Hello there, I am new to Akka-Stream and working on a use case where I need to parse log files. These log files have lines separated by new line. I was looked at GroupLogFile.scala ...
Harit Himanshu
Oct 6, 2015 at 7:28 pm
Nov 5, 2015 at 3:21 pm -
Hello, I find the idea of fibers in Quasar quite compelling, see this blog <http://blog.paralleluniverse.co/2014/02/06/fibers-threads-strands/ . With the use of fibers threads are prevented from ...
Haddock
Oct 26, 2015 at 10:39 am
Oct 28, 2015 at 5:12 pm -
Based on your production experience, what storage backends have worked well for akka-persistence? We are considering postgres because we already use it heavily. Does anyone have experience with this? ...
Vikas
Oct 26, 2015 at 4:49 pm
Oct 27, 2015 at 12:56 am -
Hello, I am new in Akka and I am trying to develop some mini project to test some things (akka, rx, cqrs, es etc..) I think I understand the concept of cqrs/es and how it fit to akka. My problem is ...
Adam Dohnal
Oct 12, 2015 at 2:08 pm
Oct 25, 2015 at 6:10 pm -
Hi! I've recently encountered puzzling challenge of serializing dynamic hierarchy of actors. In this class of use case actors usually do live very short (seconds) or eventually medium lives (minutes) ...
Robert Budźko
Oct 3, 2015 at 7:44 pm
Oct 22, 2015 at 11:12 am -
Hi, I am occasionally getting this when running tests. The test resumes, but I wait for 5 secs. Is there a config property to set it to 500ms? (googling didn't reveal any relevant info) Thanks -- --- ...
Kostas kougios
Oct 7, 2015 at 4:25 pm
Nov 5, 2015 at 2:08 pm -
Hi, My usecase: I get a List of elements that contain ids to download stuff. I want to download everything and afterwards group it together to the corresponding elements. So I tried doing this with a ...
Muki
Oct 4, 2015 at 1:52 pm
Oct 5, 2015 at 9:51 am -
Hi, I have the following configuration which works fine but because we are externalizing so that IT admins have full control of it, we need to be able to mimic the *include "common"* section ...
Guido Medina
Oct 29, 2015 at 2:32 pm
Nov 10, 2015 at 1:53 pm -
I'm getting some "ambiguous reference" errors in my code relative to two calling signatures for akka.pattern.ask. My project imports Akka 2.4.0 only. Upon research Akka 2.3.x uses one of the ...
Tigerfoot
Oct 23, 2015 at 11:42 pm
Oct 24, 2015 at 3:48 pm -
Is this possible? I've learned that migration from Spray to Akka HTTP is not always trivial, and that the performance is not yet there, but would like to benefit from the other goodies in 2.4 ...
Richard Rodseth
Oct 21, 2015 at 9:19 pm
Oct 22, 2015 at 10:42 pm -
Hi, Is it possible to use persistent actor with router such as to scale out. If you have elasticity with persistent actor you have a problem with your event sourcing. Hence i wonder how to scale up ...
Maatary Okouya
Oct 21, 2015 at 9:29 pm
Oct 22, 2015 at 12:06 am -
Hi. We're using Akka 2.3.13 (Java Interface). We have our own AllocationStrategy implementation and the idea is move several shards from one node to other. We have a 2 nodes in the cluster and 1000 ...
Eduardo Fernandes
Oct 19, 2015 at 11:03 am
Oct 21, 2015 at 12:32 pm -
I'd like to know if there is some pattern to handle dynamic dependency injection. This concern the situation where we have supervision hierarchy. Let say I have a service Z that depend on a service c ...
Maatary Okouya
Oct 16, 2015 at 10:05 am
Oct 19, 2015 at 1:13 pm -
Hi, Can anyone specify how many actors can be launched in an ActorSystem if we have close to 10g jvm memory? Thanks, Pradeep -- --- You received this message because you are subscribed to the Google ...
Pradeep Chanumolu
Oct 14, 2015 at 12:02 am
Oct 14, 2015 at 10:18 pm -
Path is : akka://testSystem/user/databaseServer/index:int-string There are 2 actors with that path on 2 ActorSystems. ActorSystem = testSystem. None is receiving the msg What can be wrong? -- --- You ...
Kostas kougios
Oct 1, 2015 at 3:00 pm
Oct 5, 2015 at 1:42 pm -
Hello All I am evaluating Akka to use in our enterprise application. One of the feature which we are looking for is to find out if we can allow circuit breaker to remain closed when the number of ...
Sandeep Khurana
Oct 1, 2015 at 9:35 am
Oct 5, 2015 at 6:19 am -
Hi guys, I was playing around with Akka Cluster trying to make work a Cluster with two nodes using Cassandra for persistence. This is a demo project I created to reproduce the case ...
Gabriel Volpe
Oct 28, 2015 at 3:07 pm
Oct 30, 2015 at 3:54 pm -
Dear group I am trying to implement some integration tests of my system using Stubbed Cassandra (to test what happens when requests time out etc). The problem is that Akka Persistence makes a lot of ...
Anders Båtstrand
Oct 20, 2015 at 1:01 pm
Oct 22, 2015 at 3:31 pm -
Let's say I have an API gateway that talks to database micro services which have version 0. And in version 0, the query takes a case class with 3 parameters like so: case class Query(param1: String, ...
Lap Ming Lee
Oct 21, 2015 at 11:34 am
Oct 22, 2015 at 6:32 am -
Greetings, I have a situation where I have periodic tasks that will take several minutes. The manager will submit thousands of requests to a particular actor router. When the requests are received, ...
Kraythe
Oct 20, 2015 at 7:07 am
Oct 20, 2015 at 9:06 am -
Hey hAkkers! I need your advise in akka streams materialization question. I have custom protocol source `MySource` of type`Source[String, ActorRef]` which accepts messages to control protocol via ...
Alexey Romanchuk
Oct 16, 2015 at 5:48 am
Oct 19, 2015 at 7:48 am -
Hello everyone, I started learning akka-cluster today and was trying to write the multi-ivm test. I followed all through the document ...
Harit Himanshu
Oct 18, 2015 at 5:16 am
Oct 19, 2015 at 4:47 am -
Hallo everyone, first thanks for the great framework. I have a question about the akka memory model and remoting. If I have two hosts (A,B) and have the Actors A1,B1,B2, would the SAME message send ...
Olf sync
Oct 16, 2015 at 8:49 am
Oct 18, 2015 at 8:42 pm -
TL;DR: Following TypeSafe activator Distributed worker code, messages from Master/Leader based on actor ref or actor path go to dead letters on target system 1. Worker sends RegisterWorker(id) to ...
Sfosborn
Oct 1, 2015 at 4:33 pm
Oct 14, 2015 at 1:00 am -
Hi, I am implementing an ActorPublisher that reads records from a database. When the stream is completed I would like to extract some value from the actor (for example the maximum of some field of ...
Jan Algermissen
Oct 10, 2015 at 9:08 pm
Oct 12, 2015 at 9:53 pm -
Hello, Is it true that third-party journal implementation should keep the highest sequence number for persistenceId even if deleteMessages caused complete journal cleanup ? This is how LevelDB ...
Evgeny Shepelyuk
Oct 10, 2015 at 9:46 am
Oct 12, 2015 at 6:55 pm -
I'm using akka http to implement a REST service and that works fine except for one case. The HTTP message parser has a limit on the message size. This means that I cannot upload "large" data using a ...
Daniel Bauer
Oct 7, 2015 at 7:30 am
Oct 8, 2015 at 12:49 pm -
Hi, I've been keeping an eye on the development of akka streams, and I was just taking a second look at it now. There is one thing that I can't seem to get my head around, which is the explicit types ...
Robert Wilton
Oct 6, 2015 at 1:29 pm
Oct 7, 2015 at 2:29 pm -
Hi, please see the code at http://pastebin.com/L0WiXTJU Does Akka garantee that changes to the ArrayList "theList" will always been seen by ExampleActor? <http://pastebin.com/L0WiXTJU Or asked ...
John Vieten
Oct 6, 2015 at 7:46 am
Oct 6, 2015 at 8:36 am -
Hi, Now that Akka 2.4 is released with the new persistence-query APIs, we upgraded Akka in our application. After doing some searching, I couldn't find any persistence-query plugins yet, so in the ...
Tal Pressman
Oct 14, 2015 at 11:06 am
Nov 3, 2015 at 2:33 pm -
I have a web service that up until my addition of server-side web socket support, worked fine. I use akka-http to handle HTTP requests, and a cluster sharding region to route messages (sourced from ...
Eric Swenson
Oct 30, 2015 at 6:57 pm
Nov 1, 2015 at 4:01 pm -
Hi, Following is my app.conf. I am losing almost 50% of the messages. Is it because of the ClusterRouterPool ? Running it on 2 node cluster(each is m4.xlarge machine) There are two actors- akka { ...
Arpit Rajpurohit
Oct 28, 2015 at 2:51 pm
Oct 30, 2015 at 3:51 pm -
Hello, everyone! I am relatively new to the Akka world, and I am leading a project based on the Akka Cluster toolbox for an undergrad course, that will be presented to professors a few weeks from ...
Guilherme Renna
Oct 15, 2015 at 3:25 pm
Oct 29, 2015 at 1:23 pm -
I am starting to work with akka-streams and have a problem to solve which seems easy but I'm having trouble with it. I have a Source[String, Unit] and the strings can be quite large. I'd like to ...
Kevin Esler
Oct 27, 2015 at 4:18 pm
Oct 27, 2015 at 6:52 pm -
I want to test the negative of a use case, when a msg shall not be send. TestKit doesn't seem to have something to say dontExpectAnyMessage. TestProbe has a field of how many msgs are available to ...
Kostas kougios
Oct 27, 2015 at 3:35 pm
Oct 27, 2015 at 3:54 pm -
I've been debugging this issue for a couple of days now. I am getting an akka.actor.ActorNotFound after doing actor selection and resolveOne. By now I am pretty confident that the actor is created ...
Kostas kougios
Oct 14, 2015 at 3:50 pm
Oct 22, 2015 at 10:40 pm
Group Overview
group | akka-user |
categories | scala |
discussions | 104 |
posts | 479 |
users | 117 |
website | akka.io |
irc | #akka |
117 users for October 2015
Archives
- June 2016 (223)
- May 2016 (492)
- April 2016 (498)
- March 2016 (569)
- February 2016 (644)
- January 2016 (387)
- December 2015 (378)
- November 2015 (474)
- October 2015 (491)
- September 2015 (445)
- August 2015 (581)
- July 2015 (589)
- June 2015 (762)
- May 2015 (682)
- April 2015 (558)
- March 2015 (523)
- February 2015 (484)
- January 2015 (604)
- December 2014 (495)
- November 2014 (548)
- October 2014 (596)
- September 2014 (655)
- August 2014 (816)
- July 2014 (662)
- June 2014 (374)
- May 2014 (546)
- April 2014 (508)
- March 2014 (549)
- February 2014 (534)
- January 2014 (706)
- December 2013 (346)
- November 2013 (539)
- October 2013 (569)
- September 2013 (405)
- August 2013 (612)
- July 2013 (466)
- June 2013 (528)
- May 2013 (449)
- April 2013 (458)
- March 2013 (457)
- February 2013 (451)
- January 2013 (611)
- December 2012 (499)