How to design a reconciliation system that can handle tens of millions of data volumes, be distributed and highly available?

The path to growth as a programmer Internet/Programmer/Technology/Data Sharing focus on This article should take approximately 11 minutes to read. From: juejin.cn/post/7259949655583506490 1Background At present, online business volume is increasing day by day, with daily orders exceeding tens of millions, capital flows are large, and capital security has become a key concern. In order to […]

Solved: Error from server (Timeout): timeout expired waiting for volumes to attach or mount for pod pod

Blogger Maotouhu () takes you to Go to New World? Maotouhu recommends a list of necessary technology stacks for programmers: Cloud native technology Cloud Native: Golang Docker Kubernetes ? Helm Serverless ?AWS Lambda Google Cloud Functions Microservices Envoy Istio Prometheus Blog homepage: Maotouhu’s blog “Complete Column of Interview Questions” Articles with pictures and texts Vivid […]

kubernetes cluster orchestration – k8s storage (volumes, persistent volumes, statefulset controller)

volumes emptyDir volume vim emptydir.yaml apiVersion: v1 Kind: Pod metadata: name: vol1 spec: containers: – image: busyboxplus name: vm1 command: [“sleep”, “300”] volumeMounts: – mountPath: /cache name: cache-volume – name: vm2 image: nginx volumeMounts: – mountPath: /usr/share/nginx/html name: cache-volume volumes: – name: cache-volume emptyDir: medium: Memory sizeLimit: 100Mi kubectl apply -f emptydir.yaml kubectl get pod […]

Docker data volumes and their usage (taking Nginx static file deployment as an example)

What is a docker data volume? To figure out what a docker data volume is, let’s first look at a question: Install and run the Nginx image, see ===》7. Demonstration of common docker instructions (taking nginx installation as an example) After we successfully deploy Nginx, we want to deploy static files. At this time, we […]

SpringBoot implements Excel import and export, designed for millions of data volumes

SpringBoot implements Excel import and export, designed for millions of data volumes Requirement background Users can export all product data by clicking the Export All button on the UI interface; The number of exported records may be more than one million, or even two million; Requirement design If data is imported synchronously, the interface will […]