What Does Cool tier Mean?
On This Page
Quick Definition
Cool tier is a cheap way to store data in the cloud that you don't need to access very often. It costs less to keep the data there, but you pay a little more when you need to get it out. You also have to promise to keep the data for at least 30 days, or you'll pay a penalty. It's a good middle ground between very expensive hot storage and very cheap archive storage.
Commonly Confused With
Hot tier is the default access tier in Azure Blob Storage designed for data that is accessed frequently (multiple times per day). It has higher storage cost per GB but lower transaction costs compared to Cool tier. Cool tier is for infrequently accessed data (once a month or less) with lower storage costs but higher transaction costs.
A company's daily transaction logs are stored in Hot tier because they are queried live for reporting. Monthly backups of those logs are moved to Cool tier after one month because they are only accessed for recovery purposes.
Cold tier is an online access tier that is cheaper than Cool tier for storage but has even higher transaction costs and a longer minimum storage duration of 90 days. Cold tier is designed for data that is accessed rarely (once every 90 days or less). Cool tier is for data accessed every 30-90 days.
Quarterly financial reports that are accessed once every 90 days could go to Cold tier, while monthly sales spreadsheets accessed every 30 days are better suited for Cool tier.
Archive tier is an offline access tier with the lowest storage cost but requires rehydration (which can take hours) before data can be read. Archivetier has a minimum storage duration of 180 days. Cool tier is online (instant access) with a 30-day minimum. Archive is for data that is accessed less than once per year.
Legal documents that must be retained for 10 years but are only accessed during lawsuits should go to Archive tier. Monthly project files accessed by the team every few months should go to Cool tier.
Must Know for Exams
The term 'Cool tier' is directly relevant to the AZ-104 Microsoft Azure Administrator exam, specifically under the 'Manage Azure storage' objective group. The exam objectives require candidates to be able to 'configure storage accounts,' 'implement Azure Blob Storage,' and 'manage data lifecycle.' Within those objectives, understanding access tiers is a core competency.
Exam questions will often present a scenario describing a specific data usage pattern, for example, 'A company stores monthly sales reports that are accessed once per quarter. The data must be retained for at least 90 days. Which access tier should be used?'
The correct answer is Cool tier because the access frequency is infrequent (quarterly) and the retention period exceeds the 30-day minimum. However, the exam also tests edge cases. For instance, if the scenario says the data is accessed once per year, the correct answer would be Archive tier.
If the scenario says the data is accessed multiple times daily, the answer is Hot tier. The exam also tests the concept of early deletion fees. You might see a question like, 'A company uploads a blob to Cool tier and then deletes it after 15 days.
What additional charge will appear on the bill?' The answer is the early deletion fee for the remaining 15 days. The exam does not ask you to calculate the exact dollar amount, but it does expect you to understand that such a fee exists.
Exam questions often involve Azure lifecycle management. You may be asked to configure a policy that moves blobs from Hot to Cool tier after 30 days and then to Archive tier after 365 days. You need to know the order of operations and the conditions.
Another common question type is comparing total cost of ownership between tiers. You might be given a dataset with a certain size, access frequency, and data transfer volume, and asked which tier minimizes cost. The answer often depends on the balance between storage cost and transaction cost, and Cool tier is the best fit when reads are infrequent.
The exam also tests the concept of 'online' versus 'offline' tiers. Cool tier is online, meaning blobs are instantly readable (though with slightly higher latency). Archive tier is offline, blobs must be rehydrated before reading.
This distinction is important for questions about availability and access speed. Finally, the exam may present a scenario where a company has a storage account with Cool tier set as the default access tier. You need to understand that each blob can still be individually set to a different tier, overriding the default.
This flexibility is a common exam detail. 'Cool tier' appears in multiple question types: single-select multiple choice, scenario-based best practice, and even drag-and-drop ordering of lifecycle rules. A strong grasp of the pricing model, minimum duration, and use cases is essential for scoring well on the AZ-104 exam.
Simple Meaning
Imagine you have a big closet in your house. In that closet, you have three types of shelves. The top shelf is right at eye level, it's the Hot shelf. You put things there that you grab every day, like your keys, your wallet, and your phone charger. It's super convenient, but space on that shelf is valuable and costs you more. The bottom shelf is way down low, almost on the floor, that's the Archive shelf. You put things there that you maybe look at once a year, like old tax returns or holiday decorations. It's very cheap, but you have to bend down, move other stuff, and it takes a while to get to those items. The middle shelf is the Cool shelf. You put things there that you don't need every day, but you might need every few weeks or every couple of months. For example, you might store your winter coats there in the summer, or the board games you play when friends come over. It costs less to keep things on the Cool shelf than the Hot shelf, but if you want to grab something, it costs a little more effort than just reaching out. Also, if you decide to throw something away from the Cool shelf before it has been there for 30 days, you have to pay a small fee because the shelf space was reserved for you. In cloud storage, this is exactly how Cool tier works. It is an access tier in Azure Blob Storage. You pay a lower monthly price per gigabyte to store your blobs (which are like your files), but you pay a higher cost to read or write that data. The 30-day minimum storage duration means that if you upload a file to Cool tier and then delete it after only 10 days, you are charged for the remaining 20 days as if you had kept it. This pricing model makes Cool tier perfect for data that is accessed infrequently, like backup files, old application logs, or media files that are still relevant but no longer in active daily use. It balances cost and accessibility in a way that makes sense for many business scenarios.
Think of it as the difference between first-class mail (Hot), standard mail (Cool), and media mail (Archive). First-class is fast and expensive. Standard is slower and cheaper. Media mail is the slowest and cheapest, but you have to wait and it's only for certain items. Cool tier is the standard mail of cloud storage, it gets there reliably, but you pay a bit for the retrieval, and you should not use it for things you need right now. In the real world, IT professionals use Cool tier for data that supports business operations but is not critical for real-time access. For example, a company might store monthly sales reports in Cool tier. Those reports are not needed every day, but the finance team might access them a few times a quarter. The data is important enough to keep online, but it does not need the low-latency access of Hot tier. By moving these files to Cool tier, the company saves significant storage costs while still keeping the data readily available when needed. The tradeoff is that retrieval costs are higher, so you need to think about how often you will access the data before choosing this tier.
Full Technical Definition
Cool tier is an online access tier within Azure Blob Storage, part of the Azure Storage service, that is optimized for storing large amounts of data that is infrequently accessed and has a minimum storage duration of 30 days. It is one of three primary online access tiers, Hot (frequent access), Cool (infrequent access), and Cold (rare access, minimum 90 days), plus the offline Archive tier (rare access, minimum 180 days, with hours-long rehydration). The Cool tier is designed for data with an access pattern of once every few weeks to once every few months.
It offers lower per-gigabyte storage costs compared to the Hot tier but higher per-operation costs for read and write transactions. This means that the total cost of ownership (TCO) is lower for data that is stored but not actively accessed, as the storage cost savings outweigh the transaction cost increases. The Cool tier is implemented at the blob level, meaning individual blobs (objects) within a storage account can be assigned to different access tiers.
This is set either at upload time using the `x-ms-access-tier` header or changed after upload using the `Set Blob Tier` operation. When a blob's tier is changed from Hot to Cool, a write transaction charge applies (since data is being written to the cooler tier). Changing from Cool back to Hot incurs a read transaction charge for the data retrieval plus a write charge for writing to the Hot tier.
The minimum storage duration of 30 days is enforced by early deletion charges. If a blob is deleted, overwritten, or moved to a different tier (like Hot or Archive) before 30 days have passed since the last tier change to Cool, the Azure billing system calculates the remaining days and charges a prorated early deletion fee equal to the storage cost that would have been incurred for those remaining days. This discourages short-term use of the Cool tier for transient data.
Cool tier blobs are stored on the same underlying Azure Storage infrastructure as Hot tier blobs, but the data is managed with different caching and replication strategies that prioritize cost efficiency over access speed. The service level agreement (SLA) for Cool tier is the same as for Hot tier in terms of durability (99.9999999999%, or 11 nines) and availability (99.
9% for RA-GRS, 99.99% for LRS), but the latency for first-byte read access is slightly higher because the data may not be in a hot cache. Geographically, Cool tier supports all Azure Storage redundancy options: Locally Redundant Storage (LRS), Zone-Redundant Storage (ZRS), Geo-Redundant Storage (GRS), and Read-Access Geo-Redundant Storage (RA-GRS).
The Cool tier is often used in conjunction with Azure lifecycle management policies, which can automate the transition of blobs from Hot to Cool to Archive based on age or last access time. For example, a policy might move blobs to Cool tier 30 days after last modification and to Archive tier 365 days after last modification. This automation is a key feature for cost optimization in production environments.
In the context of the AZ-104 exam, understanding this tier and its pricing implications is critical for designing cost-effective storage solutions. Candidates must be able to recommend the appropriate access tier based on usage patterns, calculate the cost impact of different tiers, and configure lifecycle management rules. The exam may present scenarios where a company is storing backup data, media files, or historical logs, and the candidate must choose between Hot, Cool, and Archive tiers.
Candidates must understand the implications of early deletion fees and how to avoid them through proper data governance.
Real-Life Example
Think about how you manage your email inbox. You have your primary inbox, that is your Hot tier. New emails from your boss, important project updates, and messages from your family all live there.
You check it multiple times a day. It is fast, front and center, but if you let thousands of emails pile up, it becomes cluttered and overwhelming. Now, consider a folder you have set up called 'Last Year's Projects.'
You do not look at those emails every day, but you might need to refer to one every few weeks when someone asks about an old decision. You have moved those emails out of your primary inbox into that folder to keep your inbox clean. This folder is your Cool tier.
It costs you nothing extra in a real email account, but imagine if your email provider charged you a small monthly fee per email stored in the primary inbox, but a much smaller fee per email in the 'Last Year's Projects' folder. However, every time you want to open an email from that folder, you have to pay a small retrieval fee, like 1 cent per email. Also, if you delete an email from that folder within 30 days of moving it there, you are charged a penalty.
This is exactly how Cool tier works in Azure. You pay less to keep your data there, but you pay more to access it. You also commit to keeping it for at least 30 days. This setup makes sense because the 'Last Year's Projects' emails are not needed urgently.
You do not mind paying a tiny fee to access them because you are saving so much on storage costs overall. In a business context, this analogy extends to file servers. Many companies have network drives where employees save everything.
Over time, those drives fill up with old files that nobody touches. Instead of buying more expensive high-performance storage, the IT team can move those files to a Cool tier storage account. The files remain accessible, but the company saves money.
The tradeoff is that when someone does need an old file, the retrieval is a bit slower, maybe a few hundred milliseconds instead of a few milliseconds, and the retrieval transaction shows up as a cost on the monthly bill. But for most business needs, that is perfectly acceptable. The real value comes from the fact that the storage cost is so much lower that it justifies the slower access and higher retrieval fees.
This is a fundamental concept in cloud economics that the AZ-104 exam tests thoroughly.
Why This Term Matters
Understanding Cool tier is essential for any IT professional working with Azure because it directly impacts the cost and performance of cloud storage solutions. In a typical enterprise environment, data growth is exponential. Companies generate massive amounts of logs, backups, media files, and historical records.
Storing all of this data in the most expensive Hot tier would be prohibitively costly. Cool tier provides a critical middle ground, it keeps data online and accessible, but at a significantly reduced storage cost. This allows organizations to implement tiered storage strategies that align costs with access patterns.
From a practical IT perspective, if you are a cloud administrator, you will likely be responsible for setting up storage accounts and advising on cost optimization. For example, a company might be migrating a file server to Azure. The active project files (accessed daily) go to Hot tier.
The older project archives (accessed quarterly) go to Cool tier. The legal holds and compliance data (accessed rarely) go to Archive tier. This tiered approach can cut storage costs by 40% to 60% compared to using Hot tier for everything.
The Cool tier also influences how you design backup and disaster recovery solutions. For instance, you might store daily database backups in Cool tier because you only need to restore from them in the case of a failure. You do not access them every day.
This reduces the storage cost of your backup solution dramatically. The 30-day minimum duration requirement means you must plan your data lifecycle carefully. You cannot use Cool tier as a temporary holding area for data that will be deleted shortly after upload.
This forces IT professionals to implement proper data retention policies and automation. On the AZ-104 exam, the ability to distinguish between access tiers and justify their use is a common topic. You will see scenario-based questions where you must recommend a storage solution for a given data set.
Knowing that Cool tier is ideal for infrequently accessed data with a 30-day retention promise will help you select the correct answer. Understanding that Cool tier incurs higher transaction costs means you must also consider the access frequency when calculating total cost. It is not enough to just look at the storage price per GB.
You must account for read and write operations, as well as early deletion fees. This holistic view of cloud storage economics is exactly what the exam tests and what real-world Azure administrators need to master.
How It Appears in Exam Questions
On the AZ-104 exam, questions involving Cool tier typically fall into three patterns: scenario-based selection, configuration troubleshooting, and cost optimization analysis. In scenario-based selection questions, you are given a description of a business requirement and a set of data characteristics. For example: 'A company has 5 TB of archived customer records that are accessed by auditors once every three months.
The data must be retained for seven years. The IT team wants to minimize storage costs while keeping data instantly accessible. Which access tier should you recommend?' The correct answer is Cool tier because 'instantly accessible' rules out Archive (which requires rehydration), and the access frequency (every three months) is low enough to justify the lower storage cost of Cool over Hot.
However, the exam may include a twist: if the access frequency is described as 'once a year,' then Archive becomes correct despite the instant access requirement, because the data can be rehydrated before audit day. Configuration questions often appear as multiple-choice with a specific scenario and a set of possible actions. For instance: 'You have a storage account with a blob container set to the Hot tier.
You want to move a specific blob to Cool tier without affecting other blobs. What should you do?' The correct answer is to change the blob's access tier using the Azure portal, PowerShell, or CLI, because access tier is a blob-level property.
A common distractor is 'change the default access tier of the storage account,' which would only affect new blobs, not the existing one. Another pattern involves troubleshooting cost issues. A question might describe a company that moved all data to Cool tier to save money, but the monthly bill actually increased.
You then need to identify the cause: perhaps they are accessing the data frequently (high transaction costs), or they are deleting blobs before 30 days (early deletion fees), or they have a very large number of small blobs (transaction costs per blob). The correct answer involves recognizing that Cool tier has higher read and write operation costs, so frequent access can make it more expensive than Hot tier. The exam may also present a hybrid scenario where a company uses lifecycle management rules.
For example: 'You configure a rule that moves blobs to Cool tier after 30 days. After 60 days, you notice that some blobs are still in Hot tier. What is the most likely reason?' Possible answers include: the blobs were modified after the 30-day mark (which resets the age), the lifecycle rule is not enabled, or the blobs are in a container that is excluded from the rule.
You need to understand that lifecycle rules check the 'last modification time' by default, so any update resets the clock. Finally, you might see a drag-and-drop question where you put the access tiers in order of increasing storage cost and decreasing retrieval cost. Cool tier would be in the middle: more expensive than Archive but less than Hot for storage, and less expensive than Archive but more than Hot for retrieval.
Recognizing these tradeoffs is key. Cool tier questions test your ability to map business requirements to technical configurations, and they reward candidates who understand the granularity of blob-level tier management and the financial implications of transaction costs and minimum duration penalties.
Practise Cool tier Questions
Test your understanding with exam-style practice questions.
Example Scenario
You are an IT administrator for a mid-sized company called 'GreenLeaf Media' that produces digital marketing content. The company has a large library of video files, everything from product demos to client testimonials. You are tasked with managing storage costs. Currently, all video files are stored in the Hot tier, and the monthly storage bill is very high. You need to reduce costs without losing any functionality.
Here is the scenario: The company's video files are grouped into three categories. First, there are 'In Production' videos, these are being edited and reviewed daily. They need to be accessed with low latency and modified frequently. Second, there are 'Completed Projects', these are final videos that have been delivered to clients. They are still accessible online for client viewing, but they are typically accessed only once per month or less. Third, there are 'Archived Projects', videos that are older than two years and are rarely accessed, but must be kept for legal compliance.
Your goal is to choose the correct Azure Blob Storage access tier for the 'Completed Projects' folder. The folder contains 2 TB of data. The videos in this folder are accessed on average once per month by clients who request a re-download. You check the access logs and see that there are about 100 read operations per day across all videos in this folder. The videos are never modified after they are finalized. The company wants the data to be instantly available to clients, no delays. They also want to minimize storage costs, but they cannot risk losing any data.
Based on this information, you decide to move all 'Completed Projects' blobs to the Cool tier. The reason is that the access frequency is low (once per month per video) and the data is not modified. Cool tier offers a significantly lower storage cost per GB compared to Hot tier. The 100 read operations per day translate into a manageable transaction cost, which is still far lower than the savings on storage. The instant availability requirement is met because Cool tier is an online tier, clients can download the videos immediately without any waiting for rehydration. The 30-day minimum storage duration is not a problem because these videos are retained indefinitely for client access.
You also configure an Azure lifecycle management policy to automatically move any blob that has not been accessed for 365 days to the Archive tier, further reducing costs. However, you set a rule to notify the team before any blobs are moved, so they can ensure that no actively used videos are accidentally archived.
As a result, the company reduces its monthly storage cost for 'Completed Projects' by approximately 60% compared to Hot tier. The retrieval cost increase is negligible because the number of read operations is low. The solution is both cost-effective and practical, meeting all business requirements. This scenario is a classic example of how Cool tier is used in real-world IT environments, and it represents the type of decision-making that the AZ-104 exam expects from candidates.
Common Mistakes
Moving all data to Cool tier to save money, without considering the access frequency.
If data is accessed frequently, multiple times per day, the higher read transaction costs of Cool tier can outweigh the storage cost savings, making the total cost higher than Hot tier.
Analyze access patterns before choosing a tier. Use Hot tier for data accessed daily. Use Cool tier only for data accessed infrequently (once a month or less). Use Azure Storage Analytics to measure access frequency.
Assuming that Cool tier provides the same latency as Hot tier for all operations.
Cool tier may have slightly higher latency for read operations because it is optimized for cost, not performance. For applications that require consistent low-latency reads, Hot tier is more appropriate.
Test the latency of Cool tier blobs in your environment. If your application requires sub-millisecond response times, stick with Hot tier. Use Cool tier for data that can tolerate a few hundred milliseconds of additional delay.
Deleting blobs from Cool tier within 30 days to avoid storage costs, thinking no penalty applies.
Azure charges an early deletion fee for blobs that are deleted, overwritten, or moved to another tier within 30 days of being placed in Cool tier. The fee is equivalent to the storage cost for the remaining days.
Plan data retention so that blobs remain in Cool tier for at least 30 days. Use lifecycle policies to automatically move blobs to Archive after 30 days if longer retention is needed, but do not delete blobs prematurely.
Setting the default access tier of a storage account to Cool and assuming all blobs will automatically be cost-optimized.
The default access tier only applies to new blobs. Existing blobs retain their original tier. Also, setting the default to Cool for all blobs ignores that some blobs may need Hot tier for performance reasons.
Only set the default access tier to Cool if the majority of new blobs are infrequently accessed. For existing blobs, use the 'Set Blob Tier' operation to change their tier individually. Use lifecycle management to automate tier transitions based on age.
Exam Trap — Don't Get Fooled
{"trap":"Choosing Cool tier for data that is accessed only once per year because the data must be 'instantly accessible for audit.'","why_learners_choose_it":"Learners see 'Cool' and think it is the cheapest tier that is still online. They also remember that Archive requires rehydration (hours), so they avoid it.
They choose Cool because it is online and cheaper than Hot.","how_to_avoid_it":"Understand that for data accessed only once per year, the storage cost savings of Archive tier (which is far lower than Cool) will outweigh the rehydration time and cost. You can rehydrate the data a few days before the audit.
Cool tier is not the cheapest online tier; Cold tier is cheaper, and Archive is the cheapest overall. Always choose the lowest cost tier that meets the access frequency and latency requirements. For annual access, Archive is the correct choice."
Step-by-Step Breakdown
Identify Data Access Pattern
Determine how often your data will be read and written. Use Azure Storage Analytics to measure read/write frequency. If data is accessed less than once per month, Cool tier is a candidate. This step is crucial because the tier choice directly impacts cost and performance.
Assess Minimum Retention Requirements
Check if you can keep the data in Cool tier for at least 30 days. If you plan to delete or overwrite it sooner, you will incur early deletion fees. If your data retention policy requires shorter retention, consider Hot tier or evaluate whether the early deletion cost is acceptable.
Calculate Total Cost of Ownership (TCO)
Compare the sum of storage cost (GB-month) plus transaction costs (read/write operations) plus any data transfer costs for Hot vs. Cool tier. Use the Azure Pricing Calculator. Cool tier may be cheaper even with higher transaction costs if the read frequency is low.
Choose the Access Tier at Blob Upload or Change Existing Blobs
When uploading a blob, set the x-ms-access-tier header to 'Cool.' For existing blobs, use the 'Set Blob Tier' operation via Azure portal, PowerShell, or CLI. Remember that changing tier incurs a write operation cost (for moving to Cool) and a read operation cost (for moving back to Hot).
Configure Lifecycle Management (Optional but Recommended)
Create a lifecycle management rule to automatically move blobs from Hot to Cool after a specified number of days (e.g., 30 days after last modification). You can also add rules to move blobs from Cool to Archive after a longer period (e.g., 365 days). This automates cost optimization.
Monitor and Adjust
After implementation, monitor the monthly bill and access patterns. If you notice that data in Cool tier is being accessed more frequently than expected, consider moving it back to Hot tier to avoid high transaction costs. Use Azure Advisor recommendations to identify further optimization opportunities.
Practical Mini-Lesson
When implementing Cool tier in a real-world Azure environment, the first thing you need to understand is that access tiers are applied at the blob level, not the storage account level. This means you can have a mix of Hot, Cool, Cold, and Archive blobs within the same storage account. The default access tier of the storage account only determines the tier for blobs that are uploaded without an explicit tier setting. Therefore, as a professional, you should always explicitly set the access tier for each blob based on its specific access pattern. This granularity allows for fine-grained cost control.
To configure the tier, you have several options. In the Azure portal, you can navigate to a blob, select 'Change tier' from the context menu, and choose 'Cool.' Using PowerShell, you can use the `Set-AzStorageBlobTier` cmdlet with the `-StandardBlobTier Cool` parameter. The CLI equivalent is `az storage blob set-tier --tier Cool`. These commands work on individual blobs or on a batch of blobs using a loop. Remember that changing a blob's tier incurs a write transaction cost. Moving from Hot to Cool costs a write operation per blob. Moving back from Cool to Hot costs a read operation plus a write operation. So avoid frequent tier changes.
Another critical practice is to use Azure lifecycle management policies. You can create rules that apply to a storage account or a specific container. For instance, a rule can say: 'If a blob has not been modified for 30 days, move it to Cool tier. If it has not been modified for 365 days, move it to Archive tier.' This automation is essential for large-scale environments where manual tier management is impractical. When setting up lifecycle rules, be aware that the rule evaluates blobs based on the 'last modification time' by default. If you want to use 'creation time' or 'last access time,' you need to enable blob access tracking, which is an additional cost. Also, lifecycle rules only apply to blobs that are in the Hot or Cool tiers; they do not apply to blobs already in Archive.
What can go wrong? The most common issue is cost overruns due to unexpected transaction costs. For example, a developer might write a script that reads all blobs in a Cool tier container every day for a backup check. This might seem like a small operation, but if you have 10,000 blobs, that is 10,000 read operations per day. Over a month, that is 300,000 read operations, which can add significant cost. The solution is to audit any automated processes that access Cool tier blobs. Another issue is data loss due to accidental deletion combined with the fact that Cool tier does not provide a separate delete protection mechanism, you need to use soft delete or versioning to protect against accidental deletion. Finally, always test the latency of Cool tier blobs for your specific application. While Microsoft guarantees 99.9% availability, the first-byte latency can vary. For time-sensitive applications, keep a representative set of blobs in Hot tier.
Professionals should also understand that Cool tier is not suitable for data that serves as the primary copy for disaster recovery. If you replicate data to another region using RA-GRS, the data in the secondary region will incur Cool tier charges if the primary blob is in Cool tier. Also, there are limits: blobs in Cool tier have the same maximum size (approx. 5 TB for block blobs) as other tiers, but the per-blob transaction costs can add up quickly if you have many small blobs. Consider combining small blobs into larger blobs (e.g., using AzCopy or a compression tool) to reduce the number of transactions. In practice, a well-designed tiering strategy can reduce storage costs by 50% or more, making it a critical skill for any Azure administrator.
Memory Tip
Think 'Cool = Lower Storage Cost, Higher Retrieval Cost, 30-day Minimum.' The 'Cool' name reminds you that the data is 'chilled', stored cold but still on ice (online).
Covered in These Exams
Current Exam Context
Current exam versions that test this topic — use these objectives when studying.
AZ-104AZ-104 →220-1101CompTIA A+ Core 1 →Related Glossary Terms
A/B testing is a controlled experiment that compares two versions of a single variable to determine which one performs better against a predefined metric.
An A record is a type of DNS resource record that maps a domain name to an IPv4 address.
AAA (Authentication, Authorization, and Accounting) is a security framework that controls who can access a network, what they are allowed to do, and tracks what they did.
An AAAA record is a DNS record that maps a domain name to an IPv6 address, allowing devices to find each other over the internet using the newer IP addressing system.
Frequently Asked Questions
Can I change a blob's tier from Cool to Hot after it is uploaded?
Yes, you can change a blob's tier at any time using the Azure portal, PowerShell, or CLI. However, changing from Cool to Hot incurs a read operation cost (to retrieve the data) plus a write operation cost (to write it to Hot tier). There are no penalties for moving up tiers, but you should minimize tier changes to avoid transaction costs.
What happens if I delete a blob from Cool tier after 10 days?
You will be charged an early deletion fee for the remaining 20 days (since the minimum storage duration is 30 days). The fee is calculated as the storage cost that would have been incurred for those 20 days. This discourages using Cool tier for temporary data.
Is Cool tier available for all Azure Storage account types?
No, Cool tier is only available for Blob Storage accounts and General Purpose v2 (GPv2) storage accounts. It is not available for General Purpose v1 (GPv1) accounts. If you have a GPv1 account, you must upgrade to GPv2 to use access tiers.
Does the Cool tier affect data durability or redundancy options?
No, Cool tier supports all the same redundancy options as Hot tier: LRS, ZRS, GRS, and RA-GRS. The durability remains 99.9999999999% (11 nines) regardless of the tier. The tier only affects cost, latency, and minimum retention requirements.
Can I use Cool tier for SQL Server backups in Azure?
Yes, you can store SQL Server backup files (usually .bak files) in Cool tier. However, be aware that restoring from Cool tier may have slightly higher latency than from Hot tier. Also, if you need to restore frequently, Hot tier may be more cost-effective due to lower transaction costs.
What is the difference between Cool tier and Cold tier?
Cold tier is a newer online access tier that is even cheaper than Cool tier for storage but has a longer minimum storage duration of 90 days and higher transaction costs. Cold tier is designed for data accessed once every 90 days or less. Cool tier is for data accessed every 30-90 days.
Summary
Cool tier is a critical component of Azure Blob Storage that enables cost-effective storage for data that is accessed infrequently, typically once per month or less. It offers significantly lower storage costs compared to Hot tier, but trades off with higher transaction costs and a 30-day minimum storage duration. The tier is online, meaning data is instantly accessible without any rehydration delay, but with slightly higher latency than Hot tier.
For IT professionals preparing for the AZ-104 exam, understanding Cool tier is not optional; it is a core objective. The exam tests your ability to choose the correct tier based on access patterns, calculate total cost of ownership including transaction and early deletion fees, and configure lifecycle management policies to automate tier transitions. Real-world practice involves using the Azure portal, PowerShell, or CLI to set blob tiers and creating lifecycle rules to optimize costs over time.
Common mistakes include moving all data to Cool tier without considering access frequency, assuming latency is identical to Hot tier, ignoring early deletion penalties, and misconfiguring default access tiers. The most important takeaway is that Cool tier is a strategic tool for balancing cost and performance, and a well-tiered storage solution can reduce cloud expenses by 40% or more. On the exam, remember the memory tip: 'Cool = Lower Storage Cost, Higher Retrieval Cost, 30-day Minimum.'
This will help you quickly identify the correct tier in scenario-based questions. By mastering Cool tier, you not only pass the exam but also gain a practical skill that directly saves money for any organization using Azure storage.