mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-11 00:08:30 +01:00
feat: optimize applications overview query (#6883)
We encountered an issue with a customer because this query was returning 3 million rows. The problem arose from each instance reporting approximately 100 features, with a total of 30,000 instances. The query was joining these, thus multiplying the data. This approach was fine for a reasonable number of instances, but in this extreme case, it did not perform well. This PR modifies the logic; instead of performing outright joins, we are now grouping features by environment into an array, resulting in just one row returned per instance. I tested locally with the same dataset. Previously, loading this large instance took about 21 seconds; now it has reduced to 2 seconds. Although this is still significant, the dataset is extensive.
This commit is contained in:
parent
f0ef7a6f31
commit
06f2f06f38
@ -75,6 +75,7 @@ exports[`should create default config 1`] = `
|
||||
"experiments": {
|
||||
"adminTokenKillSwitch": false,
|
||||
"anonymiseEventLog": false,
|
||||
"applicationOverviewNewQuery": false,
|
||||
"automatedActions": false,
|
||||
"bearerTokenMiddleware": false,
|
||||
"caseInsensitiveInOperators": false,
|
||||
|
@ -11,6 +11,8 @@ import type { Db } from './db';
|
||||
import type { IApplicationOverview } from '../features/metrics/instance/models';
|
||||
import { applySearchFilters } from '../features/feature-search/search-utils';
|
||||
import type { IFlagResolver } from '../types';
|
||||
import metricsHelper from '../util/metrics-helper';
|
||||
import { DB_TIME } from '../metric-events';
|
||||
|
||||
const COLUMNS = [
|
||||
'app_name',
|
||||
@ -118,6 +120,8 @@ export default class ClientApplicationsStore
|
||||
|
||||
private logger: Logger;
|
||||
|
||||
private timer: Function;
|
||||
|
||||
private flagResolver: IFlagResolver;
|
||||
|
||||
constructor(
|
||||
@ -129,6 +133,11 @@ export default class ClientApplicationsStore
|
||||
this.db = db;
|
||||
this.flagResolver = flagResolver;
|
||||
this.logger = getLogger('client-applications-store.ts');
|
||||
this.timer = (action: string) =>
|
||||
metricsHelper.wrapTimer(eventBus, DB_TIME, {
|
||||
store: 'client-applications',
|
||||
action,
|
||||
});
|
||||
}
|
||||
|
||||
async upsert(details: Partial<IClientApplication>): Promise<void> {
|
||||
@ -292,6 +301,60 @@ export default class ClientApplicationsStore
|
||||
async getApplicationOverview(
|
||||
appName: string,
|
||||
): Promise<IApplicationOverview> {
|
||||
if (!this.flagResolver.isEnabled('applicationOverviewNewQuery')) {
|
||||
return this.getOldApplicationOverview(appName);
|
||||
}
|
||||
const stopTimer = this.timer('getApplicationOverview');
|
||||
const query = this.db
|
||||
.with('metrics', (qb) => {
|
||||
qb.select([
|
||||
'cme.app_name',
|
||||
'cme.environment',
|
||||
'f.project',
|
||||
this.db.raw(
|
||||
'array_agg(DISTINCT cme.feature_name) as features',
|
||||
),
|
||||
])
|
||||
.from('client_metrics_env as cme')
|
||||
.leftJoin('features as f', 'f.name', 'cme.feature_name')
|
||||
.groupBy('cme.app_name', 'cme.environment', 'f.project');
|
||||
})
|
||||
.select([
|
||||
'm.project',
|
||||
'm.environment',
|
||||
'm.features',
|
||||
'ci.instance_id',
|
||||
'ci.sdk_version',
|
||||
'ci.last_seen',
|
||||
'a.strategies',
|
||||
])
|
||||
.from({ a: 'client_applications' })
|
||||
.leftJoin('metrics as m', 'm.app_name', 'a.app_name')
|
||||
.leftJoin('client_instances as ci', function () {
|
||||
this.on('ci.app_name', '=', 'm.app_name').andOn(
|
||||
'ci.environment',
|
||||
'=',
|
||||
'm.environment',
|
||||
);
|
||||
})
|
||||
.where('a.app_name', appName)
|
||||
.orderBy('m.environment', 'asc');
|
||||
const rows = await query;
|
||||
stopTimer();
|
||||
if (!rows.length) {
|
||||
throw new NotFoundError(`Could not find appName=${appName}`);
|
||||
}
|
||||
const existingStrategies: string[] = await this.db
|
||||
.select('name')
|
||||
.from('strategies')
|
||||
.pluck('name');
|
||||
return this.mapApplicationOverviewData(rows, existingStrategies);
|
||||
}
|
||||
|
||||
async getOldApplicationOverview(
|
||||
appName: string,
|
||||
): Promise<IApplicationOverview> {
|
||||
const stopTimer = this.timer('getApplicationOverviewOld');
|
||||
const query = this.db
|
||||
.with('metrics', (qb) => {
|
||||
qb.distinct(
|
||||
@ -322,6 +385,7 @@ export default class ClientApplicationsStore
|
||||
.where('a.app_name', appName)
|
||||
.orderBy('cme.environment', 'asc');
|
||||
const rows = await query;
|
||||
stopTimer();
|
||||
if (!rows.length) {
|
||||
throw new NotFoundError(`Could not find appName=${appName}`);
|
||||
}
|
||||
@ -335,6 +399,96 @@ export default class ClientApplicationsStore
|
||||
mapApplicationOverviewData(
|
||||
rows: any[],
|
||||
existingStrategies: string[],
|
||||
): IApplicationOverview {
|
||||
if (!this.flagResolver.isEnabled('applicationOverviewNewQuery')) {
|
||||
return this.mapOldApplicationOverviewData(rows, existingStrategies);
|
||||
}
|
||||
const featureCount = new Set(rows.flatMap((row) => row.features)).size;
|
||||
const missingStrategies: Set<string> = new Set();
|
||||
|
||||
const environments = rows.reduce((acc, row) => {
|
||||
const {
|
||||
environment,
|
||||
instance_id,
|
||||
sdk_version,
|
||||
last_seen,
|
||||
project,
|
||||
features,
|
||||
strategies,
|
||||
} = row;
|
||||
|
||||
if (!environment) return acc;
|
||||
|
||||
strategies.forEach((strategy) => {
|
||||
if (
|
||||
!DEPRECATED_STRATEGIES.includes(strategy) &&
|
||||
!existingStrategies.includes(strategy)
|
||||
) {
|
||||
missingStrategies.add(strategy);
|
||||
}
|
||||
});
|
||||
|
||||
const featuresNotMappedToProject = !project;
|
||||
|
||||
let env = acc.find((e) => e.name === environment);
|
||||
if (!env) {
|
||||
env = {
|
||||
name: environment,
|
||||
instanceCount: instance_id ? 1 : 0,
|
||||
sdks: sdk_version ? [sdk_version] : [],
|
||||
lastSeen: last_seen,
|
||||
uniqueInstanceIds: new Set(
|
||||
instance_id ? [instance_id] : [],
|
||||
),
|
||||
issues: {
|
||||
missingFeatures: featuresNotMappedToProject
|
||||
? features
|
||||
: [],
|
||||
},
|
||||
};
|
||||
acc.push(env);
|
||||
} else {
|
||||
if (instance_id) {
|
||||
env.uniqueInstanceIds.add(instance_id);
|
||||
env.instanceCount = env.uniqueInstanceIds.size;
|
||||
}
|
||||
if (featuresNotMappedToProject) {
|
||||
env.issues.missingFeatures = features;
|
||||
}
|
||||
if (sdk_version && !env.sdks.includes(sdk_version)) {
|
||||
env.sdks.push(sdk_version);
|
||||
}
|
||||
if (new Date(last_seen) > new Date(env.lastSeen)) {
|
||||
env.lastSeen = last_seen;
|
||||
}
|
||||
}
|
||||
|
||||
return acc;
|
||||
}, []);
|
||||
environments.forEach((env) => {
|
||||
delete env.uniqueInstanceIds;
|
||||
env.sdks.sort();
|
||||
});
|
||||
|
||||
return {
|
||||
projects: [
|
||||
...new Set(
|
||||
rows
|
||||
.filter((row) => row.project != null)
|
||||
.map((row) => row.project),
|
||||
),
|
||||
],
|
||||
featureCount,
|
||||
environments,
|
||||
issues: {
|
||||
missingStrategies: [...missingStrategies],
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
private mapOldApplicationOverviewData(
|
||||
rows: any[],
|
||||
existingStrategies: string[],
|
||||
): IApplicationOverview {
|
||||
const featureCount = new Set(rows.map((row) => row.feature_name)).size;
|
||||
const missingStrategies: Set<string> = new Set();
|
||||
|
@ -60,7 +60,8 @@ export type IFlagKey =
|
||||
| 'featureLifecycle'
|
||||
| 'projectListFilterMyProjects'
|
||||
| 'parseProjectFromSession'
|
||||
| 'createProjectWithEnvironmentConfig';
|
||||
| 'createProjectWithEnvironmentConfig'
|
||||
| 'applicationOverviewNewQuery';
|
||||
|
||||
export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;
|
||||
|
||||
@ -297,6 +298,10 @@ const flags: IFlags = {
|
||||
process.env.UNLEASH_EXPERIMENTAL_CREATE_PROJECT_WITH_ENVIRONMENT_CONFIG,
|
||||
false,
|
||||
),
|
||||
applicationOverviewNewQuery: parseEnvVarBoolean(
|
||||
process.env.UNLEASH_EXPERIMENTAL_APPLICATION_OVERVIEW_NEW_QUERY,
|
||||
false,
|
||||
),
|
||||
};
|
||||
|
||||
export const defaultExperimentalOptions: IExperimentalOptions = {
|
||||
|
@ -57,6 +57,7 @@ process.nextTick(async () => {
|
||||
projectListFilterMyProjects: true,
|
||||
parseProjectFromSession: true,
|
||||
createProjectWithEnvironmentConfig: true,
|
||||
applicationOverviewNewQuery: true,
|
||||
},
|
||||
},
|
||||
authentication: {
|
||||
|
@ -56,6 +56,7 @@ beforeAll(async () => {
|
||||
experimental: {
|
||||
flags: {
|
||||
strictSchemaValidation: true,
|
||||
applicationOverviewNewQuery: true,
|
||||
},
|
||||
},
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user