<?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: Raktim Yoddha</title>
    <description>The latest articles on DEV Community by Raktim Yoddha (@raktim_yoddha07).</description>
    <link>https://dev.to/raktim_yoddha07</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%2F892551%2Fc0f2362f-61d7-4494-a3df-4058c65143d5.jpg</url>
      <title>DEV Community: Raktim Yoddha</title>
      <link>https://dev.to/raktim_yoddha07</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/raktim_yoddha07"/>
    <language>en</language>
    <item>
      <title>AWS S3?</title>
      <dc:creator>Raktim Yoddha</dc:creator>
      <pubDate>Sat, 16 Jul 2022 09:48:26 +0000</pubDate>
      <link>https://dev.to/raktim_yoddha07/aws-s3-53cd</link>
      <guid>https://dev.to/raktim_yoddha07/aws-s3-53cd</guid>
      <description>&lt;h2&gt;
  
  
  What is AWS S3?
&lt;/h2&gt;

&lt;p&gt;Amazon S3 (Simple Storage Service) provides object storage, which is built for storing and recovering any amount of information or data from anywhere over the internet. It provides this storage through a web services interface. While designed for developers for easier web-scale computing, it provides 99.999999999 percent durability and 99.99 percent availability of objects. It can also store computer files up to 5 terabytes in size.&lt;/p&gt;

&lt;h2&gt;
  
  
  AWS S3 Benefits
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Durability&lt;/strong&gt; :  S3 provides 99.999999999 percent durability.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Security&lt;/strong&gt; : S3 offers an impressive range of access management tools and encryption features that provide top-notch security.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Low cost&lt;/strong&gt; : S3 lets you store data in a range of “storage classes.” These classes are based on the frequency and immediacy you require in accessing files. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Scalability&lt;/strong&gt; : S3 charges you only for what resources you actually use, and there are no hidden fees or overage charges. You can scale your storage resources to easily meet your organization’s ever-changing demands.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Availability&lt;/strong&gt; : S3 offers 99.99 percent availability of objects&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Flexibility&lt;/strong&gt; : S3 is ideal for a wide range of uses like data storage, data backup, software delivery, data archiving, disaster recovery, website hosting, mobile applications, IoT devices, and much more.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Simple data transfer&lt;/strong&gt; : You don’t have to be an IT genius to execute data transfers on S3. The service revolves around simplicity and ease of use.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  AWS Buckets and Objects
&lt;/h2&gt;

&lt;p&gt;An &lt;strong&gt;object&lt;/strong&gt; consists of data, key (assigned name), and metadata. A &lt;strong&gt;bucket&lt;/strong&gt; is used to store objects. When data is added to a &lt;strong&gt;bucket*8, Amazon S3 creates a unique version ID and allocates it to the **object&lt;/strong&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  How Does Amazon S3 work?
&lt;/h2&gt;

&lt;p&gt;First off, a user creates a bucket. When this bucket is created, the user will specify the region in which the bucket is deployed. Later, when files are uploaded to the bucket, the user will determine the type of S3 storage class to be used for those specific objects. After this, users can define features to the bucket, such as bucket policy, lifecycle policies, versioning control, etc.&lt;/p&gt;

</description>
      <category>aws</category>
      <category>cloud</category>
      <category>programming</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Access Files from AWS S3 Bucket Using NodeJs</title>
      <dc:creator>Raktim Yoddha</dc:creator>
      <pubDate>Sat, 16 Jul 2022 09:19:53 +0000</pubDate>
      <link>https://dev.to/raktim_yoddha07/access-files-from-aws-s3-bucket-using-nodejs-1p0m</link>
      <guid>https://dev.to/raktim_yoddha07/access-files-from-aws-s3-bucket-using-nodejs-1p0m</guid>
      <description>&lt;p&gt;&lt;strong&gt;Here we will learn how to &lt;em&gt;upload&lt;/em&gt; , &lt;em&gt;download&lt;/em&gt; and &lt;em&gt;delete&lt;/em&gt;&lt;br&gt;
files in AWS S3 bucket using NodeJs&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 1: Create a AWS account
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;First we need to create a AWS account if we don't have one&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You may create a free tier account but you need to fill your card details there&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Step 2: Initialize the Project
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Create a folder lets say 's3' in your desktop or wherever you&lt;br&gt;
want &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Open the terminal and direct their using cd command&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;cd desktop&lt;/li&gt;
&lt;li&gt;cd s3&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--sUjaqRBV--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5959ybx4amk7fts3nqo7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--sUjaqRBV--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5959ybx4amk7fts3nqo7.png" alt="Image description" width="388" height="52"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Now add npm json file in it

&lt;ul&gt;
&lt;li&gt;npm init -y&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Zc3rq-CO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rhpwsmi2rz4welyhj8uu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Zc3rq-CO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/rhpwsmi2rz4welyhj8uu.png" alt="Image description" width="548" height="52"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;create a file 'app.js' in the folder s3 &lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Step 3: Installing the required dependencies
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Install express, aws-sdk and multer in your folder i.e. s3

