d5c974054d
In this PR: ## Improve recompute metadata cache performance. We are aiming for ~100ms Deleting relationMetadata table and FKs pointing on it Fetching indexMetadata and indexFieldMetadata in a separate query as typeorm is suboptimizing ## Remove caching lock As recomputing the metadata cache is lighter, we try to stop preventing multiple concurrent computations. This also simplifies interfaces ## Introduce self recovery mecanisms to recompute cache automatically if corrupted Aka getFreshObjectMetadataMaps ## custom object resolver performance improvement: 1sec to 200ms Double check queries and indexes used while creating a custom object Remove the queries to db to use the cached objectMetadataMap ## reduce objectMetadataMaps to 500kb <img width="222" alt="image" src="https://github.com/user-attachments/assets/2370dc80-49b6-4b63-8d5e-30c5ebdaa062" /> We used to stored 3 fieldMetadataMaps (byId, byName, byJoinColumnName). While this is great for devXP, this is not great for performances. Using the same mecanisme as for objectMetadataMap: we only keep byIdMap and introduce two otherMaps to idByName, idByJoinColumnName to make the bridge ## Add dataloader on IndexMetadata (aka indexMetadataList in the API) ## Improve field resolver performances too ## Deprecate ClientConfig
69 lines
2.2 KiB
TypeScript
69 lines
2.2 KiB
TypeScript
import { Injectable, Type } from '@nestjs/common';
|
|
|
|
import { ObjectLiteral } from 'typeorm';
|
|
|
|
import { WorkspaceDatasourceFactory } from 'src/engine/twenty-orm/factories/workspace-datasource.factory';
|
|
import { WorkspaceRepository } from 'src/engine/twenty-orm/repository/workspace.repository';
|
|
import { convertClassNameToObjectMetadataName } from 'src/engine/workspace-manager/workspace-sync-metadata/utils/convert-class-to-object-metadata-name.util';
|
|
|
|
@Injectable()
|
|
export class TwentyORMGlobalManager {
|
|
constructor(
|
|
private readonly workspaceDataSourceFactory: WorkspaceDatasourceFactory,
|
|
) {}
|
|
|
|
async getRepositoryForWorkspace<T extends ObjectLiteral>(
|
|
workspaceId: string,
|
|
workspaceEntity: Type<T>,
|
|
options?: {
|
|
shouldBypassPermissionChecks?: boolean;
|
|
},
|
|
): Promise<WorkspaceRepository<T>>;
|
|
|
|
async getRepositoryForWorkspace<T extends ObjectLiteral>(
|
|
workspaceId: string,
|
|
objectMetadataName: string,
|
|
options?: {
|
|
shouldBypassPermissionChecks?: boolean;
|
|
},
|
|
): Promise<WorkspaceRepository<T>>;
|
|
|
|
async getRepositoryForWorkspace<T extends ObjectLiteral>(
|
|
workspaceId: string,
|
|
workspaceEntityOrObjectMetadataName: Type<T> | string,
|
|
options: {
|
|
shouldBypassPermissionChecks?: boolean;
|
|
} = {
|
|
shouldBypassPermissionChecks: false,
|
|
},
|
|
): Promise<WorkspaceRepository<T>> {
|
|
let objectMetadataName: string;
|
|
|
|
if (typeof workspaceEntityOrObjectMetadataName === 'string') {
|
|
objectMetadataName = workspaceEntityOrObjectMetadataName;
|
|
} else {
|
|
objectMetadataName = convertClassNameToObjectMetadataName(
|
|
workspaceEntityOrObjectMetadataName.name,
|
|
);
|
|
}
|
|
|
|
const workspaceDataSource =
|
|
await this.workspaceDataSourceFactory.create(workspaceId);
|
|
|
|
const repository = workspaceDataSource.getRepository<T>(
|
|
objectMetadataName,
|
|
options.shouldBypassPermissionChecks,
|
|
);
|
|
|
|
return repository;
|
|
}
|
|
|
|
async getDataSourceForWorkspace({ workspaceId }: { workspaceId: string }) {
|
|
return await this.workspaceDataSourceFactory.create(workspaceId);
|
|
}
|
|
|
|
async destroyDataSourceForWorkspace(workspaceId: string) {
|
|
await this.workspaceDataSourceFactory.destroy(workspaceId);
|
|
}
|
|
}
|