Interview Bootcamp
Vote

0% completed

Latency and Performance

Latency and performance decide what using the system actually feels like, and they decide how much data and traffic it can carry before it starts to buckle.

Three levers control them: where the data sits, how work is spread, and what gets remembered.

Data Locality

Data locality is the organization and distribution of data within a system so that as little data as possible has to be moved between nodes.

Store related data together, and store it near the nodes that access it most often

.....

.....

.....

Like the course? Get enrolled and start learning!
AnupamMisra

AnupamMisra

· 3 months ago

I think another factor which affects performance, is right sizing of resources - conn. pools, pod resources, etc.

S

saps-hideous0l

· 2 years ago

Is IP Hash and Consistent Hashing the same? Since IP hash is mentioned in the load balancing section and here the listed algorithms contains Consistent Hashing....

Show 1 reply