Closed
Bug 1614649
Opened 6 years ago
Closed 5 years ago
Please update the new user percentage for durable sync to 25% on Feb 24th
Categories
(Cloud Services :: Operations: Deployment Requests - DEPRECATED, task)
Cloud Services
Operations: Deployment Requests - DEPRECATED
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: rachel, Assigned: eolson)
References
Details
In the dynamic_settings table:
INSERT INTO
dynamic_settings (setting, value, description)
VALUES
('migrate_new_user_percentage', 25, 'percent of new users to migrate to spanner')
ON DUPLICATE KEY UPDATE
migrate_new_user_percentage = 25;
Comment 2•5 years ago
|
||
That query should be:
INSERT INTO
dynamic_settings (setting, value, description)
VALUES
('migrate_new_user_percentage', 25, 'percent of new users to migrate to spanner')
ON DUPLICATE KEY UPDATE
value = 25;
| Reporter | ||
Comment 3•5 years ago
|
||
ah, thanks jrgm. Will use that for these requests in the future.
| Assignee | ||
Updated•5 years ago
|
Assignee: jrgm → eolson
| Assignee | ||
Comment 4•5 years ago
|
||
Updated. I will monitor sync-rs as this setting is propagated.
| Assignee | ||
Updated•5 years ago
|
Status: NEW → RESOLVED
Closed: 5 years ago
Resolution: --- → FIXED
| Reporter | ||
Comment 5•5 years ago
|
||
thanks, Erik
You need to log in
before you can comment on or make changes to this bug.
Description
•