Provides a way to sync accounts from an external Gerrit system. This library overrides the Accounts cache implementation from core and loads accounts from an external Gerrit system using /accounts/ REST APIs. Upon fetching the account info from external Gerrit API, account is saved into NoteDb and re-indexed. If the external Gerrit API fails to return the account, the cache falls back to the accounts stored in NoteDb.

Clone this repo:

Branches

  1. 436b6f4 Add Jenkinsfile for module verification by Prudhvi Akhil Alahari · 6 months ago master
  2. 0a8413c Add always passing test by Prudhvi Akhil Alahari · 7 months ago
  3. 4d09fce Add rate limiting for HTTP requests by Prudhvi Akhil Alahari · 7 months ago
  4. 147c308 Add remote-gerrit-account-cache lib by Prudhvi Akhil Alahari · 7 months ago
  5. c9df881 Initial empty repository by Nasser Grainawi · 7 months ago

About

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.

Test scenarios:

Add new email

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

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

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

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

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.

Accounts cache timeout

The entries in the accounts cache must be evicted after maxAge duration reaches.

API throttling

The remote REST APIs must be throttled based on the requestsPerSecond gerrit setting.

How to build

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

How to install

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.

Configuration

Section gerrit

gerrit.installModule

AccountCache module which will be overriding the core AccountCache implementation. By default, unset.

Example:

[gerrit]
    installModule = com.googlesource.gerrit.plugins.remotegerritaccountcache.AccountCacheImpl$AccountCacheModule

Section remote-gerrit-account-cache

remote-gerrit-account-cache.remoteGerritBaseUrl

The remote Gerrit site base URL. By default, unset.

Example:

[remote-gerrit-account-cache]
    remoteGerritBaseUrl = https://gerrit.example.com

remote-gerrit-account-cache.httpUsername

The remote Gerrit site HTTP username. By default, unset.

Example:

[remote-gerrit-account-cache]
    httpUsername = example

remote-gerrit-account-cache.httpPassword

The remote Gerrit site HTTP password. By default, unset.

Example:

[remote-gerrit-account-cache]
    httpPassword = ***

remote-gerrit-account-cache.requestsPerSecond

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

Section cache

cache.accounts.maxAge

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

cache.accounts.refreshAfterWrite

Duration after which account cache entries are eligible for asynchronous refresh. By default, set to 23h.

Example:

[cache "accounts"]
    refreshAfterWrite = 23h