我有一个物化视图,它依赖于其他几个物化视图。
matviewA matviewB matviewC
\ | /
matviewX
我想要做的是同时刷新父物化视图。 (这不是一个真正的问题 - 如下所示。)[在我目前的环境中,每位家长需要大约一个小时才能刷新。 ]
psql -c "refresh materialized view concurrently matviewA" &
psql -c "refresh materialized view concurrently matviewB" &
psql -c "refresh materialized view concurrently matviewC" &
但是如果我开始对孩子进行更新:
psql -c "refresh materialized view concurrently matviewX" &
它会马上运行,并且不会等待父母完成更新,因为他们不会让孩子在进行刷新的同时他们自己已经同时刷新了。
我在父母跑步时试图锁定孩子:
psql -c "lock matviewX in share mode; refresh materialized view concurrently matviewA" &
psql -c "lock matviewX in share mode; refresh materialized view concurrently matviewB" &
psql -c "lock matviewX in share mode; refresh materialized view concurrently matviewC" &
不幸的是,你不能在物化视图上放置显式锁。
如果我不同时使用""在父母身上,孩子的物化观点变得难以理解。 (但是孩子刷新之前会等待。)
我可以在调用" psql -c"的(bash)包装器脚本中编写一些锁管理。或者我可以使用更复杂的第三方作业调度程序。我希望有一种更简单的方法。
我或许可以编写一个函数并将所有刷新放在该函数中,然后使用临时表进行手动显式锁定管理。
或者也许以某种方式使用咨询锁。
建议?
答案 0 :(得分:1)
您只需使用wait
(请参阅https://stackoverflow.com/a/18663969/3886053):
for parent in matviewA matviewB matviewC; do
psql -c "refresh materialized view concurrently $parent" &
echo "Started refreshing materialized view $parent"
done
echo -n "Waiting for all parents to finish... "
wait
echo "finished. Refreshing now the child materialized view"
psql -c "refresh materialized view concurrently matviewX"