I have a question about connecting Elasticsearch with Nest.js.
When I make an API call to Elasticsearch, it works fine.
In Nest.js, I've written the code as follows.
search.module.ts
import { Module } from '@nestjs/common';
import { ElasticsearchModule } from '@nestjs/elasticsearch';
import { SearchService } from './search.service';
@Module({
imports: [
ElasticsearchModule.registerAsync({
useFactory: () => ({
node: 'http://localhost:9200',
maxRetries: 10,
requestTimeout: 60000,
pingTimeout: 60000,
sniffOnStart: true,
auth: {
username: 'elastic',
password: 'elastic',
},
}),
}),
],
providers: [SearchService],
exports: [SearchService],
})
export class SearchModule {}
search.service.ts
import { Injectable } from '@nestjs/common';
import { ElasticsearchService } from '@nestjs/elasticsearch';
@Injectable()
export class SearchService {
constructor(private readonly esService: ElasticsearchService) {}
async search(q: string) {
const result = await this.esService.search({
index: 'csv',
body: {
query: {
match: {
title: q,
},
},
},
});
return result;
}
}
app.controller.ts
import { Controller, Get, Query } from '@nestjs/common';
import { SearchService } from './search/search.service';
@Controller()
export class AppController {
constructor(private readonly searchService: SearchService) {}
@Get()
async getHello(@Query('q') q: string) {
return await this.searchService.search(q);
}
}
app.module.ts
import { Module } from '@nestjs/common';
import { AppController } from './app.controller';
import { AppService } from './app.service';
import { SearchModule } from './search/search.module';
@Module({
imports: [SearchModule],
controllers: [AppController],
providers: [AppService],
})
export class AppModule {}
package.json
{
"name": "36-test",
"version": "0.0.1",
"description": "",
"author": "",
"private": true,
"license": "UNLICENSED",
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@elastic/elasticsearch": "^8.9.0",
"@nestjs/common": "^10.0.0",
"@nestjs/core": "^10.0.0",
"@nestjs/elasticsearch": "^10.0.1",
"@nestjs/platform-express": "^10.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.5.0",
"prettier": "^3.0.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}
However, when I make the API call, I don't receive a response and instead, I get a "Connect Timeout Error." What should I do to fix this issue?