我有兴趣观看来自Kubernetes的事件流,以确定部署是否成功,或者是否有任何Pod无法安排。
我可以调用端点<div class="item"></div>
<div class="item"></div>
,或者我可以调用/api/v1/watch/events
。这两者有区别吗?我对他们的目的感到困惑。
感谢。
答案 0 :(得分:2)
我们将/api/v1/events?watch=true
作为查询参数并将其从路径中删除(旧版表单)。你应该致电with cte as
(
SELECT Fruit, SUM(Qty) AS Qty,
ROW_NUMBER() OVER (ORDER BY SUM(Qty) DESC) AS rn
FROM Fruits
GROUP BY Fruit
)
select
case when rn > 3 then 'Other' else fruit end as fruit,
sum(Qty)
from cte
group by
case when rn > 3 then 'Other' else fruit end
order by MIN(rn)
。如果您有兴趣,请参阅更多讨论here。