How to handle a situation when one microservice is out of order

34 Views Asked by At

How to handle a situation when the microservice of products is out of order and does not return a value?

async getStats(productId: string) {
    const existedProduct = await firstValueFrom(
        this.productClient.send('get_product', { productId })
    );

    if (!existedProduct) {
        throw new NotFoundException('Продукт не найден');
    }

    const avgRatingData = await this.prismaService.review.aggregate({
        where: { productId },
        _avg: {
            rate: true
        }
    });

    const reviewsCount = await this.prismaService.review.count({
        where: { productId }
    });

    const avgRating = avgRatingData._avg.rate ? Number(avgRatingData._avg.rate.toFixed(2)) : 0;

    return {
        stats: {
            productId,
            avgRating,
            reviewsCount
        }
    };
}

The problem is that if the product service fails, this code will wait for a response until it turns on again

const existedProduct = await firstValueFrom(
    this.productClient.send('get_product', { productId })
);
1

There are 1 best solutions below

0
On

I decided as follows:

const existedProduct = await firstValueFrom(
    this.productClient.send('get_product', { productId }).pipe(timeout(1000))
).catch(error => {
    console.log(error.message);
    return null;
});