Identifying symlinks in alpakka ftp?
Am I missing something or is there no way to identify symlinks using Alpakka FtpFile? Alpakka 3.0.0 - akka.stream.alpakka.ftp.FtpFile If the intention is to mirror an FTP site that contains symlinks...
View ArticleAlpakka 3.0.1 is available now
Dear hakkers, We are happy to announce Alpakka 3.0.1! It contains very few changes but solves a glitch in the 3.0.0 release which happened to compile Java classes for JDK 11 instead of JDK 8. 3.0.x...
View ArticleAutomatic rolling update support with remote protocol changes
This is a question/idea regarding the feasibility of some feature to make changing remote protocols easier, in our case it’s often the set of entity commands that evolves (adding, changing, etc.). We...
View ArticleDoes Getting Started Guide IoT example rely on transitive message ordering?
I am looking at the interesting IoT example in the Getting Started Guide. One thing I noticed is that the handling of the RequestTrackDevice message in the DeviceManager actor (see...
View ArticleAlpakka search in elasticsearch without use scrolling
can someone help me how can I search without using the scroll feature inside the elastic with alpakka. 1 post - 1 participant Read full topic
View ArticleAkka 2.6.15 released
Dear hakkers, We are pleased to announce a new patch release of Akka 2.6. Noteworthy improvements in this release: Fix for ‘restart’ supervision strategy #30172, thanks @leviramsey Improvements around...
View Article[LogRotatorSink] Rename files after rotation
So, files are created first with a “.tmp” extension, and I’d like to change that extension to “.log” (and ideally also moving the files to a different location) every time the sink rotates. I’ve been...
View ArticleAlpakka search in elasticsearch without using scrolling
can someone help me how can I search without using the scroll feature inside the elastic with alpakka. I send search requests using the code below: return ElasticsearchSource.typed( "messages",...
View ArticleSimulate Multiple Threads in Route Test
Not sure if this is the right question, but in my akka http-based system, when processing a request, we have calls that behave differently in RouteTests vs real systems. Given the following code: def...
View ArticleScheduling with systemd like calendar events
Just submitted Akka Typed Support PR to calev lib - systemd.time like calendar events in Scala 1 post - 1 participant Read full topic
View ArticleRead-only Persistent Actor
I’m thinking about the following: Say, I have a live application that collects data and represents the processed data in a persistent actor. The persistent actor’s events are written to a distributed...
View ArticleAkka Stream running forever - memory leak
Hi All, I have a akka stream , which basically listen to Rabbitmq and process the message. So i made the stream is running for-ever. But when i watched closely, its leading to memory leak. Below is...
View ArticleIs it possible to turn off deserialization in Akka Projection?
I have a very simple use case of Akka Projection. I use Avro for event serialization, and only need to move certain types of events to Kafka, in the same serialized format. There is no need to go...
View ArticleHow to use Full cluster shutdown
What is the best way to use full cluster shutdown https://doc.akka.io/docs/akka/current/typed/cluster-membership.html#full-cluster-shutdown ? I saw that Akka Management has an endpoint to trigger the...
View ArticleTimeout in coordinated shutdown phase "cluster-exiting"
Hello. In the Eclipse Ditto project we make use of Coordinated Shutdown in an Akka setup deployed in Kubernetes. There we experience that the shutdown phase “cluster-exiting” is always failing, even...
View ArticleAkka Cinnamon CPU problem
When i enable akka cinnamon on my project, CPU problem occurred on my microservice. I did not run cinnamon agent with gradle. I applied cinnamon agent command on runtime with java parameters. CMD echo...
View ArticleWhen does a persisted actor receive the next command?
In Akka Typed, does a persisted actor receive a new Command before the Event has been processed, and the State updated? Or is the Event guaranteed to be processed before a new command is received from...
View ArticlePersistence jdbc journal batch write timing
Hi, The documentation says internally persistence journal writes are batched with a maximum defined by batchSize. I can’t seem to find the documentation on how long the jdbc client will wait for the...
View ArticleAlpakka/Lucene Connector?
I’m wondering if anyone has tried to implement an Alpakka connector directly for Lucene? This would support indexing and querying Lucene indices on a single node. I feel like I can’t possibly be the...
View ArticleReading a ZIP file with alpakka
Hey guys, I want to read a zip archive containing a big file. I found in alpakka 3 the Archive including a tar reader, but whats about a zip reader? There is also an inflator in Compression but still...
View Article