FlexRs=SPEED_OPTIMIZED 在数据流中做什么?
What does FlexRs=SPEED_OPTIMIZED do in Dataflow?
--flexRSGoal=COST_OPTIMIZED
对我来说很明显,但在documentation中我也看到了SPEED_OPTIMIZED
,它是如何工作的?
Dataflow 是否使用不带 flexRS 的抢占式虚拟机?
谢谢。
该标志在 execution parameters guide 中有更详细的记录,其中指出:
If unspecified, defaults to SPEED_OPTIMIZED, which is the same as omitting this flag. To turn on FlexRS, you must specify the value COST_OPTIMIZED to allow the Dataflow service to choose any available discounted resources.
因此 SPEED_OPTIMIZED
不启用 FlexRS,它请求正常的数据流行为。
关于抢占式虚拟机:否,Dataflow 不使用抢占式虚拟机,除非启用 FlexRS。
--flexRSGoal=COST_OPTIMIZED
对我来说很明显,但在documentation中我也看到了SPEED_OPTIMIZED
,它是如何工作的?
Dataflow 是否使用不带 flexRS 的抢占式虚拟机?
谢谢。
该标志在 execution parameters guide 中有更详细的记录,其中指出:
If unspecified, defaults to SPEED_OPTIMIZED, which is the same as omitting this flag. To turn on FlexRS, you must specify the value COST_OPTIMIZED to allow the Dataflow service to choose any available discounted resources.
因此 SPEED_OPTIMIZED
不启用 FlexRS,它请求正常的数据流行为。
关于抢占式虚拟机:否,Dataflow 不使用抢占式虚拟机,除非启用 FlexRS。