Which two operations should you monitor?

You are maintaining an application that uses the Azure Content Delivery Network (CDN) to serve terabytes of
content that is stored in page blobs.
Your bill for CDN services is higher than you expect.
You need to monitor the application to find issues that increase costs.
Which two operations should you monitor? Each correct answer presents part of the solution.

You are maintaining an application that uses the Azure Content Delivery Network (CDN) to serve terabytes of
content that is stored in page blobs.
Your bill for CDN services is higher than you expect.
You need to monitor the application to find issues that increase costs.
Which two operations should you monitor? Each correct answer presents part of the solution.

A.
The Time-To-Live (TTL) of the blobs.

B.
The country of origin for the client computerand the CDN region.

C.
The number of requests that result in an HTTP status code over 400.

D.
The allocated size of page blobs.

E.
The expiration date of the blobs.



Leave a Reply 14

Your email address will not be published. Required fields are marked *


Google

Google

We came across a cool site that you simply may well enjoy. Take a look in the event you want.

fly

fly

I think it should be B and C

Puc

Puc

A-D
For A: From MS: Each time a CDN point of presence needs to fill its cache, it will make a request to the origin for the object being cached. This means the origin will incur a billable transaction on every cache miss. How many cache misses you have depends on a number of factors:
How “cacheable” content is: If content has high TTL/expiration values and is accessed frequently so it stays popular in cache, then the vast majority of the load is handled by the CDN. A typical “good” cache-hit ratio is well over 90%, meaning that less than 10% of client requests have to return to origin (either for a cache miss or object refresh).
How many nodes need to load the object: Each time a node loads an object from the origin, it incurs a billable transaction. This means that more global content (accessed from more nodes) results in more billable transactions
Influence of TTL: A higher TTL (Time-To-Live) for an object means it needs to be fetched from the origin less frequently. It also means clients (like browsers) can cache the object longer, which can even reduce the transactions to the CDN.
B: NOT because : The CDN billing region is based on the location of the source server delivering the content to the end user. The destination (physical location) of the client is not considered the billing region.
C: NOT because : For example, 304 NOT MODIFIED (and other header-only) responses generate very little transfer since they are a small header response; similarly, error responses (e.g., 404 NOT FOUND) are billable but incur very little cost because of the tiny response payload.
D: If you are using blob storage as “origin” for your content, you also incur charges for cache fills for:

Storage – actual GB used (the actual storage of your source objects),
Storage – transfer in GB (amount of data transferred to fill the CDN caches), and
Storage – transactions (as needed to fill the cache. Read this blog post for more information.)

E: expiration date dont know what it is looks same like TTL

Puc

Puc

Actual GB used so (Allocated size of page blobs is not billed) D is wrong damn.

Puc

Puc

i will use A-C