-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature request] Automating event-level epsilon #1442
Comments
To make sure I understand: This proposal doesn't add any capabilities to the API, but rather allows the reporting origin to avoid having to compute epsilon itself? |
It not only avoids -- the proposal is to default to this automation. In the current version of the API, the consumer does not have to compute epsilon. They can just have registrations rejected. With this change, the default would be to accept registrations by altering epsilon automatically. |
Got it. Have we received feedback that it's difficult to compute epsilon ahead of time? As for the defaulting -- We'd have to consider whether silently changing the default behavior here is OK. If not, we could instead allow sources to set something like |
The main concern I would have is this being a "footgun" as it could easily lead to huge unexpected noise. Having this as opt-in mitigates to some extent though. |
Event-level epsilon is used to compute the channel capacity of a source and obtain a randomized source response. Currently, if a source's event configuration exceeds channel capacity it will be rejected; however, a lower event-level epsilon may be provided during source registration to increase noise and reduce channel capacity to accord with the limit.
The flexible-event utility currently advises on the highest such event-level epsilon. For example:
advises that by providing event-level epsilon
11.405
(default is14.0
), randomized trigger rate is increased from0.0072807
to0.0894337
to accord with the channel capacity limit for navigation sources.Rather than reject source registrations that exceed channel capacity limits, ARA implementations could default to automating setting such an epsilon on the client, with the ability for consumers to turn it off per registration. This would give API callers a tradeoff between more possible event-level configurations and higher noise.
The text was updated successfully, but these errors were encountered: