<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Abhishek Ramesh Pakhare</title>
    <description>The latest articles on DEV Community by Abhishek Ramesh Pakhare (@abhishekpakhare97).</description>
    <link>https://dev.to/abhishekpakhare97</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F192030%2Fc69f983f-1924-492b-b56f-ade0cc669e5c.jpeg</url>
      <title>DEV Community: Abhishek Ramesh Pakhare</title>
      <link>https://dev.to/abhishekpakhare97</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/abhishekpakhare97"/>
    <language>en</language>
    <item>
      <title>What is Amazon S3 bucket</title>
      <dc:creator>Abhishek Ramesh Pakhare</dc:creator>
      <pubDate>Tue, 11 Jan 2022 06:44:00 +0000</pubDate>
      <link>https://dev.to/abhishekpakhare97/what-is-amazon-s3-bucket-5dof</link>
      <guid>https://dev.to/abhishekpakhare97/what-is-amazon-s3-bucket-5dof</guid>
      <description>&lt;p&gt;S3 is relatively different from normal storage. It is an &lt;strong&gt;object storage&lt;/strong&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;What is an Object storage ?&lt;br&gt;
 Object storage is a data storage architecture for large stores of unstructured data. It designates each piece of data as an object, keeps it in a separate storehouse, and bundles it with metadata and a unique identifier for easy access and retrieval.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;S3 is an unstructured data that eliminates the problem scaling of limitless storage.&lt;/p&gt;

&lt;h4&gt;
  
  
  what is bucket ?
&lt;/h4&gt;

&lt;p&gt;A &lt;strong&gt;bucket&lt;/strong&gt; is a container for objects. An object is a file and any metadata that describes that file.&lt;/p&gt;


&lt;center&gt;&lt;strong&gt;OR&lt;/strong&gt;&lt;/center&gt;

&lt;p&gt;Bucket can be consider as folder and the object can be considered as file that you upload&lt;/p&gt;



&lt;h4&gt;
  
  
  Things to keep in mind while working with S3 :
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;If you want to modify a file on S3 then you need to modify that file on local and reupload it&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Bucket name should be globally unique across the AWS&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;maximum size of a single object can be 5TB&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;by default you can create 100 buckets per account but you can increase it upto 1000 according to your need&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;AWS will keep your data in 3 AZ(Availability Zone) for security purpose.&lt;br&gt;
For some reason if one of the AZ is down or crashed then you data is still secure in other two.&lt;/p&gt;

&lt;h3&gt;
  
  
  Types of S3 storage :
&lt;/h3&gt;

&lt;h4&gt;
  
  
  1. Amazon S3 Standard :
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;If you frequently want to do I/O operations or on hourly basis then S3 standard is best option.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  2. Amazon S3 Standard-Infrequent Access (Amazon S3 Standard-IA) :
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;If you are access data less frequently like in a week or in a month then S3 standard infrequent is best.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  3. Amazon S3 intelligent-Tiering :
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;At the time of storing the data you don't know how frequently you are going to access it then you can.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It will analyze the access pattern and then according that it will store the to S3 standard or on S3 standard-infrequent Access because it is costly to store data in S3 standard compare to S3 infrequent&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  4. Amazon S3 One Zone-Infrequent Access (Amazon S3 One Zone-IA) :
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;If you store data in a Region it will replicate your data in three availability zone in a region. but class won't store your data in 3 AZ's.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You can store non critical data in this.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  5. Amazon S3 Glacier :
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;If you want to access data in a month or a year then you can prefer this locations&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
  
  
  6. Amazon S3 Glacier Deep Archive :
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;If you want to store data for 7 to 10 years or more then that you can go with it&lt;/li&gt;
&lt;li&gt;it is the cheapest option in all the S3 classes&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I will be posting more content regarding AWS and many more make sure to follow me.&lt;/p&gt;

&lt;p&gt;Dev.to : &lt;a href="https://dev.to/abhishekpakhare97"&gt;https://dev.to/abhishekpakhare97&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Github : &lt;a href="https://github.com/AbhiPakhare"&gt;https://github.com/AbhiPakhare&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter : &lt;a href="https://twitter.com/abhi_pakhare_"&gt;https://twitter.com/abhi_pakhare_&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Linkedin : &lt;a href="https://www.linkedin.com/in/abhishek-pakhare/"&gt;https://www.linkedin.com/in/abhishek-pakhare/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>aws</category>
      <category>s3</category>
      <category>cloud</category>
      <category>storage</category>
    </item>
    <item>
      <title>Is there any way to put HTML code in Tooltip?</title>
      <dc:creator>Abhishek Ramesh Pakhare</dc:creator>
      <pubDate>Thu, 19 Dec 2019 16:56:58 +0000</pubDate>
      <link>https://dev.to/abhishekpakhare97/is-there-any-way-to-put-html-code-in-tooltip-2p44</link>
      <guid>https://dev.to/abhishekpakhare97/is-there-any-way-to-put-html-code-in-tooltip-2p44</guid>
      <description>

</description>
      <category>discuss</category>
      <category>html</category>
      <category>css</category>
    </item>
  </channel>
</rss>
