معرفی شرکت ها


efsync2-1.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A CLI/SDK which automatically uploads pip packages and directories to aws efs to be used in aws lambda
ویژگی مقدار
سیستم عامل -
نام فایل efsync2-1.0
نام efsync2
نسخه کتابخانه 1.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Sean Bailey
ایمیل نویسنده seanbailey518@gmail.com
آدرس صفحه اصلی https://github.com/sean-bailey
آدرس اینترنتی https://pypi.org/project/efsync2/
مجوز -
# 🚀 efsync2 - Open-Source MLOps tool for running serverless machine learning [![Downloads](https://pepy.tech/badge/efsync2)](https://pepy.tech/project/efsync2) [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/sean-bailey/efsync2/blob/main/examples/efsync_pip_packages_and_s3_files.ipynb) ![pypi package deployment](https://github.com/sean-bailey/efsync2/workflows/pypi%20package%20deployment/badge.svg) [![PyPI version](https://badge.fury.io/py/efsync2.svg)](https://badge.fury.io/py/efsync2) efsync2 is an updated fork from [Philipp Schmid's](https://github.com/philschmid) efsync tool. I noticed that there were errors rendering the code non-functional for deployment, as specified in [This issue](https://github.com/philschmid/efsync/issues/15). Fortunately, [Chi W Pak](https://github.com/ChiWPak) generated a fix and a [Pull Request](https://github.com/philschmid/efsync/pull/18) which would fix it! Unfortunately, as of this writing, these issues and PR have been outstanding for over six months. I wanted to share deployable serverless machine learning inferences running purely on Lambda, and wanted to include functioning packages and code in the instructions. So, I implemented Chi's fix into a fork of Philipp's code, and am releasing it as its own package for future use -- efsync2! The vast majority of work I attribute to Philipp, and I keep the license the same. I wanted to keep as much functionality as possible the same, with identical function calls from his work, in case anyone was looking to efsync2 is a CLI/SDK tool, which automatically syncs files and dependencies to AWS EFS. The CLI is easy to use, you only need access to an AWS Account, an AWS EFS-filesystem up and running. Philipp wrote an article on the original efsync [here](https://www.philschmid.de/efsync-my-first-open-source-mlops-toolkit), which currently covers the same function calls and functionality. I recommend starting with [Quick Start](#quick-start). Efsync2 enables you to install dependencies with the AWS Lambda runtime directly into your EFS filesystem and use them in your AWS Lambda function. It enables you either combine this with syncing files from S3 or uploading them with SCP. You can also sync files from S3 and upload with SCP without installing Pip dependencies. There are several examples for many usecases. # Installation and Basic Useage: ``` #Install via pip3: pip3 install efsync2 #Sync your pip packages or files to AWS EFS: efsync2 -cf efsync.yaml ``` ## Outline - [Quick Start](#quick-start) - [Configuration](#sdk) - [Usecase configurations](#usecase) - [Examples](#examples) - [CLI](#cli) - [Connect](#connect) # 🏃🏻‍♂️ <a name="quick-start"></a>Quick Start Example in Google Colab. [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/philschmid/efsync/blob/main/examples/efsync_pip_packages_and_s3_files.ipynb) 1. **Install via pip3** ```bash pip3 install efsync2 ``` 2. **sync your pip dependencies or files to AWS EFS** usage with the cli ```bash efsync2 -cf efsync.yaml ``` or with python ```python from efsync2 import efsync efsync('efsync.yaml') ``` # ⚙️ <a name="sdk"></a> Configurations There are 4 different ways to use efsync2 in your project. You can create a `yaml` configuration and use the SDK, you can create a python `dict` and use the SDK, you can create a `yaml` configuration and use the CLI, or you can use the CLI with parameters. Below you can find examples for each of these. I also included afterwards configuration examples for the different use cases. _Note: If you sync file with scp from local directory (e.g. model/bert) to efs (my_efs_model) efsync will sync the model to (my_efs_model/bert) that happens because scp uploads the files recursively._ ## Configuration with yaml file `efsync.yaml` ```yaml #standard configuration efs_filesystem_id: fs-2adfas123 # aws efs filesystem id (moint point) subnet_Id: subnet-xxx # subnet of which the efs is running in ec2_key_name: efsync2-asd913fjgq3 # required key name for starting the ec2 instance clean_efs: all # Defines if the EFS should be cleaned up before. values: `'all'`,`'pip'`,`'file'` uploading # aws profile configuration aws_profile: efsync2 # aws iam profile with required permission configured in .aws/credentials aws_region: eu-central-1 # the aws region where the efs is running # pip dependencies configurations efs_pip_dir: lib # pip directory on ec2 python_version: 3.8 # python version used for installing pip dependencies -> should be used as lambda runtime afterwads requirements: requirements.txt # path + file to requirements.txt which holds the installable pip dependencies # s3 config s3_bucket: my-bucket-with-files # s3 bucket name from files should be downloaded s3_keyprefix: models/bert # s3 keyprefix for the files file_dir_on_ec2: ml # name of the directory where your file from <file_dir> will be uploaded, if you use scp it will it will be /file_dir # upload files with scp to efs file_dir: local_dir # extra local directory for file upload like ML models ``` ```python from efsync2 import efsync efsync('efsync.yaml') ``` ## Configuration with CLI Parameters ```bash efsync2 --efs_filesystem_id fs-2adfas123 \ --subnet_Id subnet-xxx \ --ec2_key_name efsync2-asd913fjgq3 \ --clean_efs all \ --aws_profile efsync2 \ --aws_region yo-region-1 \ --efs_pip_dir lib \ --python_version 3.8 \ --requirements requirements.txt \ --s3_bucket my-bucket-with-files \ --s3_keyprefix models/bert \ --file_dir local_dir \ --file_dir_on_ec2 ml ``` ## Configuration with CLI and yaml ```bash efsync2 -cf efsync.yaml ``` ## Configuration with python dictonary ```python config = { 'efs_filesystem_id': 'fs-2adfas123', # aws efs filesystem id (moint point) 'subnet_Id': 'subnet-xxx', # subnet of which the efs is running in 'ec2_key_name':'efsync2-asd913fjgq3', # required key name for starting the ec2 instance 'clean_efs': 'all', # Defines if the EFS should be cleaned up before. values: `'all'`,`'pip'`,`'file'` uploading 'aws_profile': 'efsync2', # aws iam profile with required permission configured in .aws/credentials 'aws_region': 'eu-central-1', # the aws region where the efs is running 'efs_pip_dir': 'lib', # pip directory on ec2 'python_version': 3.8, # python version used for installing pip dependencies -> should be used as lambda runtime afterwads 'requirements': 'requirements.txt', # path + file to requirements.txt which holds the installable pip dependencies 'file_dir': 'local_dir', # extra local directory for file upload like ML models 'file_dir_on_ec2': 'ml', # name of the directory where your file from <file_dir> will be uploaded, if you use scp it will it will be /file_dir 's3_bucket': 'my-bucket-with-files', # s3 bucket name from files should be downloaded 's3_keyprefix': 'models/bert' # s3 keyprefix for the files } from efsync2 import efsync efsync(config) ``` # ✍🏻 <a name="usecase"></a> Usecase Configuration with `yaml` examples ### Only installing Pip dependencies ```yaml #standard configuration efs_filesystem_id: fs-2adfas123 # aws efs filesystem id (moint point) subnet_Id: subnet-xxx # subnet of which the efs is running in ec2_key_name: efsync2-asd913fjgq3 # required key name for starting the ec2 instance clean_efs: all # Defines if the EFS should be cleaned up before. values: `'all'`,`'pip'`,`'file'` uploading # aws profile configuration aws_profile: efsync2 # aws iam profile with required permission configured in .aws/credentials aws_region: eu-central-1 # the aws region where the efs is running # pip dependencies configurations efs_pip_dir: lib # pip directory on ec2 python_version: 3.8 # python version used for installing pip dependencies -> should be used as lambda runtime afterwads requirements: requirements.txt # path + file to requirements.txt which holds the installable pip dependencies ``` ### Installing Pip dependencies and syncing files from s3 to efs ```yaml #standard configuration efs_filesystem_id: fs-2226b27a # aws efs filesystem id (moint point) subnet_Id: subnet-17f97a7d # subnet of which the efs is running in ec2_key_name: efsync2-asd913fjgq3 # required key name for starting the ec2 instance clean_efs: all # Defines if the EFS should be cleaned up before. values: `'all'`,`'pip'`,`'file'` uploading # aws profile configuration aws_profile: efsync2 # aws iam profile with required permission configured in .aws/credentials aws_region: eu-central-1 # the aws region where the efs is running # pip dependencies configurations efs_pip_dir: lib # pip directory on ec2 python_version: 3.8 # python version used for installing pip dependencies -> should be used as lambda runtime afterwads requirements: requirements.txt # path + file to requirements.txt which holds the installable pip dependencies # s3 config s3_bucket: efsync2-test-bucket # s3 bucket name from files should be downloaded s3_keyprefix: distilbert # s3 keyprefix for the files file_dir_on_ec2: ml # name of the directory where your file from <file_dir> will be uploaded, if you use scp it will it will be /file_dir ``` ### Only syncing files from s3 to efs ```yaml #standard configuration efs_filesystem_id: fs-2226b27a # aws efs filesystem id (moint point) subnet_Id: subnet-17f97a7d # subnet of which the efs is running in ec2_key_name: efsync2-asd913fjgq3 # required key name for starting the ec2 instance clean_efs: all # Defines if the EFS should be cleaned up before. values: `'all'`,`'pip'`,`'file'` uploading # aws profile configuration aws_profile: efsync2 # aws iam profile with required permission configured in .aws/credentials aws_region: eu-central-1 # the aws region where the efs is running # s3 config s3_bucket: efsync2-test-bucket # s3 bucket name from files should be downloaded s3_keyprefix: distilbert # s3 keyprefix for the files file_dir_on_ec2: ml # name of the directory where your file from <file_dir> will be uploaded, if you use scp it will it will be /file_dir ``` ### Installing Pip dependencies and uploading local files with scp to efs ## Note: If you sync a file with scp from local directory (e.g. model/bert) to efs (my_efs_model) efsync2 will sync the model to (my_efs_model/bert). This is due to scp's recursive copy functionality. ### For example, if you set the destination path on your efs to be `foldername` and you are uploading `foldername`, the true path will be `your/efs/mount/foldername/foldername` when you wish to access your models. ### If confused, I recommending double checking with `os.walk`. I am considering modifying this functionality in the future. ```yaml #standard configuration efs_filesystem_id: fs-2226b27a # aws efs filesystem id (moint point) subnet_Id: subnet-17f97a7d # subnet of which the efs is running in ec2_key_name: efsync2-asd913fjgq3 # required key name for starting the ec2 instance clean_efs: all # Defines if the EFS should be cleaned up before. values: `'all'`,`'pip'`,`'file'` uploading # aws profile configuration aws_profile: efsync2 # aws iam profile with required permission configured in .aws/credentials aws_region: eu-central-1 # the aws region where the efs is running # upload files with scp to efs file_dir: local_dir # extra local directory for file upload like ML models file_dir_on_ec2: ml # name of the directory where your file from <file_dir> will be uploaded, if you use scp it will it will be /file_dir ``` ### Only uploading local files with scp to efs ## Note: If you sync a file with scp from local directory (e.g. model/bert) to efs (my_efs_model) efsync2 will sync the model to (my_efs_model/bert). This is due to scp's recursive copy functionality. ### For example, if you set the destination path on your efs to be `foldername` and you are uploading `foldername`, the true path will be `your/efs/mount/foldername/foldername` when you wish to access your models. ### If confused, I recommending double checking with `os.walk`. I am considering modifying this functionality in the future. ```yaml #standard configuration efs_filesystem_id: fs-2226b27a # aws efs filesystem id (moint point) subnet_Id: subnet-17f97a7d # subnet of which the efs is running in ec2_key_name: efsync2-asd913fjgq3 # required key name for starting the ec2 instance clean_efs: all # Defines if the EFS should be cleaned up before. values: `'all'`,`'pip'`,`'file'` uploading # aws profile configuration aws_profile: efsync2 # aws iam profile with required permission configured in .aws/credentials aws_region: eu-central-1 # the aws region where the efs is running # pip dependencies configurations efs_pip_dir: lib # pip directory on ec2 python_version: 3.8 # python version used for installing pip dependencies -> should be used as lambda runtime afterwads requirements: requirements.txt # path + file to requirements.txt which holds the installable pip dependencies # upload files with scp to efs file_dir: local_dir # extra local directory for file upload like ML models file_dir_on_ec2: ml # name of the directory where your file from <file_dir> will be uploaded, if you use scp it will it will be /file_dir ``` # 🏗 <a name="examples"></a> Examples There are several jupyter notebooks with examples, including installing pip dependencies only, installing pip dependencies and syncing files from s3 to efs, downloading only files from s3, and installing pip dependencies and uploading files from local with scp and only uploading files with scp. All examples can be run in a Google Colab Notebook. - [installing pip dependencies](./examples/efsync_pip_packages.ipynb) - [installing pip dependencies and syncing files from s3 to efs](./examples/efsync_pip_packages_and_s3_files.ipynb) - [installing pip dependencies and uploading local files with scp](./examples/efsync_pip_packages_and_scp_files.ipynb) - [syncing files from s3 to efs](./examples/efsync_s3_files.ipynb) - [uploading local files with scp](./examples/efsync_scp_files.ipynb) **simplest usage:** ```python from efsync2 import efsync efsync('efsync.yaml') ``` ## <a name="cli"></a>CLI Parameteres | cli_short | cli_long | default | description | | --------- | ------------------- | ---------------- | ------------------------------------------------------------------------------------------------------------------- | | -h | --help | - | displays all commands | | -r | --requirements | requirements.txt | path of your requirements.txt | | -cf | --config_file | - | path of your efsync.yaml | | -py | --python_version | 3.8 | Python version used to install dependencies | | -epd | --efs_pip_dir | lib | directory where the pip dependencies will be installed on efs | | -efi | --efs_filesystem_id | - | File System ID from the EFS filesystem | | -ce | --clean_efs | - | Defines if the EFS should be cleaned up before. values: `'all'`,`'pip'`,`'file'` uploading | | -fd | --file_dir | tmp | directory where all other files will be placed | | -fdoe | --file_dir_on_ec2 | tmp | name of the directory where your file from <file_dir> will be uploaded, if you use scp it will it will be /file_dir | | -ap | --aws_profile | efsync | name of the used AWS profile | | -ar | --aws_region | eu-central-1 | aws region where the efs is running | | -sbd | --subnet_Id | - | subnet id of the efs | | -ekn | --ec2_key_name | - | temporary key name for the ec2 instance | | -s3b | --s3_bucket | - | s3 bucket name from where the files will be downloaded instance | | -s3k | --s3_keyprefix | - | s3 keyprefix of the directory in s3. Files will be downloaded recursively | # <a name="connect"></a> 🔗 Connect with me <a href="https://blog.baileytec.net" target="_blank"><img alt="Personal Website" src="https://img.shields.io/badge/Personal%20Website-%2312100E.svg?&style=for-the-badge&logoColor=white" /></a> <a href="https://twitter.com/seanbailey518" target="_blank"><img alt="Twitter" src="https://img.shields.io/badge/twitter-%231DA1F2.svg?&style=for-the-badge&logo=twitter&logoColor=white" /></a> <a href="https://medium.com/@seanbailey518" target="_blank"><img alt="Medium" src="https://img.shields.io/badge/medium-%2312100E.svg?&style=for-the-badge&logo=medium&logoColor=white" /></a> <a href="https://www.linkedin.com/in/baileytec/" target="_blank"><img alt="LinkedIn" src="https://img.shields.io/badge/linkedin-%230077B5.svg?&style=for-the-badge&logo=linkedin&logoColor=white" /></a> # 🏥 Contributing If you want to contribute be sure to review the contributions guidelines. # 📃 License A copy of the License is provided in the LICENSE file in this repository.


نیازمندی

مقدار نام
- scp
- paramiko
- boto3
- pyaml


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl efsync2-1.0:

    pip install efsync2-1.0.whl


نصب پکیج tar.gz efsync2-1.0:

    pip install efsync2-1.0.tar.gz