Use Case: Assigning Extra Counts To Business Unit
Requirement: Make specified number of features accessible only to one particular business unit.
This scenario features the same business units as before—Sales and Engineering.
For this demonstration, let’s assume that the total feature count for f1 is 10. Of the total count, 3 licenses are allocated exclusively to the engineering partition. In addition, engineering is allowed access to the remaining 7 licenses (on a first-come-first-served basis) from the default partition.
The Sales business unit (which has no pre-allocated counts in this scenario) only has access to the default partition.
Model Definition Example
model "exampleModel" {
partitions {
partition "engineering" {
"f1" 1.0 3
}
}
on dictionary("business-unit" : "engineering") {
use "engineering", "default"
accept
}
}