lithops icon indicating copy to clipboard operation
lithops copied to clipboard

A multi-cloud framework for big data analytics and embarrassingly parallel jobs, that provides an universal API for building parallel applications in the cloud ☁️🚀

Results 20 lithops issues
Sort by recently updated
recently updated
newest added

I've noticed an issue with the performance of invocation of AWS Lambda functions. Depending on the python interpreter used, the performance of the invocation of cloud functions changes. For example,...

Fix for #1107 This pull request adds functionality to retrieve AWS SDK config and credentials from the standard config file (`~/.aws/config` and `~/.aws/credentials`) or env vars ([more info](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html)). Consequently, it...

Currently, Lithops can be configured: - by a config YAML file in ~/.lithops/config - by ENV vars - by directly passing configuration path or dict to a FunctionExecutor constructor The...

The time between calls to `internal_storage.get_call_status` is hardcoded to 1 second (`GET_RESULT_SLEEP_SECS`): https://github.com/lithops-cloud/lithops/blob/b199505955f11602331e4725bf1844f885e2f7f8/lithops/future.py#L201-L203 It would be useful to be able to control this so that it is the same as...

Part of #1324 Developer's Certificate of Origin 1.1 By making a contribution to this project, I certify that: (a) The contribution was created in whole or in part by me...

Lithops has a lot of dependencies in the base package, many of which are not needed when running Lithops. There are a few things we could do here: 1. Move...

This pull request adds a code coverage feature to the repository. This feature is intended to be automated via GitHub Workflows. By default it runs on pull requests and pushes...

Why does Lithops always use the DEBUG level in these CLI commands and not the log level the user wants? https://github.com/lithops-cloud/lithops/blob/436f458e0d862ca1aff35886eb03d5e2143896c9/lithops/scripts/cli.py#L468-L471 https://github.com/lithops-cloud/lithops/blob/436f458e0d862ca1aff35886eb03d5e2143896c9/lithops/scripts/cli.py#L499-L501

👋 All, thanks for the amazing project! I'm really enjoying getting to know it. I was looking into making my own custom runtime for use with GCP Cloud Run and...

The lithops FunctionExecutor allows runtime_memory as well as runtime_cpu. We can also specify the runtime_memory in a map call, but not runtime_cpus, which is decided by the FaaS backend. The...