Brave Sync Server v2
A sync server implemented in go to communicate with Brave sync clients using components/sync/protocol/sync.proto. Current Chromium version for sync protocol buffer files used in this repo is Chromium 109.0.5414.46
This server supports endpoints as bellow.
- The
POST /v2/command/
endpoint handles Commit and GetUpdates requests from sync clients and return corresponding responses both in protobuf format. Detailed of requests and their corresponding responses are defined inschema/protobuf/sync_pb/sync.proto
. Sync clients are responsible for generating valid access tokens and present them to the server in the Authorization header of requests.
Currently we use dynamoDB as the datastore, the schema could be found in schema/dynamodb/table.json
.
Developer Setup
- Install Go 1.18
- Install GolangCI-Lint
- Install gowrap
- Clone this repo
- Install protobuf protocol compiler if you need to compile protobuf files, which could be built using
make protobuf
. - Build via
make
Local development using Docker and DynamoDB Local
- Clone this repo
- Run
make docker
- Run
make docker-up
- For running unit tests, run
make docker-test
Prometheus Instrumentation
The instrumented datastore and redis interfaces are generated, providing integration with Prometheus. The following will re-generate the instrumented code:
make instrumented
Changes to datastore/datastore.go
or cache/cache.go
should be followed with the above command.