1.6. Partitioned Databases
See the guide for getting started with partitioned databases
GET
/{db}/_partition/{partition}
This endpoint returns information describing the provided partition. It includes document and deleted document counts along with external and active data sizes.
Status Codes
- – Request completed successfully
Request:
Response:
HTTP/1.1 200 OK
Cache-Control: must-revalidate
Content-Length: 119
Content-Type: application/json
Date: Thu, 24 Jan 2019 17:19:59 GMT
Server: CouchDB/2.3.0-a1e11cea9 (Erlang OTP/21)
{
"db_name": "my_new_db",
"doc_count": 1,
"doc_del_count": 0,
"partition": "sensor-260",
"sizes": {
"active": 244,
"external": 347
}
}
GET
/{db}/_partition/{partition}/_all_docs
Parameters
db – Database name
partition – Partition name
This endpoint is a convenience endpoint for automatically setting bounds on the provided partition range. Similar results can be had by using the global /db/_all_docs
endpoint with appropriately configured values for start_key
and end_key
.
Request:
Response:
HTTP/1.1 200 OK
Cache-Control: must-revalidate
Content-Type: application/json
Date: Sat, 10 Aug 2013 16:22:56 GMT
Server: CouchDB (Erlang/OTP)
Transfer-Encoding: chunked
{
"offset": 0,
"rows": [
{
"id": "sensor-260:sensor-reading-ca33c748-2d2c-4ed1-8abf-1bca4d9d03cf",
"key": "sensor-260:sensor-reading-ca33c748-2d2c-4ed1-8abf-1bca4d9d03cf",
"value": {
"rev": "1-05ed6f7abf84250e213fcb847387f6f5"
}
}
],
"total_rows": 1
}
GET
/{db}/_partition/{partition}/_design/{ddoc}/_view/{view}
Parameters
db – Database name
partition – Partition name
ddoc – Design document id
view – View name
This endpoint is responsible for executing a partitioned query. The returned view result will only contain rows with the specified partition name.
Refer to the view endpoint documentation for a complete description of the available query parameters and the format of the returned data.
Response:
HTTP/1.1 200 OK
Cache-Control: must-revalidate
Content-Type: application/json
Date: Wed, 21 Aug 2013 09:12:06 GMT
ETag: "2FOLSBSW4O6WB798XU4AQYA9B"
Server: CouchDB (Erlang/OTP)
Transfer-Encoding: chunked
{
"offset": 0,
"rows": [
{
"id": "sensor-260:sensor-reading-ca33c748-2d2c-4ed1-8abf-1bca4d9d03cf",
"key": [
"sensor-260",
"value": null
},
{
"id": "sensor-260:sensor-reading-ca33c748-2d2c-4ed1-8abf-1bca4d9d03cf",
"key": [
"sensor-260",
"1"
],
"value": null
},
{
"id": "sensor-260:sensor-reading-ca33c748-2d2c-4ed1-8abf-1bca4d9d03cf",
"key": [
"sensor-260",
"2"
],
"value": null
},
{
"id": "sensor-260:sensor-reading-ca33c748-2d2c-4ed1-8abf-1bca4d9d03cf",
"key": [
"sensor-260",
"3"
],
"value": null
}
],
"total_rows": 4
}
Parameters
db – Database name
id (partition) – Name of the partition to query
This endpoint is responsible for finding a partition query by its ID. The returned view result will only contain rows with the specified partition id.
Refer to the documentation for a complete description of the available parameters and the format of the returned data.
/{db}/_partition/{partition_id}/_explain
Parameters
- db – Database name
Partition id
Name of the partition to query
This endpoint shows which index is being used by the query.
Refer to the explain endpoint documentation for a complete description of the available parameters and the format of the returned data.