&lt;ul&gt;
&lt;li&gt;npm install express aws-sdk multer multer-s3 &lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--06szpxoa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/i2jt9451u2lxq9cwiehj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--06szpxoa--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/i2jt9451u2lxq9cwiehj.png" alt="Image description" width="880" height="88"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 4: S3 bucket setup
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Open the &lt;strong&gt;AWS&lt;/strong&gt; console &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Now Search S3 there and then open S3&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Click on Create bucket option&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Set name and region there and unselect☑️ 'block all public access'&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;select✅ 'Block public access to buckets and objects granted through new public bucket or access point policies' &lt;br&gt;
and 'Block public and cross-account access to buckets and objects through any public bucket or access point policies'&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Click on create bucket&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;congratulations your bucket is created&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 5: Create AWS Credentials
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;First click on 'Innominds'&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Then click on 'My security credentials'&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Then click on the 'Access key' and then 'Create New Access Key'&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You will get your access key there&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Step 6: Create .env file
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Create a .env file in your s3 folder&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Inside .env file enter:-&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;ACCESS_KEY = (your access key)&lt;/li&gt;
&lt;li&gt;ACCESS_SECRET = (your secret access key)&lt;/li&gt;
&lt;li&gt;REGION = (region of your bucket)&lt;/li&gt;
&lt;li&gt;BUCKET = (name of your bucket)&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Js5ipdJR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/mllnom421squdtx9fmta.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Js5ipdJR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/mllnom421squdtx9fmta.png" alt="Image description" width="748" height="332"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Step 7: Create a express server
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;create express server inside the file 'app.js'&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Don't forget to add .env file to your 's3' folder&lt;br&gt;
   -npm i dotenv&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Declare all the previously mentioned libraries like aws-sdk, multer, multer-s3 in your express server&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Step 8: Use muller with aws-sdk to acccess the file
&lt;/h2&gt;

&lt;h2&gt;
  
  
  Here is one standard Example for Express server:-
&lt;/h2&gt;

&lt;p&gt;require("dotenv").config()&lt;/p&gt;

&lt;p&gt;const express = require('express')&lt;/p&gt;

&lt;p&gt;const app = express();&lt;/p&gt;

&lt;p&gt;app.listen(3001);&lt;/p&gt;

&lt;p&gt;const aws = require('aws-sdk')&lt;br&gt;
const multer = require('multer')&lt;br&gt;
const multerS3 = require('multer-s3');&lt;/p&gt;

&lt;p&gt;aws.config.update({&lt;br&gt;
    secretAccessKey: process.env.ACCESS_SECRET,&lt;br&gt;
    accessKeyId: process.env.ACCESS_KEY,&lt;br&gt;
    region: process.env.REGION,&lt;/p&gt;

&lt;p&gt;});&lt;br&gt;
const BUCKET = process.env.BUCKET&lt;br&gt;
const s3 = new aws.S3();&lt;/p&gt;

&lt;p&gt;const upload = multer({&lt;br&gt;
    storage: multerS3({&lt;br&gt;
        s3: s3,&lt;br&gt;
        acl: "public-read",&lt;br&gt;
        bucket: BUCKET,&lt;br&gt;
        key: function (req, file, cb) {&lt;br&gt;
            console.log(file);&lt;br&gt;
            cb(null, file.originalname)&lt;br&gt;
        }&lt;br&gt;
    })&lt;br&gt;
})&lt;/p&gt;

&lt;p&gt;app.post('/upload', upload.single('file'), async function (req, res, next) {&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;res.send('Successfully uploaded ' + req.file.location + ' location!')
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;})&lt;/p&gt;

&lt;p&gt;app.get("/list", async (req, res) =&amp;gt; {&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;let r = await s3.listObjectsV2({ Bucket: BUCKET }).promise();
let x = r.Contents.map(item =&amp;gt; item.Key);
res.send(x)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;})&lt;/p&gt;

&lt;p&gt;app.get("/download/:filename", async (req, res) =&amp;gt; {&lt;br&gt;
    const filename = req.params.filename&lt;br&gt;
    let x = await s3.getObject({ Bucket: BUCKET, Key: filename }).promise();&lt;br&gt;
    res.send(x.Body)&lt;br&gt;
})&lt;/p&gt;

&lt;p&gt;app.delete("/delete/:filename", async (req, res) =&amp;gt; {&lt;br&gt;
    const filename = req.params.filename&lt;br&gt;
    await s3.deleteObject({ Bucket: BUCKET, Key: filename }).promise();&lt;br&gt;
    res.send("File Deleted Successfully")&lt;/p&gt;

&lt;p&gt;})&lt;/p&gt;

</description>
      <category>aws</category>
      <category>tutorial</category>
      <category>node</category>
      <category>javascript</category>
    </item>
    <item>
      <title>Amazon Web Services(AWS)</title>
      <dc:creator>Raktim Yoddha</dc:creator>
      <pubDate>Fri, 15 Jul 2022 17:31:10 +0000</pubDate>
      <link>https://dev.to/raktim_yoddha07/amazon-web-servicesaws-2m6g</link>
      <guid>https://dev.to/raktim_yoddha07/amazon-web-servicesaws-2m6g</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;What is AWS?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--_mFvaT7G--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/tu5bhow4tn9aexbif5nc.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--_mFvaT7G--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/tu5bhow4tn9aexbif5nc.jpg" alt="Image description" width="300" height="168"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You might be familiar with the term &lt;strong&gt;AWS&lt;/strong&gt;? But actually bit &lt;strong&gt;confused&lt;/strong&gt; what actually it is? &lt;/p&gt;

&lt;p&gt;Amazon Web Services aka &lt;strong&gt;AWS&lt;/strong&gt; is a secure cloud services platform offering nearly everything businesses need to build sophisticated applications with flexibility, scalability, and reliability. It is a “pay-as-you-go” billing model with no upfront or capital costs. &lt;/p&gt;

&lt;p&gt;It's basically a cloud provider–from infrastructure technologies like computing, storage, and databases–to emerging technologies, such as ML and AI, data lakes and analytics, and the IoT.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Why AWS is so successful?&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;In spite of having so many competitors like Azure, Google Cloud, IBM Cloud, Oracle Cloud, and many more still AWS is very popular because:-&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Security&lt;/strong&gt; :- AWS encrypt the data, offering end-to-end privacy and storage. AWS supports 80+ security standards and compliance certifications, more than 100 AWS services that are storing customer data offer the ability to encrypt that data, and all of this is backed by a deep set of cloud security tools, with 200+ security, compliance, and governance services and features. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Experience&lt;/strong&gt; :- Developers can rely on Amazon’s established processes. Their tools, techniques and suggested best practices are built upon years of experience. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Flexibility&lt;/strong&gt; :- There is great flexibility in AWS, allowing developers to select the OS language and database. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Ease of Use&lt;/strong&gt; :- AWS is easy to use. Developers can swiftly deploy and host applications, build new applications or migrate existing applications.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Scalability&lt;/strong&gt; :- Applications can be easily scaled up or down depending on user requirements. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Cost savings&lt;/strong&gt; - Companies only pay for the computing power, storage and resources used, with no long-term commitments. &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Commonly Used Services Provided by AWS&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Amazon EC2&lt;/strong&gt; ;- Providing secure compute capacity in the cloud, EC2 is resettable based on the user’s requirements. For instance, in a scenario in which web traffic varies, this service can expand its environment, behind the scenes, to three instances when required and then shrink to just one resource when load decreases. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Amazon Elastic Beanstalk&lt;/strong&gt; :- Made with a number of programming languages, this service helps scale and deploy web applications. Simply upload the code and Elastic Beanstalk automatically handles the deployment from capacity provisioning to load balancing to auto-scaling to application health monitoring.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Amazon Lightsail&lt;/strong&gt; - Simple to launch and manage, Amazon Lightsail is a virtual private server and includes everything needed to quickly launch a project on a virtual machine, like SSD-based storage, tools for data transfer, DNS management and a static IP.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Amazon Lambda&lt;/strong&gt; - Lambda allows companies to run code with no need for provisioning and managing servers. It scales automatically from a few requests per day to thousands per second. Companies only pay for the compute times used; there is no charge when the code is not running.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;AWS Storage Services&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Amazon S3&lt;/strong&gt; :- S3 can store and retrieve data from anywhere -- websites, mobile apps, IoT sensors and the like. It offers data management flexibility, durability and security for internet storage. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Amazon Glacier&lt;/strong&gt; :- A cloud storage service for archiving data and long-term backups, Glacier is a low-cost, highly secure option. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Amazon Elastic Block Store (EBS)&lt;/strong&gt; :-  EBS provides block store volumes for instances of EC2 and is a reliable storage volume that can be attached to any running instance in the same availability zone.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;AWS Databases&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Amazon RDS&lt;/strong&gt; :- Easing the process of setting up, operating and scaling a relational database in the cloud, Amazon RDS provides cost-efficient and resizable capacity while automating time-consuming administrative tasks such as hardware database setup, patching and backups. The service is optimized for memory performance and input/output operations.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Amazon Redshift&lt;/strong&gt; :- This data warehousing service enables users to analyze data using SQL and other business intelligence tools. It can run complex queries against terabytes of structured data and receive results in seconds.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Hope&lt;/strong&gt; this will help... &lt;/p&gt;

</description>
      <category>aws</category>
      <category>codenewbie</category>
      <category>cloud</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
