DEV Community

Cover image for Why we discarded Reactive systems architecture from our code?
Ivelin Yanev
Ivelin Yanev

Posted on

Why we discarded Reactive systems architecture from our code?

This article explores our decision to move away from reactive architecture in our software project. We'll delve into the core principles of reactive systems, the benefits of non-blocking I/O, and the challenges we faced with a reactive approach.

Understanding Reactive architecture style

Reactive encompasses a set of principles and guidelines aimed at constructing responsive distributed systems and applications, characterized by:

  1. Responsiveness: Capable of swiftly handling requests, even under heavy loads.
  2. Resilience: Able to recover from failures with minimal downtime.
  3. Elasticity: Can adapt to changing workloads by scaling resources accordingly.
  4. Message-Driven: Utilizes asynchronous messaging to enhance fault tolerance and decouple components.

One key benefit of reactive systems is their use of non-blocking I/O. This approach avoids blocking threads during I/O operations, allowing a single thread to handle multiple requests concurrently. This can significantly improve system efficiency compared to traditional blocking I/O.
In traditional multithreading, blocking operations pose significant challenges in optimizing systems (Figure 1). Greedy applications consuming excessive memory are inefficient and penalize other applications, often necessitating requests for additional resources like memory, CPU, or larger virtual machines.

Traditional Multi-threading

Figure 1 – Traditional Multi-threading


I/O operations are integral to modern systems, and efficiently managing them is paramount to prevent greedy behavior. Reactive systems employ non-blocking I/O, enabling a low number of OS threads to handle numerous concurrent I/O operations.

Reactive Execution Model

Although non-blocking I/O offers substantial benefits, it introduces a novel execution model distinct from traditional frameworks. Reactive programming emerged to address this issue, as it mitigates the inefficiency of platform threads idling during blocking operations (Figure 2).

Reactive Event Loop

Figure 2 – Reactive Event Loop


Quarkus and Reactive

Quarkus leverages a reactive engine powered by Eclipse Vert.x and Netty, facilitating non-blocking I/O interactions. Mutiny, the preferred approach for writing reactive code with Quarkus, adopts an event-driven paradigm, wherein reactions are triggered by received events.

Mutiny offers two event-driven and lazy types:

  1. Uni: Emits a single event (an item or a failure), suitable for representing asynchronous actions with zero or one result.
  2. Multi: Emits multiple events (n items, one failure, or one completion), representing streams of items, potentially unbounded.

Challenges with Reactive

While reactive systems offer benefits, we encountered several challenges during development:

  • Paradigm Shift: Reactive programming necessitates a fundamental shift in developers' mindsets, which can be challenging, especially for developers accustomed to imperative programming. Unlike auxiliary tools like the Streams API, the reactive approach demands a complete mindset overhaul.
  • Code Readability and Understanding: Reactive code poses difficulties for new developers to comprehend, leading to increased time spent deciphering and understanding it. The complexity introduced by reactive paradigms compounds this issue.

"Indeed, the ratio of time spent reading versus writing is well over 10 to 1. We are constantly reading old code as part of the effort to write new code. ...[Therefore,] making it easy to read makes it easier to write."
Robert C. Martin, Clean Code: A Handbook of Agile Software Craftsmanship

  • Debugging Challenges: Debugging reactive code proves nearly impossible with standard IDE debuggers due to lambdas encapsulating most code. Additionally, the loss of meaningful stack traces during exceptions further hampers debugging efforts. Increased Development and Testing Efforts: The inherent complexity of reactive code can lead to longer development cycles due to the time required for writing, modifying, and testing.

Here's an example of reactive code using Mutiny to illustrate the complexity:

Multi.createFrom().ticks().every(Duration.ofSeconds(15))
    .onItem().invoke(() - > Multi.createFrom().iterable(configs())
    .onItem().transform(configuration - > {
  try {
    return Tuple2.of(openAPIConfiguration,
        RestClientBuilder.newBuilder()
            .baseUrl(new URL(configuration.url()))
            .build(MyReactiveRestClient.class)
            .getAPIResponse());

  } catch (MalformedURLException e) {
    log.error("Unable to create url");

  }
  return null;
}).collect().asList().toMulti().onItem().transformToMultiAndConcatenate(tuples - > {

  AtomicInteger callbackCount = new AtomicInteger();
  return Multi.createFrom().emitter(emitter - > Multi.createFrom().iterable(tuples)
      .subscribe().with(tuple - >
          tuple.getItem2().subscribe().with(response - > {
              emitter.emit(callbackCount.incrementAndGet());

  if (callbackCount.get() == tuples.size()) {
    emitter.complete();
  }
                    })
                ));

}).subscribe().with(s - > {},
Throwable::printStackTrace, () - > doSomethingUponComplete()))
    .subscribe().with(aLong - > log.info("Tic Tac with iteration: " + aLong));
Enter fullscreen mode Exit fullscreen mode

Future Outlook-Project Loom and Beyond

Project Loom, a recent development in the Java ecosystem, promises to mitigate the issues associated with blocking operations. By enabling the creation of thousands of virtual threads without hardware changes, Project Loom could potentially eliminate the need for a reactive approach in many cases.

"Project Loom is going to kill Reactive Programming"
Brian Goetz

Conclusion

In conclusion, our decision to move away from reactive architecture style a pragmatic approach to our project's long-term maintainability. While reactive systems offer potential benefits, the challenges they presented for our team outweighed those advantages in our specific context.

Importantly, this shift did not compromise performance. This is a positive outcome, as it demonstrates that a well-designed non reactive(imperative) architecture can deliver the necessary performance without the complexity associated with reactive architecture in our case.

As we look towards the future, the focus remains on building a codebase that is not only functional but also easy to understand and maintain for developers of all experience levels. This not only reduces development time but also fosters better collaboration and knowledge sharing within the team.

In the graph below, the X-axis represents the increasing complexity of our codebase as it evolves, while the Y-axis depicts the time required for these developmental changes.

Reactive-Imperative

Top comments (5)

Collapse
 
gorynych profile image
Stepan Mozyra

I'm not a big fan of all that Reactive stuff.

But. Talking about this specific article... If the idea of sode snippet was to demostrate how complex reactive code is - it fails. Unfirtunately, this code is bad disregard any underlying technology.

Collapse
 
yanev profile image
Ivelin Yanev

Hi there, I understand your concerns. Please note that the code provided in the article is intended as a simple example or pseudo-code to illustrate concepts rather than actual production-level code. In a real-world application, the example would indeed be much more structured and clear, akin to a children's story in its simplicity and readability

Collapse
 
cadavi33 profile image
Carlos Villegas

Partially agreed, there are cases where the virtual thread blocks the carrier thread so thousands of virtual threads will be left waiting, a Netflix article also mentions that virtual threads are not suitable for processing intensive workloads. I think the combination of both paradigms is useful when we find the balance between performance and productivity.

Collapse
 
yanev profile image
Ivelin Yanev

Adopting virtual threads across all current libraries, drivers, and related components will require significant technical effort and time. This adoption process must carefully consider compatibility and performance optimization to ensure seamless integration.

Collapse
 
sushantv profile image
hallosushant

I agree, we wrote one of the microservice following reactive architecture but stopped after having all the challenges mentioned especially debugging and exception stacktrace.