Skip to main content

CpSetComputePlatformCeilingsInput

Patch for cpSetComputePlatformCeilings. Omitted fields stay unchanged; a field set to an explicit null clears that override (game-api falls back to its COMPUTE_PLATFORM_MAX_* env var, then the code default); a value sets the ceiling. All values must be > 0. At least one field is required.

input CpSetComputePlatformCeilingsInput {
maxModules: Int
maxTickHz: Int
fuelPerTick: BigInt
fuelPerInvoke: BigInt
maxMemoryMb: Int
maxRunMs: Int
maxDbOpsPerTick: Int
maxEgressMsgsPerMin: Int
maxEgressBytesPerMin: BigInt
}

Fields

CpSetComputePlatformCeilingsInput.maxModules ● Int scalar

Max compute modules per app. > 0; explicit null clears the override; omit to leave unchanged.

CpSetComputePlatformCeilingsInput.maxTickHz ● Int scalar

Max tick rate in Hz per module. > 0; explicit null clears the override; omit to leave unchanged.

CpSetComputePlatformCeilingsInput.fuelPerTick ● BigInt scalar

Max fuel per tick (decimal string). > 0; explicit null clears the override; omit to leave unchanged.

CpSetComputePlatformCeilingsInput.fuelPerInvoke ● BigInt scalar

Max fuel per invoke (decimal string). > 0; explicit null clears the override; omit to leave unchanged.

CpSetComputePlatformCeilingsInput.maxMemoryMb ● Int scalar

Max WASM memory per module instance in MiB. > 0; explicit null clears the override; omit to leave unchanged.

CpSetComputePlatformCeilingsInput.maxRunMs ● Int scalar

Max watchdog deadline per entry call in milliseconds. > 0; explicit null clears the override; omit to leave unchanged.

CpSetComputePlatformCeilingsInput.maxDbOpsPerTick ● Int scalar

Max host data-API operations per tick. > 0; explicit null clears the override; omit to leave unchanged.

CpSetComputePlatformCeilingsInput.maxEgressMsgsPerMin ● Int scalar

Max module-emitted replication messages per minute. > 0; explicit null clears the override; omit to leave unchanged.

CpSetComputePlatformCeilingsInput.maxEgressBytesPerMin ● BigInt scalar

Max module-emitted replication bytes per minute (decimal string). > 0; explicit null clears the override; omit to leave unchanged.

Member Of

cpSetComputePlatformCeilings mutation