Giter Site home page Giter Site logo

reactive-system's People

Contributors

jlescanciano avatar mojackson avatar patricknoir avatar schrepfler avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

reactive-system's Issues

Create Document Website

In order for others to use the framework we should have an update documentation generated and published.

Using sbt-paradox (similar to akka http) and github pages the site should be autogenerated and published.

Modify Reactive system in order to use backpressure

Reactive system Server Component graph is not using the right Source and Sink in order to use back pressure.

In order to use back pressure we should use mapAsync from a Source[KafkaRequestEnvelope, _], call our ReactiveService and close into a Sink[KafkaResponseEnvelope, _].

The reactive system should also now accept a max concurrency level for our route which would be nice to wrap into a Flow.

As part of this ticket, investigate a possible solution for both message semantics (at-most-once and at-least-once) and document in the wiki the solution.

  • Produce Design Wiki Docs
  • Implement Solution

Server Refactoring to use concurrency

The Server side of the library is using already akka stream however the parallelism of mapAsync stages is hard coded and we are using the same dispatcher as the stream for kafka producer/consumer, serialization and deserialization.

  • Make the concurrency value of the mapAsync configurable
  • Use dedicated dispatcher for kafka producer/consumer through configuration
  • Make dispatcher for serialization/deserialization configurable
  • Write Server Design page in the documentation

Add Semantic At-Least-Once to Client

The current implementation of the Reactive-System client has a Kafka Producer to read the response messages. It uses a strategy which commit the offset to Kafka immediately after the message is read.

We should also offer an implementation where through an API the user library get a Future[Committable[Out]].

i.e.:

val client = ReactiveClient.atLeastOnce(...)
val futureResult: Future[Committable[String]] = client.request("echoService")("kafka:echoTopic/echo", "hello world")

futureResult.map { cr: Committable[String] =>
  val result: String = cr.value
  cr.commit()
}

Note:
I was tempted to make Committable composable but it isn't, only if the messages are coming from the same topic/partition they can compose, in all other scenarios there is no easy implementation.
As conclusion do not attempt to make Committable a monad.

Refactor ReactiveClient code

Currently the ReactiveClient is using actor base implementation and the KafkaProducer is blocking the thread which is not acceptable.

As part of this task evaluate the possibility to implement the client using Akka Stream.

  • Implement the client using Akka Stream
  • Refactor tests
  • Document the Client Design document in paradox website
  • Implement One Way Message

Implement Batching in Kafka Consumer Server

We would like to increase the performance of the Kafka Consumer in order to fetch batch of messages rather than pull 1 message at the time.

This will improve the overall performance for both: at-most-once and at-least-once semantics as we don't need to acknowledge each single message.

Design an API for Kafka Source and Sink to support batching.

Implement Secure Messages

In order to implement secure services encryption must be implemented.

Messages should be encrypted. Investigate possible usage of JWT.

  • Investigation, produce high level design document in the wiki

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.