blog.rsaw409.meKafka: Replications and ISRIn Apache Kafka, the replication factor refers to the number of copies (replicas) of a topic partition that are maintained across the Kafka cluster. ISR stands for In-Sync Replicas. It is the set of all replicas (including the leader replica) that ar...Dec 4, 2024·2 min read
blog.rsaw409.meEvent Capturing in JavaScriptEvent capturing occurs when a nested element gets clicked. The click event of its parent elements must be triggered before the click of the nested element. Event capturing is not the default behavior of Javascript Events. In vanilla javaScript we ne...Dec 3, 2024·2 min read
blog.rsaw409.meKafka: Topics, Partition & ConsumersConcepts What is Kafka? Apache Kafka is an open-source distributed event streaming platform used by thousands of companies for high-performance data pipelines, streaming analytics, data integration, and mission-critical applications. What is Topic? K...Nov 10, 2023·5 min read
blog.rsaw409.meMicroservice Communication with KafkaOverview Communication between Microservices can be categorized into two types, Synchronous and Asynchronous Communication. while REST and gRPC are Synchronous ways of communication, Kafka communications are asynchronous and do not wait for a respons...Oct 31, 2023·3 min read
blog.rsaw409.meGenerator Function in JavaScriptGenerator Function is used to Pause and Resume the execution of the function with its context (variable bindings) saved across re-entrances. This allows you to generate values on-the-fly, without having to generate all of the values at once. A genera...Jul 31, 2023·2 min read