Configuration

ai.backend.client.config.get_env(key, default=<Undefined.token: <object object>>, *, clean=<function default_clean>)[소스]

Retrieves a configuration value from the environment variables. The given key is uppercased and prefixed by "BACKEND_" and then "SORNA_" if the former does not exist.

매개변수
  • key (str) – The key name.

  • default (Union[str, Undefined]) – The default value returned when there is no corresponding environment variable.

  • clean (Callable[[str], ~T]) – A single-argument function that is applied to the result of lookup (in both successes and the default value for failures). The default is returning the value as-is.

반환 형식

~T

반환값

The value processed by the clean function.

ai.backend.client.config.get_config()[소스]

Returns the configuration for the current process. If there is no explicitly set APIConfig instance, it will generate a new one from the current environment variables and defaults.

ai.backend.client.config.set_config(conf)[소스]

Sets the configuration used throughout the current process.

class ai.backend.client.config.APIConfig(*, endpoint=None, endpoint_type=None, domain=None, group=None, version=None, user_agent=None, access_key=None, secret_key=None, hash_type=None, vfolder_mounts=None, skip_sslcert_validation=None, connection_timeout=None, read_timeout=None, announcement_handler=None)[소스]

Represents a set of API client configurations. The access key and secret key are mandatory – they must be set in either environment variables or as the explicit arguments.

매개변수
  • endpoint (Union[URL, str, None]) – The URL prefix to make API requests via HTTP/HTTPS. If this is given as str and contains multiple URLs separated by comma, the underlying HTTP request-response facility will perform client-side load balancing and automatic fail-over using them, assuming that all those URLs indicates a single, same cluster. The users of the API and CLI will get network connection errors only when all of the given endpoints fail – intermittent failures of a subset of endpoints will be hidden with a little increased latency.

  • endpoint_type (Optional[str]) – Either "api" or "session". If the endpoint type is "api" (the default if unspecified), it uses the access key and secret key in the configuration to access the manager API server directly. If the endpoint type is "session", it assumes the endpoint is a Backend.AI console server which provides cookie-based authentication with username and password. In the latter, users need to use backend.ai login and backend.ai logout to manage their sign-in status, or the API equivalent in login() and logout() methods.

  • version (Optional[str]) – The API protocol version.

  • user_agent (Optional[str]) – A custom user-agent string which is sent to the API server as a User-Agent HTTP header.

  • access_key (Optional[str]) – The API access key. If deliberately set to an empty string, the API requests will be made without signatures (anonymously).

  • secret_key (Optional[str]) – The API secret key.

  • hash_type (Optional[str]) – The hash type to generate per-request authentication signatures.

  • vfolder_mounts (Optional[Iterable[str]]) – A list of vfolder names (that must belong to the given access key) to be automatically mounted upon any Kernel.get_or_create() calls.

DEFAULTS: Mapping[str, str] = {'connection_timeout': '10.0', 'domain': 'default', 'endpoint': 'https://api.backend.ai', 'endpoint_type': 'api', 'group': 'default', 'hash_type': 'sha256', 'read_timeout': '0', 'version': 'v6.20210815'}

The default values for config parameterse settable via environment variables xcept the access and secret keys.

endpoint

The currently active endpoint URL. This may change if there are multiple configured endpoints and the current one is not accessible.

반환 형식

URL

endpoints

All configured endpoint URLs.

반환 형식

Sequence[URL]

endpoint_type

The configured endpoint type.

반환 형식

str

domain

The configured domain.

반환 형식

str

group

The configured group.

반환 형식

str

user_agent

The configured user agent string.

반환 형식

str

access_key

The configured API access key.

반환 형식

str

secret_key

The configured API secret key.

반환 형식

str

version

The configured API protocol version.

반환 형식

str

hash_type

The configured hash algorithm for API authentication signatures.

반환 형식

str

vfolder_mounts

The configured auto-mounted vfolder list.

반환 형식

Sequence[str]

skip_sslcert_validation

Whether to skip SSL certificate validation for the API gateway.

반환 형식

bool

connection_timeout

The maximum allowed duration for making TCP connections to the server.

반환 형식

float

read_timeout

The maximum allowed waiting time for the first byte of the response from the server.

반환 형식

float

announcement_handler

The announcement handler to display server-set announcements.

반환 형식

Optional[Callable[[str], None]]