| 1306 | /// available memory reservation size of N and min reservation percentage of |
| 1307 | /// P, if M * P / 100 > N, then spiller operator needs to grow the memory |
| 1308 | /// reservation with percentage of spillableReservationGrowthPct(). This |
| 1309 | /// ensures we have sufficient amount of memory reservation to process the |
| 1310 | /// large input outlier. |
| 1311 | int32_t minSpillableReservationPct() const { |
| 1312 | constexpr int32_t kDefaultPct = 5; |
| 1313 | return get<int32_t>(kMinSpillableReservationPct, kDefaultPct); |
| 1314 | } |
no outgoing calls
no test coverage detected