技术阅读周刊第9️⃣期

技术阅读周刊,每周更新。

历史更新

美团技术博客十周年,感谢一路相伴 - 美团技术团队

URL: https://tech.meituan.com/2023/12/04/ten-years-of-meituan-technology-blog.html
image.png

美团技术博客更新十周年了,这个博客确实在广大开发者心中都是有口皆碑的;记得当初在这里看过 HashMap 的原理分析、动态线程池等技术;
现在也有加到订阅列表里,有更新时会第一时间阅读

CompletableFuture原理与实践-外卖商家端API的异步化 - 美团技术团队

URL: https://tech.meituan.com/2022/05/12/principles-and-practices-of-completablefuture.html
image.png

本文描述了美团对 API 做异步优化的过程,最终选择了 CompletableFuture 的过程
CompletableFuture 使用起来的坑还是蛮多的,推荐大家都应该阅读下。

  • 明确知道自己的代码运行在哪个线程上,如果不传入线程池那就是公共的 ForkJoinPool 线程池,可能会有阻塞的情况;也可以直接传入自定义的线程池
  • 线程池循环使用可能会引起死锁,当 A 线程依赖于 B 线程的执行结果时,如果此时是同一个线程池,并且线程池已满,B 线程一直得不到机会执行,那 A 线程也无法运行,从而导致死锁。
  • CompletableFuture 的异常往往会被包装为CompletionException,所以最好是要异常工具类进行提取
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    public class ExceptionUtils {
    public static Throwable extractRealException(Throwable throwable) {
    //这里判断异常类型是否为CompletionException、ExecutionException,如果是则进行提取,否则直接返回。
    if (throwable instanceof CompletionException || throwable instanceof ExecutionException) {
    if (throwable.getCause() != null) {
    return throwable.getCause();
    }
    }
    return throwable;

没错,数据库确实应该放入 K8s 里!

URL: https://mp.weixin.qq.com/s/QJn6-EzPp7PXar-GdMITCA

虽然这是一篇软文,不过其中几个论据确实是有道理的。
而 K8s 的控制器则是基于另一种思路:机器能做的事就不应该由人来做。通过 Operator,可以实现24 小时不间断地同步期望状态和实际状态,而这是用 Ansible 很难实现的,你用 Ansible 实现是想写个定时任务嘛?

  • 复杂度:
    • Sealos 提供了一键安装命令,有效降低其复杂度
  • 稳定性:
    • 一个良好的软件架构会不断提升和收敛其鲁棒性,并逐渐减少对人的依赖,比如使用 Oracle 的人喝茶时间一定比用开源 MySQL 的人喝茶时间多
  • 性能:
    • 而且,容器对数据库性能的影响几乎可以忽略不计,真正重要的是磁盘 IO 和网络带宽时延等因素。

目前市面上大部分云服务厂商所提供的数据库服务也都是跑在 kubernetes 中的。

deckarep/golang-set: A simple, battle-tested and generic set type for the Go language. Trusted by Docker, 1Password, Ethereum and Hashicorp.

URL: https://github.com/deckarep/golang-set
image.png

一个泛型的 Go Set 库, 还提供了一些集合常用的操作工具,比如 Contains/Difference/Intersect 等函数。

已经被这些公司采用了:

  • Ethereum
  • Docker
  • 1Password
  • Hashicorp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Syntax example, doesn't compile.
mySet := mapset.NewSet[T]() // T 是具体的类型

// Therefore this code creates an int set
mySet := mapset.NewSet[int]()

// Or perhaps you want a string set
mySet := mapset.NewSet[string]()

type myStruct struct {
name string
age uint8
}

// Alternatively a set of structs
mySet := mapset.NewSet[myStruct]()

// Lastly a set that can hold anything using the any or empty interface keyword: interface{}. This is effectively removes type safety.
mySet := mapset.NewSet[any]()

文章链接:

#Newletters