If I have a multi-tenant architecture using a Postgres DB is it beneficial to create the AccountId as part of the Cluster Index? Any references to some good database design principles for large multi-tenant architecture designs?
As example:
CREATE TABLE orders ( orderid uuid NOT NULL, accountid bigint NOT NULL, . . )