最近,我开始从事一个个人项目,我想构建一个与云无关的应用程序 - 即它可以部署在任何云提供商上,只需最少/无需更改代码。主要要求是将业务逻辑与云提供商特定逻辑分开。
在这篇文章中,我想分享所遵循的方法。
下面的代码使用python
from abc import ABC, abstractmethod class IObjectStorage(ABC): @abstractmethod def upload_object_to_bucket(self, file_name, file_content): _raise an error that method is not implemented_
class AWSObjectStorageConnector(IObjectStorage): def __init__(self, bucket_name): _Initialize a s3 client using boto3 and initialize a variable using bucket name_ def upload_object_to_bucket(self, file_name, file_content): _Implement the logic to upload the file to AWS S3 bucket_
此方法采用将从调用方法传递的云提供商变量
def get_object_storage(cloud_provider, bucket_name) -> IObjectStorage: if cloud_provider == 'aws': return AWSObjectStorageConnector(bucket_name=bucket_name) else: raise ValueError(f'Unsupported cloud provider: {cloud_provider}')
cloud_provider 变量将从作为输入传递的环境变量中读取。这确保了相同的逻辑可以在不同的云提供商中正常工作。
object_storage_connector = get_object_storage(cloud_provider=provider, bucket_name=bucket_name)
如有任何建议或反馈,请随时发表评论。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3