-
I know this is a relatively new feature and I checked the traces and shows it is enabled, however, the |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Pinging @amdeel for this question. |
Beta Was this translation helpful? Give feedback.
-
This is expected. The container itself is what is currently being leased with the app lease feature. Because there hadn't been a need to store any information in our initial iteration of this feature, it wasn't necessary to actually add a blob to the container, just use it to represent the lease. In an upcoming update to the app lease feature, there will be a blob inside that container that stores information about which app currently owns the lease. This update is really cool because it will allow apps to steal the app lease using a new http api and will also let apps automatically reset themselves to the waiting stage, trying to acquire the app lease for failure situations again. Previously, swapping apps and resetting them required manual restarts to applications. |
Beta Was this translation helpful? Give feedback.
-
@amdeel One of our primary apps is currently exceeding the 32 character host id limit (we get a warning in diagnose and solve blade) and we have not been able to delete the resource and re-deploy yet.
Will this cause any issues with the new app lease functionality? I looked at the blob inside the container and it looks to be a GUID so I'm not 100% sure or not. Thanks! |
Beta Was this translation helpful? Give feedback.
This is expected. The container itself is what is currently being leased with the app lease feature. Because there hadn't been a need to store any information in our initial iteration of this feature, it wasn't necessary to actually add a blob to the container, just use it to represent the lease.
In an upcoming update to the app lease feature, there will be a blob inside that container that stores information about which app currently owns the lease. This update is really cool because it will allow apps to steal the app lease using a new http api and will also let apps automatically reset themselves to the waiting stage, trying to acquire the app lease for failure situations again. Previo…