How I can monitor if the bulk file service is functional.

LtDoolittle6
LtDoolittle6 Contributor
edited 9:22AM in CFS Bulk File/TM3

I want to know if the bulk file service is operational? Is there a way to check it?

Answers

  • Hello @LtDoolittle6

    The bulk file service is the Client File Store (CFS) API of the Delivery Platform, aka Data Platform (RDP) APIs.

    You can use the /file-store/v1/info/health endpoint (HTTP GET) to check the service availability of the /file-store/ endpoint. If the service is UP and operational, you should get a following response message:

    {
    "odps": {
    "healthy": true,
    "message": "Got LOCK claims"
    },
    "rds": {
    "healthy": true,
    "message": "{Read-ConnectionPool=UP, Write-ConnectionPool=UP}"
    }
    }
    health_1.png