Couchbase Edge Server 1.0 is here!

Introducing the newest addition to Couchbase Mobile product family - a lightweight standalone database server for the resource constrained edge. The Edge Server is designed to cater to specific Edge Computing use cases, offering a comprehensive RESTful API for CRUD operations, querying, and change feeds, along with robust support for offline-first data synchronization with both upstream servers and downstream edge clients.

More information :

1 Like

To get started you can run it like this

bin/couchbase-edge-server config_push_pull.json

Below is the config_push_pull.json

{
“databases”: {
“mybook”: {
“path”: “./mybook.cblite2”,
“create”: true,
“enable_client_writes”: true,
“enable_client_sync”: true,
“enable_adhoc_queries”: true,
“collections”:[“food.receipts”]
},
},
“enable_anonymous_users”: true,
“replications”: [{
“auth”: {
“password”: “Bl@$tFr0mTheP@$t”,
“user”: “demoguy”
},
“bidirectional”: true,
“collections”: [“food.receipts”],
“continuous”: true,
“target”: “mybook”,
“source”: “wss://{your_url_here}.apps.cloud.couchbase.com:4984/family”
}
]
}

Are there any plans to make this available for other platforms, e.g., arm64/aarch64?