Open Spikhalskiy opened 2 years ago
@cretz did you expose healthcheck in Go?
@bergundy - Yes, in the linked Go PR from the description. Client.CheckHealth()
. I need to open a Core issue to expose it so Python can use it. (EDIT: https://github.com/temporalio/sdk-core/issues/367)
Thanks @cretz I checked Go off the list
Users should be able to create a Temporal Client for a temporarily unavailable Temporal server.
SDKs should have the main client or one of the clients that:
healthCheck
andgetSystemInfo
calls in the constructor.getSystemCapabilities
call should be performed on the first client call in a lazy manner.healthCheck
endpoint should be exposed on the Client that will allow users to perform a health check for the corresponded gRPC service. It will also allow to initialize a connection in an explicit eager manner and perform initialization activities (system capabilities negotiation right now)..connect()
or.dial
call that establishes the connection and fetches system capabilities and which will allow to provide the same functionality/guarantees as an eager client provides.