heidsoft
heidsoft
https://stackoverflow.com/questions/17747906/getting-deadlock-found-when-trying-to-get-lock-try-restarting-transaction https://dev.mysql.com/doc/refman/8.0/en/innodb-deadlocks.html
k8s生产实践
# istio ## 部署入门链接 [安装配置](https://istio.io/latest/zh/docs/setup/additional-setup/config-profiles/) [Bookinfo 应用](https://istio.io/latest/zh/docs/examples/bookinfo/) [Ingress Gateway](https://istio.io/latest/zh/docs/tasks/traffic-management/ingress/ingress-control/#determining-the-ingress-i-p-and-ports) [Gateway](https://istio.io/latest/zh/docs/reference/config/networking/gateway/) [Virtual Service](https://istio.io/latest/zh/docs/reference/config/networking/virtual-service/#VirtualService-gateways) [设置 Sidecar](https://istio.io/latest/zh/docs/setup/additional-setup/sidecar-injection/#manual-sidecar-injection) https://skyao.io/learning-istio/installation/minikube.html https://readailib.com/2019/02/22/kubernetes/istio-minikube/ https://emacoo.cn/devops/istio-tutorial/ https://medium.com/faun/istio-step-by-step-part-10-installing-istio-1-4-in-minikube-ebce9a4e99c https://www.jianshu.com/p/314500cce146 ## minikube 使用 [minikube](https://kubernetes.io/zh/docs/tutorials/hello-minikube/) ``` minikube addons list ➜ istio-1.7.1 minikube...
jvm 调试
# DefNew 与 ParNew [HotSpot VM的开发历史](https://hllvm-group.iteye.com/group/topic/37095) ``` HotSpot VM的GC组老人之一Jon Masamitsu很久之前就写过blog讲解这个:https://blogs.oracle.com/jonthecollector/entry/our_collectors 简单来说,有这么多东西反映了HotSpot VM的开发历史和实现细节。我在写篇东西讲述这部分历史,哪天写完的话在这边也放个链接嗯。 DefNewGeneration是default new generation ParNewGeneration是parallel new generation 原本HotSpot VM里没有并行GC,当时就只有NewGeneration;后来准备要加入young gen的并行GC,就把原本的NewGeneration改名为DefNewGeneration,然后把新加的并行版叫做ParNewGeneration。 这些XXXGeneration都在HotSpot VM的“分代式GC框架”内。本来HotSpot VM鼓励开发者尽量在这个框架内开发GC,但后来有个开发就是不愿意被这框架憋着,自己硬写了个没有使用已有框架的新并行GC,并拉拢性能测试团队用这个并行GC来跑分,成绩也还不错,于是这个GC就放进HotSpot VM里了。这就是我们现在看到的ParallelScavenge。 (结果就是HotSpot GC组不得不维护两个功能几乎一样、但各种具体细节不同的并行GC。其实是件很头疼的事情嗯) Scavenge或者叫scavenging GC,其实就是copying GC的另一种叫法而已。HotSpot...
# kafka https://data-flair.training/blogs/kafka-interview-questions/ # nginx https://career.guru99.com/top-18-nginx-interview-question/ # redis https://career.guru99.com/top-10-redis-interview-questions/ https://medium.com/@cosmicconvallis/interview-questions-on-redis-for-developers-c27769b410e9 # mysql https://career.guru99.com/top-50-mysql-interview-questions-answers/ # es https://www.educba.com/elasticsearch-interview-questions/ # django https://www.javatpoint.com/django-interview-questions-and-answers https://career.guru99.com/top-16-django-interview-questions/ # k8s https://www.onlineinterviewquestions.com/kubernetes-interview-questions/
nginx 问题
nginx ssl https://serverfault.com/questions/622855/nginx-proxy-to-back-end-with-ssl-client-certificate-authentication https://www.jianshu.com/p/e5aef185f0c6 https://serverfault.com/questions/622855/nginx-proxy-to-back-end-with-ssl-client-certificate-authentication
看core file size: ulimit -c core file size: unlimited:core文件的大小不受限制 [Linux生成core文件、core文件路径设置](https://blog.csdn.net/u011417820/article/details/71435031)
https://unix.stackexchange.com/questions/116971/nfs-server-changes-in-etc-exports-file-need-service-restart
tomcat 容器化后启动失败 镜像制作: https://medium.com/the-code-review/how-to-use-entrypoint-with-docker-and-docker-compose-1c2062aa17a2 https://til.codes/docker-run-vs-cmd-vs-entrypoint/ https://medium.freecodecamp.org/docker-entrypoint-cmd-dockerfile-best-practices-abc591c30e21
https://yq.aliyun.com/articles/558860