All Downloads are FREE. Search and download functionalities are using the official Maven repository.

configdefinitions.config.provisioning.flavors.def Maven / Gradle / Ivy

There is a newer version: 8.441.21
Show newest version
# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
# Configuration of the node repository
namespace=config.provisioning

# A node flavor which (may) be available in this zone.
# This is to allow configuration per flavor.
# If a certain flavor has no config it is not necessary to list it here to use it.
flavor[].name string

# The monthly Total Cost of Ownership (TCO) in USD. Typically calculated as TCO divided by
# the expected lifetime of the node (usually three years).
flavor[].cost int default=0

# The type of node: BARE_METAL, VIRTUAL_MACHINE or DOCKER_CONTAINER
flavor[].environment string default="undefined"

# The minimum number of CPU cores available.
flavor[].minCpuCores double default=0.0

# The speedup factor per cpu core compared to an historical baseline for a particular cpu generation
# The vcpu resources available on the node will be minCpuCores * cpuCoreSpeedup
flavor[].cpuSpeedup double default=1.0

# The minimum amount of main memory available.
flavor[].minMainMemoryAvailableGb double default=0.0

# The minimum amount of disk available.
flavor[].minDiskAvailableGb double default=0.0

# Whether the disk is fast (typically SSD) or slow (typically spinning HDD).
flavor[].fastDisk bool default=true

# Whether the storage is remote (network) or local.
flavor[].remoteStorage bool default=true

# Expected network interface bandwidth available for this flavor, in Mbit/s.
flavor[].bandwidth double default=0.0

# The architecture for this flavor
flavor[].architecture string default="x86_64"

# The GPU count and GPU memory (per GPU) of this flavor
flavor[].gpuCount int default=0
flavor[].gpuMemoryGb double default=0.0




© 2015 - 2024 Weber Informatics LLC | Privacy Policy