iceshrimp-legacy/src/db/elasticsearch.ts

55 lines
925 B
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
import * as elasticsearch from 'elasticsearch';
2018-04-02 06:15:53 +02:00
import config from '../config';
2016-12-28 23:49:51 +01:00
// Init ElasticSearch connection
const client = new elasticsearch.Client({
host: `${config.elasticsearch.host}:${config.elasticsearch.port}`
});
// Send a HEAD request
client.ping({
// Ping usually has a 3000ms timeout
2018-07-04 13:02:45 +02:00
requestTimeout: 30000
}, error => {
2016-12-28 23:49:51 +01:00
if (error) {
console.error('elasticsearch is down!');
2018-07-04 13:02:45 +02:00
} else {
console.log('elasticsearch is available!');
}
});
client.indices.create({
index: 'misskey',
body: {
settings: {
analysis: {
analyzer: {
bigram: {
tokenizer: 'bigram_tokenizer'
}
},
tokenizer: {
bigram_tokenizer: {
type: 'nGram',
min_gram: 2,
max_gram: 2
}
}
}
},
mappings: {
note: {
properties: {
text: {
type: 'text',
index: 'analyzed',
analyzer: 'bigram'
}
}
}
}
2016-12-28 23:49:51 +01:00
}
});
export default client;