The remote-gerrit-account-cache lib provides a way to sync accounts from a remote Gerrit system. This library overrides the Accounts cache implementation from core and loads accounts from a remote Gerrit system using /accounts/ REST APIs. Upon fetching the account info from the remote Gerrit REST API, the account is saved into NoteDb and re-indexed. If the remote Gerrit REST API fails to return the account, the cache falls back to the account stored in NoteDb.
The HTTP user needs to have ‘View All Accounts’, ‘Modify Account’ and ‘View Secondary Emails’ Capabilities in remote gerrit site inorder to fetch account details using /accounts/{account-id}/detail and /accounts/{account-id}/external.ids REST APIs.
The remote REST APIs fired from this lib module are rate limited to 8 per second. This can be changed with a config if needed.
Add new email address for a user in the remote Gerrit site. The new email address must be visible on the internal site either after accounts cache expiry or flushing the accounts cache.
Update preferred email for a user in the remote Gerrit site. The update must be visible on the internal site either after accounts cache expiry or flushing the accounts cache.
Delete an email for a user in the remote Gerrit site. The update must be visible on the internal site either after accounts cache expiry or flushing the accounts cache.
Add a new account in the remote Gerrit site. The new account must be visible on the internal site whenever the new account is queried for.
Delete an account in the remote Gerrit site. The internal Gerrit site continues to return the account as it falls-back to NoteDB when /accounts/ API fails to return an account.
The entries in the accounts cache must be evicted after maxAge duration reaches.
The remote REST APIs must be throttled based on the requestsPerSecond gerrit setting.
This lib can be built either standalone or in-tree.
Example:
bazel build remote-gerrit-account-cache
The output module jar is created in:
bazel-bin/remote-gerrit-account-cache.jar
Copy the remote-gerrit-account-cache.jar into the ${GERRIT_SITE}/lib/
so that it is being loaded when the Gerrit instance is started. Note that the following configuration options need to be added.
AccountCache module which will be overriding the core AccountCache implementation. By default, unset.
Example:
[gerrit] installModule = com.googlesource.gerrit.plugins.remotegerritaccountcache.AccountCacheImpl$AccountCacheModule
The remote Gerrit site base URL. By default, unset.
Example:
[remote-gerrit-account-cache] remoteGerritBaseUrl = https://gerrit.example.com
The remote Gerrit site HTTP username. By default, unset.
Example:
[remote-gerrit-account-cache] httpUsername = example
The remote Gerrit site HTTP password. By default, unset.
Example:
[remote-gerrit-account-cache] httpPassword = ***
The maximum rate at which the remote REST APIs are fired. By default, set to 8 per second.
Example:
[remote-gerrit-account-cache] requestsPerSecond = 10
Maximum age to keep an entry in the accounts cache. By default, the entries in accounts cache expire in a day.
Example:
[cache "accounts"] maxAge = 1d
Duration after which account cache entries are eligible for asynchronous refresh. By default, set to 23h.
Example:
[cache "accounts"] refreshAfterWrite = 23h