RSRohit Sawinblog.rsaw409.me·Dec 4, 2024 · 2 min readKafka: 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...00
RSRohit Sawinblog.rsaw409.me·Dec 3, 2024 · 2 min readEvent 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...00
RSRohit Sawinblog.rsaw409.me·Nov 10, 2023 · 5 min readKafka: 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...00
RSRohit Sawinblog.rsaw409.me·Oct 31, 2023 · 3 min readMicroservice 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...00
RSRohit Sawinblog.rsaw409.me·Jul 31, 2023 · 2 min readGenerator 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...00