gpt4 book ai didi

sql - Golang 中的 Multi-Tenancy

转载 作者:IT王子 更新时间:2023-10-29 01:34:34 25 4
gpt4 key购买 nike

我目前正在用 Go 编写一项服务,我需要处理多个租户。我已经决定使用单一数据库、共享表方法,使用“tenant_id”鉴别器来分离租户。

服务的结构如下:

gRPC server -> gRPC Handlers -
\_ Managers (SQL)
/
HTTP/JSON server -> Handlers -

两台服务器,一台 gRPC(管理)和一台 HTTP/JSON(公共(public) API),每台服务器都在自己的 go-routine 中运行,并有各自的处理程序,可以利用不同管理器的功能。经理们(我们称其为“库存经理”)都在不同的根级包中。据我所知,这些是我的领域实体。

对此我有一些疑问:

  1. 我找不到任何支持 Multi-Tenancy 的 Go ORM。在 sqlx 包之上编写我自己的可能是一个有效的选择吗?

  2. future 的其他服务也将需要 Multi-Tenancy 支持,所以我想无论如何我都必须创建一些库/包。

  3. 今天,我通过为公共(public) API 服务器使用 ResolveTenantBySubdomain 中间件来解析租户。然后,我将已解析的租户 ID 放在上下文值中,该值随调用管理器一起发送。在管理器的不同方法中,我从上下文值中获取租户 ID。然后将其用于每个 SQL 查询/执行调用,或者如果租户 ID 丢失或无效则返回错误。我什至应该为此目的使用上下文吗?

  4. 在gRPC服务器上解析租户,我相信我必须使用UnaryInterceptor函数来进行中间件处理。由于 gRPCAPI接口(interface)只会被其他后端服务访问,我想这里不需要通过子域解析。但是我应该如何嵌入租户 ID?在标题中?

真的希望我问的是正确的问题。问候,卡尔。

最佳答案

I cannot find any ORM for Go that supports multiple tenants out there. Is writing my own on top of perhaps the sqlx package a valid option?

Go 中的 ORM 是一个有争议的话题!有些 Go 用户喜欢它们,有些则讨厌它们并且更喜欢手动编写 SQL。这是个人喜好问题。在这里询问特定的库建议是题外话,无论如何,我不知道任何 Multi-Tenancy ORM 库——但是没有什么可以阻止你使用 sqlx 的包装器(我工作每天在执行此操作的系统上)。

Other services in the future will require multi-tenant support too, so I guess I would have to create some library/package anyway.

以适合您的编程和接口(interface)模式的方式从这些内部服务中抽象出这种行为是有意义的,但这里没有进一步的细节来更具体地回答。

Today, I resolve the tenants by using a ResolveTenantBySubdomain middleware for the public API server. I then place the resolved tenant id in a context value that is sent with the call to the manager. Inside the different methods in the manager, I get the tenant id from the context value. This is then used with every SQL query/exec calls or returns a error if missing or invalid tenant id. Should I even use context for this purpose?

context.Context 主要是关于取消,而不是请求传播。根据documentation,您的使用是可以接受的对于 WithValue 函数,它是 widely considered使用当前实现的 context 包来传递值的代码味道不好。与其使用缺乏类型安全和许多其他属性的隐式行为,不如通过将租户 ID 传递给相关函数调用,在下游数据层的函数签名中显式显示?

Resolving the tenant on the gRPC server, I believe I have to use the UnaryInterceptor function for middleware handling. Since the gRPC API interface will only be accessed by other backend services, i guess resolving by subdomain is unneccessary here. But how should I embed the tenant id? In the header? [sic]

gRPC 库不会对您的设计选择固执己见。您可以使用 header 值(将租户 ID 作为“环境”参数传递给请求)或将租户 ID 参数显式添加到需要它的每个远程方法调用。

请注意,以这种方式在您的服务之间传递租户 ID 会在它们之间创建外部信任 - 如果服务 A 发出服务 B 的请求并使用租户 ID 对其进行注释,则您假设服务 A 具有执行必要的访问控制检查以验证该租户的用户确实在发出请求。在这个简单的模型中没有任何东西可以防止流氓服务 C 向服务 B 询问有关某个任意租户 ID 的信息。另一种实现方式将实现更复杂的无人信任政策,由此为每个服务提供足够的访问控制信息,以就是否应满足特定租户范围内的特定请求做出自己的政策决定。

关于sql - Golang 中的 Multi-Tenancy ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52559850/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com