interface CostModel
cost
abstract fun cost(physicalPlan: PhysicalPlan): Long
AdvancedCostModel
object AdvancedCostModel : CostModel
This CostModel uses CPU cycles to calculate the cost of physical operators.
SimpleCostModel
object SimpleCostModel : CostModel