vhive-serverless / STeLLAR

STeLLAR: Open-source framework for serverless clouds benchmarking
MIT License
30 stars 9 forks source link

concurrent Alibaba Cloud deployments failing #408

Open ypwong99 opened 3 months ago

ypwong99 commented 3 months ago

Currently, STeLLAR supports deployments to Alibaba Cloud through the serverless-aliyun-function-compute plugin. However, the plugin appears to have a limitation. During deployments, it attempts to create a single OSS bucket with the exact same name, in the format of sls-{ACCOUNT_NUMBER}-{REGION_NAME}. This is an issue as OSS bucket names must be unique globally and subsequent deployments through the plugin would fail. This is the root cause of STeLLAR integration/end-to-end test failures when they are executed concurrently.

Alibaba Cloud documentation suggests the use of an alternative framework, Serverless Devs for Functions Compute deployments.

ypwong99 commented 3 months ago

The issues above were first raised in #306.