Fork me on GitHub

Other articles


  1. Python Common Gotchas

    This article discusses about common gotchas in python with code snippets describing what someone might think it would work like but how it actually works behind the scenes.

    Table of Contents

    • Mutable Default Arguments
    • Late Binding Closures
    • List Copy
    • Local Variable

    Mutable Default Arguments

    def append_to(element, to=[]):
        to.append …
    read more
  2. Kubernetes Architecture

    A kubernetes cluster is made up of one or more control plane and worker nodes.

    Control Plane

    Components of control plane are,

    • kube-apiserver: It is the frontend for the control plane exposing the Kubernetes API.
    • etcd: Consistent and highly available key-value store used as Kubernetes backing store for all cluster …
    read more
  3. Troubleshoot high latency database

    Problem Statement

    How would you troubleshoot a high latency database application, consider a user is experiencing delays per hits to an application due to database latency.

    Troubleshooting

    Latency describes the amount of delay on a network or Internet connection. Low latency implies that there are no or almost no delays …

    read more

social