Dinesh Kumar Kblog.dineshcloud.in·Aug 4, 2024Jenkins Master-Slave ConfigurationIn Jenkins, a master-slave configuration (also referred to as controller-agent configuration) involves setting up a primary Jenkins instance (the master or controller) that manages jobs, configurations, and orchestrates the build processes, and one o...71 readsDevOpsJenkins
Ahona DasforGeekyAnts Tech Blogtechblog.geekyants.com·May 31, 2024Pgpool-II with PostgreSQLWhat is Pgpool-II? Pgpool-II is a middleware that can run on Linux and Solaris between applications and PostgreSQL databases. Its main features include the following: Load balancing Replication Connection pooling Automatic failover Online recove...1 like·1.2K readsPgpool-II
Nguyen Van Tuantuannguyenhust.hashnode.dev·Apr 22, 2024Setup master slave in Redis by using DockerFile docker-compose version: '3' services: redis-master: image: redis container_name: redis-master ports: - "6279:6379" redis-slave-1: image: redis container_name: redis-slave-1 ports: - "6179:6379" redis-...OtherRedis
Shivanagouda Agasimanishiva02.hashnode.dev·Apr 17, 2024Problems with Replication LagLeader-based replication requires all writes to go through a single node, but read only queries can go to any replica. For workloads that consist of mostly reads and only a small percentage of writes (a common pattern on the web), there is an attrac‐...distributed system
Nguyen Van Tuantuannguyenhust.hashnode.dev·Apr 1, 2024Cấu hình master slave trong Redis bằng DockerFile docker compose version: '3' services: redis-master: image: redis container_name: redis-master ports: - "6279:6379" redis-slave-1: image: redis container_name: redis-slave-1 ports: - "6179:6379" redis-...30 readsOtherRedis
Muhammad Ahmadmuhammadahmad.hashnode.dev·Jan 25, 2024MySQL Replication of Database (Master - Slave ) on Linux(Ubuntu)Assumptions: You have MySQL installed on both the master and replica machines. You have appropriate permissions to perform administrative tasks. Step 1: Update Package List on Both Master and Slave Node: To ensure you get the most recent details ...MySQL
Pratyushatechnodiary.hashnode.dev·Dec 9, 2023Unlocking the Basics: Key Concepts and Practical Applications - Part IIIWeek1 - Continuation Article Outline.: HDFS Architecture - Basic Overview Week1 Summary HDFS Architecture - Basic Overview: HDFS, short for Hadoop Distributed File System, caters to applications dealing with large datasets, ranging from gigabyte...Cloud Focused Big Data Serieshdfs commands
utkarsh srivastavautkarsh0701.hashnode.dev·Jul 24, 2023Add Jenkins slave nodes Step by step guide.Introduction Jenkins is an open-source automation server that helps in automating various tasks related to building, testing, and deploying software. One of its key features is the ability to distribute workloads across multiple machines using the "M...31 reads Jenkins, DevOps