azure - Understanding the x-ms-resource-usage in DocumentDB response header -
while performing simple operation id single document returned (not array 1 document) following x-ms-resource-usage:
x-ms-resource-usage:documentsize:0;documentssize:288;collectionsize=307;
questions:
- why
documentsize
0? - what unit of measure? bytes?
- what difference between
documentsize
,documentssize
? please note query returns 1 document. - what
collectionsize
? total number of documents in collection? - what difference between
x-ms-resource-usage
,x-ms-resource-quota
?
i'm sure numbers follows, , in kb:
documentsize
: size of documentdocumentssize
: combined size of documents in collectioncollectionsize
: combined size of documents in collection, along overhead such indexes
x-ms-resource-usage
consumed resources within collection, while x-ms-resource-quota
going give limits. quota, you'll see documentssize
, collectionsize
both set 10485760, 10gb (10,485,760 mb).
Comments
Post a Comment