platform/dev/tool/src/elastic.ts
Andrey Sobolev 58eb205688
use redpanda queue (#8291)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2025-03-22 13:55:46 +05:00

59 lines
1.7 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 { Client as ElasticClient } from '@elastic/elasticsearch'
import { type StorageAdapter } from '@hcengineering/server-core'
export async function rebuildElastic (
mongoUrl: string,
dataId: string,
storageAdapter: StorageAdapter,
elasticUrl: string
): Promise<void> {
await dropElastic(elasticUrl, dataId)
}
async function dropElastic (elasticUrl: string, dataId: string): Promise<void> {
console.log('drop existing elastic docment')
const client = new ElasticClient({
node: elasticUrl
})
const productWs = dataId
await new Promise((resolve, reject) => {
client.indices.exists(
{
index: productWs
},
(err: any, result: any) => {
if (err != null) reject(err)
if (result.body === true) {
client.indices.delete(
{
index: productWs
},
(err: any, result: any) => {
if (err != null) reject(err)
resolve(result)
}
)
} else {
resolve(result)
}
}
)
})
await client.close()
}