87 lines
2.0 KiB
TypeScript
87 lines
2.0 KiB
TypeScript
// enabled: bool,
|
|
// min_workers: usize,
|
|
// max_workers: usize,
|
|
// cooldown_seconds: usize,
|
|
// inc_scale_jobs_waiting: usize,
|
|
// full_scale_cooldown_seconds: usize,
|
|
// full_scale_jobs_waiting: usize,
|
|
// dec_scale_occupancy_rate: u8, // occupancy rate of 30s, 5m, 30m to scale down
|
|
// inc_scale_occupancy_rate: u8, // occupancy rate of 30s, 5m to scale up
|
|
// inc_percent: usize,
|
|
// integration: Option<AutoscalingIntegration>,
|
|
|
|
export type AutoscalingConfig = {
|
|
enabled: boolean
|
|
min_workers: number
|
|
max_workers: number
|
|
cooldown_seconds?: number
|
|
inc_scale_num_jobs_waiting?: number
|
|
full_scale_cooldown_seconds?: number
|
|
full_scale_jobs_waiting?: number
|
|
dec_scale_occupancy_rate?: number
|
|
inc_scale_occupancy_rate?: number
|
|
inc_num_workers?: number
|
|
integration?: AutoscalingIntegration
|
|
custom_tags?: string[]
|
|
}
|
|
|
|
export type AutoscalingIntegration = AutoscaleScript | AutoscaleDryRun | AutoscaleKubernetes
|
|
|
|
export type AutoscaleScript = {
|
|
type: 'script'
|
|
tag?: string
|
|
path: string
|
|
}
|
|
|
|
export type AutoscaleDryRun = {
|
|
type: 'dryrun'
|
|
}
|
|
|
|
export type AutoscaleKubernetes = {
|
|
type: 'kubernetes'
|
|
}
|
|
|
|
export const defaultTags = [
|
|
'deno',
|
|
'python3',
|
|
'go',
|
|
'bash',
|
|
'powershell',
|
|
'dependency',
|
|
'flow',
|
|
'other',
|
|
'bun',
|
|
'php',
|
|
'rust',
|
|
'ansible',
|
|
'csharp',
|
|
'nu',
|
|
'java',
|
|
'ruby',
|
|
'duckdb'
|
|
// for related places search: ADD_NEW_LANG
|
|
]
|
|
/** Strip cache_clear, null/undefined values, empty arrays and empty objects from a worker group config. */
|
|
export function cleanWorkerGroupConfig(config: Record<string, any>): Record<string, any> {
|
|
const { cache_clear, ...rest } = config
|
|
const cleaned: Record<string, any> = {}
|
|
for (const [k, v] of Object.entries(rest)) {
|
|
if (v == null) continue
|
|
if (Array.isArray(v) && v.length === 0) continue
|
|
if (typeof v === 'object' && !Array.isArray(v) && Object.keys(v).length === 0) continue
|
|
cleaned[k] = v
|
|
}
|
|
return cleaned
|
|
}
|
|
|
|
export const nativeTags = [
|
|
'nativets',
|
|
'postgresql',
|
|
'mysql',
|
|
'graphql',
|
|
'snowflake',
|
|
'mssql',
|
|
'bigquery',
|
|
'oracledb'
|
|
]
|