2020-05-07
Note
- Golangではinterfaceはどのパッケージに属するのか - Runner in the High
- https://www.izumisy.work/entry/2018/08/19/120452
- interface は使う側で定義しようという話
- オブザーバビリティにおけるプロファイルの重要性 pprofを活用するメリットをGoogle CloudのDeveloper Advocateが語る - ログミーTech
- https://logmi.jp/tech/articles/322787
- pprof, –base option で比較できるの知らんかった
- 大規模クラスタの構築 - Kubernetes
- https://kubernetes.io/ja/docs/setup/best-practices/cluster-large/
- 大事
- Node 数別の master node に使うべきインスタンスタイプも書いてある
At v1.18, Kubernetes supports clusters with up to 5000 nodes. More specifically, we support configurations that meet all of the following criteria:
No more than 5000 nodes No more than 150000 total pods No more than 300000 total containers No more than 100 pods per node
- If You’re Adopting Kubernetes, You Need Chaos Engineering
- string - What’s the difference between ResponseWriter.Write and io.WriteString? - Stack Overflow
- https://stackoverflow.com/questions/37863374/whats-the-difference-between-responsewriter-write-and-io-writestring
- string を書くときは
io.WriteString
, []byte の場合はw.Write
を使おう