Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Load balancer:
you can scale your applications and create high availability for your services.It provides
low latency and high throughput,and scales up to millions of flows for all TCP and UDP applications.

Load Balancer distributes new inbound flows that arrive on the Load Balancer's frontend to backend pool
instances, according to rules and health probes.

Agent-swarm:
- Frontend ip configuration - attach public ip
- Backend pools - attach vm's or availability set
- Health Probes/check - Configure path and port - 80 and 443
EX: name: http
protocol: TCP
port: 80
interval: 5
unhealthy threshold: 2
- Load Balancing rules - Frontend-ip-config,Frontend-port,backend-port, Backend-pool and health-probe
Ex: Frontend-port: 80
backend-port: 80


Keycloak-swarm:
- Frontend ip configuration - Internal ip by default
- Backend pools - attach vm's or availability set
- Health Probes/check - Configure path and port - 8080
EX: name: keycloakhealth
protocol: TCP
port: 8080
interval: 5
unhealthy threshold: 2
- Load Balancing rules - Frontend-ip-config,Frontend-port, backend-port, Backend-pool and health-probe
Ex: Frontend-port: 80
backend-port: 8080


KP-LBServices:
- Frontend ip configuration - Internal ip by default
- Backend pools - attach vm's or availability set
- Health Probes/check - Configure path and port - 8080 and 9000
EX: name: learninghealth
protocol: http
port: 8080
path: /learning-service/health
interval: 5
unhealthy threshold: 2

name: searchhealth
protocol: http
port: 9000
path: /health
interval: 5
unhealthy threshold: 2
- Load Balancing rules - Frontend-ip-config,Frontend-port, backend-port, Backend-pool and health-probe
Ex: Frontend-port: 8080 or 9000
backend-port: 8080 or 9000


DP-LBServices: (analytic-api)
- Frontend ip configuration - Internal ip by default
- Backend pools - attach vm's or availability set
- Health Probes/check - Configure path and port - 9000
EX: name: analyticshealth
protocol: tcp
port: 9000
interval: 5
unhealthy threshold: 2
- Load Balancing rules - Frontend-ip-config,Frontend-port, backend-port, Backend-pool and health-probe
Ex: Frontend-port: 9000
backend-port: 9000


  • No labels