You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We support scheduling for enabling/disabling a flag, but we don't support scheduling for the changes made to the flag.
It would be nice to schedule a change to the variation value or a rule, etc. To do something similar, we need to change the default value and off variation and create schedule operations to switch on/off to change the value returned to the user.
Implement granular changes
Add scheduled_flag_update table and proto message
Implement scheduled flag update API
Implement cronjob to execute the updates
Implement check for update conflicts
The text was updated successfully, but these errors were encountered:
I'm thinking of adding a new column to the feature table called schedule.
It will store an object, including the timestamp and the updated feature flag object.
When the cronjob runs (every minute), it checks the timestamp and updates the feature flag object with the scheduled one.
Regarding restrictions, when a change is scheduled, the user cannot make any other changes until the schedule is finished or if the user decides to delete the schedule.
This way is simple and doesn't require complex backend and front-end implementations.
I'm thinking of adding a new column to the feature table called schedule. It will store an object, including the timestamp and the updated feature flag object.
When the cronjob runs (every minute), it checks the timestamp and updates the feature flag object with the scheduled one. Regarding restrictions, when a change is scheduled, the user cannot make any other changes until the schedule is finished or if the user decides to delete the schedule. This way is simple and doesn't require complex backend and front-end implementations.
Because our users want to schedule multiple changes at different times, I'm changing the update flow to support it.
We support scheduling for enabling/disabling a flag, but we don't support scheduling for the changes made to the flag.
It would be nice to schedule a change to the variation value or a rule, etc. To do something similar, we need to change the default value and off variation and create schedule operations to switch on/off to change the value returned to the user.
Implement granular changes
Add
scheduled_flag_update
table and proto messageImplement scheduled flag update API
Implement cronjob to execute the updates
Implement check for update conflicts
The text was updated successfully, but these errors were encountered: