create searchIndexRegistry module + add to backend

Signed-off-by: Emma Indal <emma.indahl@gmail.com>
This commit is contained in:
Emma Indal
2023-03-06 08:29:03 +01:00
committed by Camila Belo
parent cbf03b4464
commit 58f7583861
+48
View File
@@ -22,9 +22,56 @@ import { todoPlugin } from '@backstage/plugin-todo-backend';
import { techdocsPlugin } from '@backstage/plugin-techdocs-backend/alpha';
import { searchPlugin } from '@backstage/plugin-search-backend';
import { elasticSearchEngineModule } from '@backstage/plugin-search-backend-module-elasticsearch';
import {
coreServices,
createBackendModule,
} from '@backstage/backend-plugin-api';
import { searchIndexRegistryExtensionPoint } from '@backstage/plugin-search-backend-node';
import { DefaultCatalogCollatorFactory } from '@backstage/plugin-catalog-backend';
// import { pgSearchEngineModule } from '@backstage/plugin-search-backend-module-pg';
// import { lunrSearchEngineModule } from '@backstage/plugin-search-backend-node/';
// TODO: move to search-backend-node?
export const searchIndexRegistry = createBackendModule({
moduleId: 'searchIndexRegistry',
pluginId: 'search',
register(env) {
env.registerInit({
deps: {
indexRegistry: searchIndexRegistryExtensionPoint,
config: coreServices.config,
discovery: coreServices.discovery,
tokenManager: coreServices.tokenManager,
logger: coreServices.logger,
scheduler: coreServices.scheduler,
},
async init({
indexRegistry,
config,
discovery,
tokenManager,
scheduler,
}) {
const schedule = scheduler.createScheduledTaskRunner({
frequency: { minutes: 10 },
timeout: { minutes: 15 },
// A 3 second delay gives the backend server a chance to initialize before
// any collators are executed, which may attempt requests against the API.
initialDelay: { seconds: 3 },
});
indexRegistry.addCollator({
schedule,
factory: DefaultCatalogCollatorFactory.fromConfig(config, {
discovery: discovery,
tokenManager: tokenManager,
}),
});
},
});
},
});
const backend = createBackend();
backend.add(catalogPlugin());
@@ -43,5 +90,6 @@ backend.add(
},
}),
);
backend.add(searchIndexRegistry());
backend.start();