Hi @samar,
I observed the same case with Cassandra:
docker exec -ti temporal tctl --ad 192.168.5.7:7233 wf list --open
WORKFLOW TYPE | WORKFLOW ID | RUN ID | TASK QUEUE | START TIME | EXECUTION TIME
SingleSendEvent | event-sender-034416 | 6dcfe3ef-0e1d-49d1-be9e-104fcbf1be5a | EV_SENDER_TASK_QUEUE | 11:33:47 | 11:33:47
…
but:
docker exec -ti temporal tctl --ad 192.168.5.7:7233 wf desc -w event-sender-034416 -r 6dcfe3ef-0e1d-49d1-be9e-104fcbf1be5a
{
“executionConfig”: {
“taskQueue”: {
“name”: “EV_SENDER_TASK_QUEUE”,
“kind”: “Normal”
},
“workflowExecutionTimeout”: “315360000s”,
“workflowRunTimeout”: “315360000s”,
“defaultWorkflowTaskTimeout”: “60s”
},
“workflowExecutionInfo”: {
“execution”: {
“workflowId”: “event-sender-034416”,
“runId”: “6dcfe3ef-0e1d-49d1-be9e-104fcbf1be5a”
},
“type”: {
“name”: “SingleSendEvent”
},
“startTime”: “2020-12-02T11:33:47.696Z”,
“closeTime”: “2020-12-02T11:33:47.826450212Z”,
“status”: “Completed”,
“historyLength”: “6”,
“memo”: {
},
"autoResetPoints": {
"points": [
{
"binaryChecksum": "2411b80d1acfa941f4014bed58321b73",
"runId": "ff871023-8525-4d78-a13b-33866f898534",
"firstWorkflowTaskCompletedId": "5",
"createTime": "2020-12-02T11:33:47.693117959Z",
"expireTime": "2020-12-03T11:33:47.693207392Z",
"resettable": true
}
]
}
}
}
In logs I found only one record:
{"level":"info","ts":"2020-12-02T11:33:47.834Z","msg":"Request for closed workflow is sampled","service":"history","wf-namespace-id":"adfcb219-7bb0-4d6c-8610-063755d5106a","wf-namespace":"default","wf-type":"SingleSendEvent","wf-id":"event-sender-034416","wf-run-id":"6dcfe3ef-0e1d-49d1-be9e-104fcbf1be5a","logging-call-at":"visibilitySamplingClient.go:133"}