-
Notifications
You must be signed in to change notification settings - Fork 255
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
Privacy budget with Private Aggregation API #428
Comments
Hi Fabian, So you're aware, we've set up an issue on the Private Aggregation repo to seek feedback on the value and scope of privacy budgeting: patcg-individual-drafts/private-aggregation-api#23. Please also note that we haven't made a decision yet on the L1 bound value, but are using 2^16 for testing. To answer your questions:
Thanks for the feedback! |
Thanks for the reply.
Let's say we increase it to 300k and I use 100k for bid requests, 100k for displays and 100k for clicks which means I have to scale up displays and clicks. In any case, to reduce noise, one will always be close to the limit by scaling up. That's why it seems preferable to have some budget by type of event. |
Sorry for the delay in responding! As we discussed in the FLEDGE WICG call, thanks for the feedback that managing contribution budgets could be difficult when you have multiple measurements going on. One concern we have with budgeting different events separately is that different ad techs may want different distributions of their budget amongst the possible events. We have a proposal that might help mitigate this issue: we're considering changing the time scope of the contribution budget to per-10 min instead of per-day (patcg-individual-drafts/private-aggregation-api#23 (comment)). Further, we floated the idea of revealing the remaining contribution budget (within the FLEDGE worklet), which may help with prioritizing different measurements when the remaining budget is tight. This would need additional thought, but we'd appreciate any feedback on whether this would help alleviate your concern. Finally, we hope the per-10 min budget change might help mitigate some of the concerns about sufficient granularity. Still, the aggregation and addition of noise do limit the precision available in the final (summary) measurement. |
The private aggregation API explainer defines those notions of privacy budget:
L1 bound of 2^16 = 65 536 as proposed by the Attribution Reporting API with Aggregatable Reports explainer.
We initially plan to enforce a per-origin budget that resets daily
Fledge integration of the private aggregation API is mentioned here.
Some questions on the integration with Fledge:
How will the budget be reset for Fledge ? In this example 1 each display makes a contribution of 1. But with the per origin definitions above it would mean if I display 5 ads to the user per day I would have a contribution of 5. This would greatly reduce the utility of this API depending on which capping parameters are set for the user. It also seems very different from the per source budget in the attribution reporting API.
example 2 mentions measuring the bid value. However the example only mentions bids of 100 or 200 which would be integers. In reality the bid is a float value and could be up to 6 decimal digits precision (https://developers.google.com/authorized-buyers/rtb/downloads/realtime-bidding-proto.txt). Something realistic for aggregated values would be to measure a least a precision of up to 2 digits and allowing values from 0 to 100, which would mean, when this is encoded in some form, a contribution of up to 10000. So just measuring the bid value would already consume 15% of the budget. How should float values be handled in general ?
With the L1 bound of 2^16 max 16 536 contributions could be handled. When multiple float values with multiple digit precision must be handled it can quickly reach its limits. Would it be an option to increase the L1 bound to a higher value and in exchange increase the noise ? The budget would stay the same in this case but the seller/buyer could in exchange wait longer to get his report to reduce the signal to noise ratio.
The absolute value of the measured signals per day are not the same. For example, there might be 1mio losses for 10000 displays for 100 clicks for 1 sale. It means if all that applies to the same budget the losses will exhaust the budget quickly and nothing is left for the clicks. So it seems reasonable to at least separate the budget by event type
The text was updated successfully, but these errors were encountered: