This commit is contained in:
syuilo 2018-07-04 20:36:06 +09:00
parent ccc79eac91
commit 7994aa96e2

View file

@ -1,27 +1,7 @@
import * as elasticsearch from 'elasticsearch';
import config from '../config';
// Init ElasticSearch connection
const client = config.elasticsearch ? new elasticsearch.Client({
host: `${config.elasticsearch.host}:${config.elasticsearch.port}`
}) : null;
if (client) {
// Send a HEAD request
client.ping({
// Ping usually has a 3000ms timeout
requestTimeout: 30000
}, error => {
if (error) {
console.error('elasticsearch is down!');
} else {
console.log('elasticsearch is available!');
}
});
client.indices.create({
index: 'misskey',
body: {
const index = {
settings: {
analysis: {
analyzer: {
@ -49,8 +29,36 @@ if (client) {
}
}
}
};
// Init ElasticSearch connection
const client = config.elasticsearch ? new elasticsearch.Client({
host: `${config.elasticsearch.host}:${config.elasticsearch.port}`
}) : null;
if (client) {
// Send a HEAD request
client.ping({
// Ping usually has a 3000ms timeout
requestTimeout: 30000
}, error => {
if (error) {
console.error('elasticsearch is down!');
} else {
console.log('elasticsearch is available!');
}
});
client.indices.exists({
index: 'misskey'
}).then(exist => {
if (exist) return;
client.indices.create({
index: 'misskey',
body: index
});
});
}
export default client;