Skip to content

NVB Backend Error Codes

These error codes originate from the NVIDIA Backend services and appear in GFN client logs in 0x00000XXX format. They map closely to HTTP status codes.

Error Codes

Error CodeDecimalHTTP EquivalentNameDescription
0x0000001f5501501 Not ImplementedNVB_R_SERVER_ERRORGeneric server error
0x0000001f6502502 Bad GatewayNVB_R_SERVER_OUT_OF_SERVICEServer/rig out of service
0x0000001f8504504 Gateway TimeoutNVB_R_SERVER_TIMEOUTServer didn't respond in time
0x000000198408408 Request TimeoutNVB_R_REQUEST_TIMEOUTClient request timed out
0x0000001ad429429 Too Many RequestsNVB_R_RATE_LIMITEDRate limit exceeded

Detailed Comparison

Property0x0000001f5 (501)0x0000001f6 (502)
Hex0x0000001f50x0000001f6
Decimal501502
GFN NameNVB_R_SERVER_ERRORNVB_R_SERVER_OUT_OF_SERVICE
MeaningGeneric internal server errorStreaming rig unavailable
RetryableYes (with backoff)Yes (with backoff)
Common CausesServer crash, unhandled exception, resource exhaustionRig maintenance, rig crash/reboot, capacity shortage

Client Retry Logic

js
// GFN retries automatically on these errors:
if ([429, 502, 503, 504].includes(statusCode)) {
    // Retry with exponential backoff
}

// Specific handling:
501 == status || 502 == status || 408 == status
    ? retryWithBackoff()
    : failImmediately();

admindesk.top — Reversed & documented from Asgard rig backups and GCIS plugin binaries.