tuleisM >>= Random.nextBlog
01 Nov 2021

A tutorial on implementing distributed tracing for Scala applications using OpenTelemetry and various libraries from the ZIO ecosystem.

14 Sep 2021

Most Kafka Consumer tutorials use a synchronous poll-then-process loop that is not ideal. Worse yet, it gives developers the wrong impression about how Kafka works. We look at a better model to understand and implement Kafka Consumers, which also supports back pressure and parallel processing.

22 Aug 2021

Reindexing data is a common operation in working with Elasticsearch. However, existing solutions are purely about data and thus limited in applicability. By taking application code into account, we come up with a generic, eventually consistent, zero downtime solution to reindex data in ElasticSearch.

15 Aug 2020

Sometimes, we need guarantees about the values in our program beyond what can be accomplished with the usual type system checks. Smart Constructors is one solution for this. We look at various ways to implement Smart Constructors in Scala and analyze their pros and cons.