Open aeg opened 2 months ago
Thank you for your reporting
Yes, this would be a bug of automatic index creation when the view has set-returning function in FROM clause. I'll fix this.
I want the ability to suppress auto index creation when needed to create IMMV.
Even though putting the bug-fix aside, your proposal also may make sense. This can be workaround for issues like this case and also it might be possible that users can find another efficient index.
I want the ability to suppress auto index creation when needed to create IMMV.
Or adding GUC parameter for this is better, instead of adding function arguments?
Yes, this would be a bug of automatic index creation when the view has set-returning function in FROM clause. I'll fix this.
I want the ability to suppress auto index creation when needed to create IMMV.
Even though putting the bug-fix aside, your proposal also may make sense. This can be workaround for issues like this case and also it might be possible that users can find another efficient index.
一方で、自分が提示したようなユニークキーが重複しており、複数のレコードに展開されるようなimmvを設定してしまうと、元レコードに更新があった場合に、複数レコードに対して更新がされるためにあまり効率的ではないという事象も見えています。しかも、オリジナルレコードのどのレコードが変化したら、反映すべきかという判断までおそらく現状していないと思うのですが、immvで参照されていないレコードの更新でもトリガーにより処理がされるのか、オリジナルレコードの更新に時間がかかるという事象が見えています。 これはこれで別の話だとは思いますが、immv 的にはそのような使い方はあまり推奨していないというところなのでしょうか。
一方で、自分が提示したようなユニークキーが重複しており、複数のレコードに展開されるようなimmvを設定してしまうと、元レコードに更新があった場合に、複数レコードに対して更新がされるためにあまり効率的ではないという事象も見えています。 With an IMMV that a record in a table is expanded to multiple records in the view, when a record is updated in the original record, it is not very efficient because multiple records are updated.)
ビューの定義上、テーブルの1つ行更新がビューの複数行の更新を要する場合には、複数行更新が発生するのは必然の結果です。
If updating one row in the table requires updating multiple rows in the view, it is inevitable that multiple rows will be updated.
しかも、オリジナルレコードのどのレコードが変化したら、反映すべきかという判断までおそらく現状していないと思うのですが、immvで参照されていないレコードの更新でもトリガーにより処理がされるのか、オリジナルレコードの更新に時間がかかるという事象が見えています。 I don't think that it is currently possible to determine which record in the original record is should be reflected to the view contents when it is changed, so I am seeing that it takes time to update the original record, as the trigger processes updates to records not referenced in IMMV.
WHERE句で除外されているはずのテーブル行が更新された場合にもトリガが起動してしまうことについて、でしょうか。これに対しては、不要な場合にトリガが関数が起動しないよう WHEN condition を付与することが思いつきましたが、文レベルトリガではこれは有用ではない[1]ためうまく行かなそうです。
As to it, I thought of adding a WHEN condition so that the trigger does not fire the function when it is not needed, but this is not useful for statement-level triggers [1] , so it doesn't seem to work.
[1] https://www.postgresql.org/docs/current/sql-createtrigger.html
これはこれで別の話だとは思いますが、immv 的にはそのような使い方はあまり推奨していないというところなのでしょうか Does such usages of IMMV are not recommended?
非推奨ということではないですが、上記による更新性能への影響が要件を満たさないほどに大きい場合には使用に適さないでしょう。
It's not exactly unrecommended, but if the impact of the above on update performance is so great that it doesn't meet your requirements, it's probably not suitable for use.
In pg_ivm 1.9, IMMV creation fails due to issues with index creation, which worked in 1.5.
expect
I want the ability to suppress auto index creation when needed to create IMMV.
how to reproduce
then create immv(failed)
Added
DISTINCT
in theSELECT
then I could create the IMMV, but the execution plan is different, so it's inefficient and not what I need.