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年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