InfoQ Homepage Message Passing Content on InfoQ
News
RSS Feed-
Amazon SNS Supports FIFO for Pub/Sub Messaging
AWS has recently introduced support for First-in-First-out (FIFO) topics in Amazon SNS with strict ordering and deduplication of messages. The new feature enforces ordering in which messages are sent and received, and avoids that a message is processed multiple times.
-
Gutenberg – a Publish-Subscribe Service for Datasets Created by Netflix
To propagate datasets from a single producer to multiple consumers, Netflix has created Gutenberg, a service using a publish-subscribe technique to propagate versioned datasets between their microservices. In a blog post, Ammar Khaku, senior software engineer at Netflix, describes an overview of the design as well and some use cases for Gutenberg.
-
Microsoft Open-Sources P Language for Safe Async Event-Driven Programming
Microsoft’s recently open-sourced P language aims to make it possible to write safe asynchronous event-driven programs on Linux, macOS, and Windows.
-
"Surviving Microservices" with Richard Rodger at microXchg: Messages, Pattern Matching and Failure
At the microXchg 2016 conference, held in Berlin, Germany, Richard Rodger presented “Surviving Microservices”, a practical guide for developers wanting to keep their microservices architectures ‘healthy and performant’. Key topics discussed in the talk included the benefits of message-oriented systems, pattern matching with inter-service communication, dealing with failure, and Seneca.js.
-
TypeSafe's Kevin Webber: Actor-based Concurrency for Reactive Systems
In a recent article on Medium, TypeSafe's Kevin Webber argues that reactive programming "isn’t just another trend but rather the paradigm for modern software developers to learn" since it helps them to build systems that are responsive, resilient, and scalable. He also suggests that actor-based concurrency is the most convenient foundations for a reactive system.
-
ZeroMQ Forked by its Creators
Martin Sustrik and Martin Lucina, creators of the original ZeroMQ, have decided to regain control of the project by forking it into a new project called Crossroads I/O. This report covers a brief history of ZeroMQ and its predecessor AMQP.
-
Using Messaging and Scheduling for Lock-free Access to Shared State
In a message passing system there may be times when mutable data must be shared amongst many tasks. In traditional programming this would be handled by a read-writer block, which would allow one writer thread to block all other threads while it updates the shared data. With a technique found in frameworks such as TPL Dataflow it is possible to avoid this.
-
Asynchronous Message Processing using Task Parallel Library and Reactive Extensions
A new preview of TPL Dataflow has recently been released along with Visual Studio Async. Along with performance enhancements and stronger ties with the Reactive Framework, it is being positioned as a foundation for building actor/agent style frameworks as opposed to a complete solution.