Every time you update your function, a new version is being created by default. Version numbers have a unique ID that starts at 0 and increments by one each update. Each function version is immutable and cannot be changed.
The 'Latest' version refers to the most recent version created by the last update. Unless otherwise specified, all incoming traffic is routed to the latest version.
Please note: the 'Latest' tag will point to a different version number each and every time you update your function.
Default configuration for activeVersions when a new function is created:
activeVersions:
- version: $LATEST
percentage: 100.0
The 'Active' version can point to more than one version of your function, including 'Latest'. This allows you to distribute your incoming traffic between multiple versions and dictate what percentage is sent to each version.
For example, say you wanted to test a new version of your function to determine if it was production-ready. You could specify that 10% of the traffic be routed to that new version, and route the remaining 90% to the stable version. You can gradually route more traffic to the new version as you become more confident in its performance.
activeVersions:
- version: $LATEST
percentage: 100.0
100% of traffic will go to the most recently published update.
activeVersions:
- version: $LATEST
percentage: 80.0
- version: 2
percentage: 20.0
80% of traffic goes to the most recently published update, and 20% goes to version 2.
activeVersions:
- version: 5
percentage: 50.0
- version: 3
percentage: 25.0
- version: 1
percentage: 25.0
Traffic is split between versions 1. 3, and 5. Changes made to your latest version will not affect production traffic.
You can configure active versions in the serverless.yml file, but you can also use the Spotinst Console to configure the versions without deploying a new update. In the event you would like to change your 'Active' version configuration without updating your function, you can use the 'Configure Active Version' action from the console and the API
Console:
API: (update function)
activeVersions:
- version: $LATEST
percentage: 70.0
- version: 2
percentage: 30.0
Product