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
148056: upgrades,systemschema: add new column for login time to system.users r=spilchen,pritesh-lahoti a=souravcrl
- adds an 'estimated_last_login_time' column with the `TIMESTAMPTZ` type. This new
column will be used to store the last login timestamp of authenticating users to
the database. We plan to populate this asynchronously and with absence of retry
mechanisms inorder to reduce latency for performing a single login attempt which
could result in updation of the column frequently. This work will be taken up
subsequently.
- validated the system.users table post migration on local cluster
```
root@localhost:26257/defaultdb> select * from system.users;
username | hashedPassword | isRole | user_id | estimated_last_login_time
-----------+----------------+--------+---------+----------------------------
admin | \x | t | 2 | NULL
root | \x | f | 1 | NULL
(2 rows)
Time: 3ms total (execution 2ms / network 1ms)
```
informs #147602fixes#147600
Epic: CRDB-21590
Release note: None
Co-authored-by: souravcrl <[email protected]>
Copy file name to clipboardExpand all lines: docs/generated/settings/settings-for-tenants.txt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -417,4 +417,4 @@ trace.zipkin.collector string the address of a Zipkin instance to receive trace
417
417
ui.database_locality_metadata.enabled boolean true if enabled shows extended locality data about databases and tables in DB Console which can be expensive to compute application
418
418
ui.default_timezone string the default timezone used to format timestamps in the ui application
419
419
ui.display_timezone enumeration etc/utc the timezone used to format timestamps in the ui. This setting is deprecatedand will be removed in a future version. Use the 'ui.default_timezone' setting instead. 'ui.default_timezone' takes precedence over this setting. [etc/utc = 0, america/new_york = 1] application
420
-
version version 1000025.2-upgrading-to-1000025.3-step-004 set the active cluster version in the format '<major>.<minor>' application
420
+
version version 1000025.2-upgrading-to-1000025.3-step-006 set the active cluster version in the format '<major>.<minor>' application
Copy file name to clipboardExpand all lines: docs/generated/settings/settings.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -375,6 +375,6 @@
375
375
<tr><td><divid="setting-ui-database-locality-metadata-enabled" class="anchored"><code>ui.database_locality_metadata.enabled</code></div></td><td>boolean</td><td><code>true</code></td><td>if enabled shows extended locality data about databases and tables in DB Console which can be expensive to compute</td><td>Serverless/Dedicated/Self-Hosted</td></tr>
376
376
<tr><td><divid="setting-ui-default-timezone" class="anchored"><code>ui.default_timezone</code></div></td><td>string</td><td><code></code></td><td>the default timezone used to format timestamps in the ui</td><td>Serverless/Dedicated/Self-Hosted</td></tr>
377
377
<tr><td><divid="setting-ui-display-timezone" class="anchored"><code>ui.display_timezone</code></div></td><td>enumeration</td><td><code>etc/utc</code></td><td>the timezone used to format timestamps in the ui. This setting is deprecatedand will be removed in a future version. Use the 'ui.default_timezone' setting instead. 'ui.default_timezone' takes precedence over this setting. [etc/utc = 0, america/new_york = 1]</td><td>Serverless/Dedicated/Self-Hosted</td></tr>
378
-
<tr><td><divid="setting-version" class="anchored"><code>version</code></div></td><td>version</td><td><code>1000025.2-upgrading-to-1000025.3-step-004</code></td><td>set the active cluster version in the format '<major>.<minor>'</td><td>Serverless/Dedicated/Self-Hosted</td></tr>
378
+
<tr><td><divid="setting-version" class="anchored"><code>version</code></div></td><td>version</td><td><code>1000025.2-upgrading-to-1000025.3-step-006</code></td><td>set the active cluster version in the format '<major>.<minor>'</td><td>Serverless/Dedicated/Self-Hosted</td></tr>
0 commit comments