What does stv_fdisk_stats table do?

0

I see a repetition of this query throughout the day and night:
select node_num,value from stv_fdisk_stats where name='blocks_allocated_total';

I get permissions errors if i try to run the query myself; I am asking because it's the only stl_query happening at the exact time of a 'conflict with concurrent transaction' error affecting our normal nightly processing.

hislop
已提問 4 年前檢視次數 223 次
1 個回答
0

This query is run by an internal metrics service. It is definitively not the cause of your error.

If there are no queries running, it's likely that some previous operation left a transaction open on the resources used by your failing query. This may have happened because a remote process became stuck and left it's connection open without running ROLLBACK or COMMIT.

I have also seen this happen in instances where a user accidentally disabled the auto commit option in their query tool.

已回答 4 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南