IBM Cloud Functions#
Lithops with IBM Cloud Functions as compute backend.
Note: This backend is deprecated. See the deprecation overview
Installation#
Install IBM Cloud backend dependencies:
python3 -m pip install lithops[ibm]
Configuration#
Login to IBM Cloud and open up your dashboard.
If you don’t have an IAM API key created, navigate to the IBM IAM dashboard.
Click
Create an IBM Cloud API Key
and provide the necessary information.Copy the generated IAM API key (You can only see the key the first time you create it, so make sure to copy it).
Navigate to the resource groups dashboard, and copy the desired resource group ID.
Edit your lithops config and add the following keys:
lithops: backend: ibm_cf ibm: iam_api_key: <IAM_API_KEY> region: <REGION> resource_group_id: <RESOURCE_GROUP_ID>
Summary of configuration keys for IBM Cloud:#
IBM IAM:#
Group |
Key |
Default |
Mandatory |
Additional info |
---|---|---|---|---|
ibm |
iam_api_key |
yes |
IBM Cloud IAM API key to authenticate against IBM services. Obtain the key here |
|
ibm |
region |
yes |
IBM Region. One of: |
|
ibm |
resource_group_id |
yes |
Resource group id from your IBM Cloud account. Get it from here |
IBM Cloud Functions:#
Group |
Key |
Default |
Mandatory |
Additional info |
---|---|---|---|---|
ibm_cf |
namespace |
no |
Value of CURRENT NAMESPACE from here. Provide it if you want to use an existing |
|
ibm_cf |
namespace_id |
no |
Value of ‘GUID’ from here. Provide it if you want to use an existing |
|
ibm_cf |
region |
no |
Service region. One of: |
|
ibm_cf |
endpoint |
no |
IBM Cloud Functions endpoint (if region not provided). Make sure to use https:// prefix, for example: https://us-east.functions.cloud.ibm.com |
|
ibm_cf |
max_workers |
1200 |
no |
Max number of workers per |
ibm_cf |
worker_processes |
1 |
no |
Number of Lithops processes within a given worker. This can be used to parallelize function activations within a worker |
ibm_cf |
runtime |
no |
Docker image name. |
|
ibm_cf |
runtime_memory |
256 |
no |
Memory limit in MB. Default 256MB |
ibm_cf |
runtime_timeout |
600 |
no |
Runtime timeout in seconds. Default 600 seconds |
ibm_cf |
invoke_pool_threads |
500 |
no |
Number of concurrent threads used for invocation |
ibm_cf |
remote_invoker |
False |
no |
Activate the remote invoker feature that uses one cloud function to spawn all the actual |
ibm_cf |
runtime_include_function |
False |
no |
If set to true, Lithops will automatically build a new runtime, including the function’s code, instead of transferring it through the storage backend at invocation time. This is useful when the function’s code size is large (in the order of 10s of MB) and the code does not change frequently |
Test Lithops#
Once you have your compute and storage backends configured, you can run a hello world function with:
lithops hello -b ibm_cf -s ibm_cos
Viewing the execution logs#
You can view the function executions logs in your local machine using the lithops client:
lithops logs poll