mirror of
https://github.com/hcengineering/platform.git
synced 2024-12-23 19:44:59 +03:00
ddecae80dd
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
90 lines
2.5 KiB
TypeScript
90 lines
2.5 KiB
TypeScript
//
|
|
// Copyright © 2022 Hardcore Engineering Inc.
|
|
//
|
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License. You may
|
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
//
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
import { Analytics } from '@hcengineering/analytics'
|
|
import { startBackup } from '@hcengineering/backup-service'
|
|
import { MeasureMetricsContext, metricsToString, newMetrics } from '@hcengineering/core'
|
|
import { DummyDbAdapter, DummyFullTextAdapter, type PipelineFactory } from '@hcengineering/server-core'
|
|
import { createServerPipeline } from '@hcengineering/server-pipeline'
|
|
import { configureAnalytics, SplitLogger } from '@hcengineering/analytics-service'
|
|
import { writeFile } from 'fs/promises'
|
|
import { join } from 'path'
|
|
|
|
const metricsContext = new MeasureMetricsContext(
|
|
'github',
|
|
{},
|
|
{},
|
|
newMetrics(),
|
|
new SplitLogger('backup-service', {
|
|
root: join(process.cwd(), 'logs'),
|
|
enableConsole: (process.env.ENABLE_CONSOLE ?? 'true') === 'true'
|
|
})
|
|
)
|
|
|
|
const sentryDSN = process.env.SENTRY_DSN
|
|
|
|
configureAnalytics(sentryDSN, {})
|
|
Analytics.setTag('application', 'backup-service')
|
|
|
|
let oldMetricsValue = ''
|
|
|
|
const intTimer = setInterval(() => {
|
|
const val = metricsToString(metricsContext.metrics, 'Backup', 140)
|
|
if (val !== oldMetricsValue) {
|
|
oldMetricsValue = val
|
|
void writeFile('metrics.txt', val).catch((err) => {
|
|
console.error(err)
|
|
})
|
|
}
|
|
}, 30000)
|
|
|
|
const onClose = (): void => {
|
|
clearInterval(intTimer)
|
|
metricsContext.info('Closed')
|
|
}
|
|
|
|
startBackup(metricsContext, (mongoUrl, storageAdapter) => {
|
|
const factory: PipelineFactory = createServerPipeline(
|
|
metricsContext,
|
|
mongoUrl,
|
|
{
|
|
externalStorage: storageAdapter,
|
|
fullTextUrl: '',
|
|
indexParallel: 0,
|
|
indexProcessing: 0,
|
|
disableTriggers: true,
|
|
rekoniUrl: '',
|
|
usePassedCtx: true
|
|
},
|
|
{
|
|
adapters: {
|
|
FullTextBlob: {
|
|
factory: async () => new DummyDbAdapter(),
|
|
url: ''
|
|
}
|
|
},
|
|
fulltextAdapter: {
|
|
factory: async () => new DummyFullTextAdapter(),
|
|
stages: () => [],
|
|
url: ''
|
|
}
|
|
}
|
|
)
|
|
return factory
|
|
})
|
|
|
|
process.on('SIGINT', onClose)
|
|
process.on('SIGTERM', onClose)
|