pkg/common/utils.go (208 lines of code) (raw):

/* Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package common import ( "fmt" "os" "strconv" "strings" "time" "github.com/google/uuid" "go.uber.org/zap" "github.com/apache/yunikorn-core/pkg/log" interfaceCommon "github.com/apache/yunikorn-scheduler-interface/lib/go/common" "github.com/apache/yunikorn-scheduler-interface/lib/go/si" ) func GetNormalizedPartitionName(partitionName string, rmID string) string { if partitionName == "" { partitionName = "default" } // handle already normalized partition name if strings.HasPrefix(partitionName, "[") { return partitionName } return fmt.Sprintf("[%s]%s", rmID, partitionName) } func GetRMIdFromPartitionName(partitionName string) string { idx := strings.Index(partitionName, "]") if idx > 0 { rmID := partitionName[1:idx] return rmID } return "" } func GetPartitionNameWithoutClusterID(partitionName string) string { idx := strings.Index(partitionName, "]") if idx > 0 { return partitionName[idx+1:] } return partitionName } func WaitFor(interval time.Duration, timeout time.Duration, condition func() bool) error { deadline := time.Now().Add(timeout) for { if time.Now().After(deadline) { return fmt.Errorf("timeout waiting for condition") } if condition() { return nil } time.Sleep(interval) continue } } // Generate a new uuid. The chance that we generate a collision is really small. // As long as we check the UUID before we communicate it back to the RM we can still replace it without a problem. func GetNewUUID() string { return uuid.NewString() } func GetBoolEnvVar(key string, defaultVal bool) bool { if value, ok := os.LookupEnv(key); ok { boolValue, err := strconv.ParseBool(value) if err != nil { log.Log(log.Utils).Debug("Failed to parse environment variable, using default value", zap.String("name", key), zap.String("value", value), zap.Bool("default", defaultVal)) return defaultVal } return boolValue } return defaultVal } // ConvertSITimeout Convert a SI execution timeout, given in milliseconds into a time.Duration object. // This will always return a positive value or zero (0). // A negative timeout will be converted into zero (0), which means never timeout. // The conversion handles overflows in the conversion by setting it to zero (0) also. func ConvertSITimeout(millis int64) time.Duration { // handle negative and 0 value (no timeout) if millis <= 0 { return time.Duration(0) } // just handle max wrapping, no need to handle min wrapping result := millis * int64(time.Millisecond) if result/millis != int64(time.Millisecond) { log.Log(log.Utils).Warn("Timeout conversion wrapped: returned no timeout", zap.Int64("configured timeout in ms", millis)) return time.Duration(0) } return time.Duration(result) } // ConvertSITimeoutWithAdjustment Similar to ConvertSITimeout, but this function also adjusts the timeout if // "creationTime" is defined. It's used during Yunikorn restart, in order to properly track how long a placeholder pod should // be in "Running" state. func ConvertSITimeoutWithAdjustment(siApp *si.AddApplicationRequest, defaultTimeout time.Duration) time.Duration { result := ConvertSITimeout(siApp.ExecutionTimeoutMilliSeconds) if result == 0 { result = defaultTimeout } result = adjustTimeout(result, siApp) return result } func adjustTimeout(timeout time.Duration, siApp *si.AddApplicationRequest) time.Duration { creationTimeTag := siApp.Tags[interfaceCommon.DomainYuniKorn+interfaceCommon.CreationTime] if creationTimeTag == "" { return timeout } created := ConvertSITimestamp(creationTimeTag) if created.IsZero() { return timeout } expectedTimeout := created.Add(timeout) adjusted := time.Until(expectedTimeout) if adjusted <= 0 { log.Log(log.Utils).Info("Placeholder timeout reached - expected timeout is in the past", zap.Duration("timeout duration", timeout), zap.Time("creation time", created), zap.Time("expected timeout", expectedTimeout)) return time.Millisecond // smallest allowed timeout value } log.Log(log.Utils).Info("Adjusting placeholder timeout", zap.Duration("timeout duration", timeout), zap.Time("creation time", created), zap.Time("expected timeout", expectedTimeout)) return adjusted } func ConvertSITimestamp(ts string) time.Time { if ts == "" { return time.Time{} } tm, err := strconv.ParseInt(ts, 10, 64) if err != nil { log.Log(log.Utils).Warn("Unable to parse timestamp string", zap.String("timestamp", ts), zap.Error(err)) return time.Time{} } if tm < 0 { tm = 0 } return time.Unix(tm, 0) } func GetRequiredNodeFromTag(tags map[string]string) string { if nodeName, ok := tags[interfaceCommon.DomainYuniKorn+interfaceCommon.KeyRequiredNode]; ok { return nodeName } return "" } func IsAllowPreemptSelf(policy *si.PreemptionPolicy) bool { return policy == nil || policy.AllowPreemptSelf } func IsAllowPreemptOther(policy *si.PreemptionPolicy) bool { return policy != nil && policy.AllowPreemptOther } // ZeroTimeInUnixNano return the unix nano or nil if the time is zero. func ZeroTimeInUnixNano(t time.Time) *int64 { if t.IsZero() { return nil } tInt := t.UnixNano() return &tInt } func WaitForCondition(eval func() bool, interval time.Duration, timeout time.Duration) error { deadline := time.Now().Add(timeout) for { if eval() { return nil } if time.Now().After(deadline) { return fmt.Errorf("timeout waiting for condition") } time.Sleep(interval) } } func Min(x, y uint64) uint64 { if x < y { return x } return y } func GetConfigurationBool(configs map[string]string, key string, defaultValue bool) bool { value, ok := configs[key] if !ok { return defaultValue } boolValue, err := strconv.ParseBool(value) if err != nil { log.Log(log.Events).Warn("Failed to parse configuration value", zap.String("key", key), zap.String("value", value), zap.Error(err)) return defaultValue } return boolValue } func GetConfigurationUint(configs map[string]string, key string, defaultValue uint64) uint64 { value, ok := configs[key] if !ok { return defaultValue } uintVal, err := strconv.ParseUint(value, 10, 64) if err != nil { log.Log(log.Events).Warn("Failed to parse configuration value", zap.String("key", key), zap.String("value", value), zap.Error(err)) return defaultValue } return uintVal } func GetConfigurationInt(configs map[string]string, key string, defaultValue int) int { value, ok := configs[key] if !ok { return defaultValue } intVal, err := strconv.ParseInt(value, 10, 32) if err != nil { log.Log(log.Events).Warn("Failed to parse configuration value", zap.String("key", key), zap.String("value", value), zap.Error(err)) return defaultValue } return int(intVal) }