Observation exist, but trace not exist #10595
Replies: 1 comment 5 replies
-
|
This issue indicates that observations were successfully ingested into ClickHouse, but the corresponding trace record is missing. This can occur in Langfuse v3's asynchronous architecture where events are queued and processed separately(1). Potential Causes:
Troubleshooting Steps:
If the issue persists and the trace never appears despite observations being present, this may indicate a worker processing failure or event ordering issue that requires further investigation of your worker container logs and queue status. 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.











Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
2.Version: 3.132.0;
3.langfuse-web pod log:
langfuse-web-error.log
4.check clickhouse:
SELECT *
FROM default.observations
WHERE trace_id = '162894ae-08e9-4154-8855-ac2b2924f836';
return result with trace_id = 162894ae-08e9-4154-8855-ac2b2924f836
SELECT *
FROM default.traces
WHERE id = '162894ae-08e9-4154-8855-ac2b2924f836'
AND project_id = 'cmi2u0gm10006zo071v1908ag';
can't not find any trace;
observation exist, but trace not exist
Beta Was this translation helpful? Give feedback.
All reactions