Os concurseiros
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.

      Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Explore these features while you wait
      Complete general settings
      Bookmark and like published notes
      Write a few more notes
      Complete general settings
      Write a few more notes
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Help
Menu
Options
Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.

    Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Explore these features while you wait
    Complete general settings
    Bookmark and like published notes
    Write a few more notes
    Complete general settings
    Write a few more notes
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # 💾 7. Armazenamento em Nuvem O **armazenamento em nuvem** é um dos pilares fundamentais da computação em nuvem. Ele permite que dados sejam guardados, acessados e gerenciados remotamente, de forma **escalável, segura e sob demanda**. Existem **três modelos principais** de armazenamento: 1. **Bloco** 2. **Arquivo** 3. **Objeto** Cada um deles atende a diferentes tipos de aplicação e necessidades de desempenho, custo e flexibilidade. --- ## 🔹 1. Armazenamento em Bloco O **armazenamento em bloco (Block Storage)** divide os dados em **blocos de tamanho fixo**, cada um identificado por um endereço único. Esses blocos podem ser gerenciados como **discos virtuais** anexados a instâncias (máquinas virtuais). ### ⚙️ Características - Baixa latência e alto desempenho. - Ideal para bancos de dados, sistemas de arquivos e aplicações transacionais. - Precisa de um sistema de arquivos (NTFS, ext4 etc.) para organização. - Cada volume é montado em **uma instância por vez**. ### 💡 Exemplos | Provedor | Serviço | |-----------|----------| | AWS | **EBS (Elastic Block Store)** | | Azure | **Managed Disks** | | GCP | **Persistent Disk** | 📘 **Analogia:** É como um **HD virtual** anexado à máquina. --- ## 🔹 2. Armazenamento em Arquivo O **armazenamento em arquivo (File Storage)** organiza os dados em **pastas e arquivos**, seguindo uma hierarquia tradicional (como um sistema local). É compartilhado entre várias instâncias por meio de protocolos de rede. ### ⚙️ Características - Ideal para múltiplos servidores acessando os mesmos dados. - Usa protocolos como **NFS** (Linux) e **SMB/CIFS** (Windows). - Simples de montar e compatível com aplicações legadas. ### 💡 Exemplos | Provedor | Serviço | |-----------|----------| | AWS | **EFS (Elastic File System)** / **FSx** | | Azure | **Azure Files** | | GCP | **Filestore** | 📘 **Analogia:** É como um **compartilhamento de rede** tradicional (ex: “pasta compartilhada”). --- ## 🔹 3. Armazenamento em Objeto O **armazenamento em objeto (Object Storage)** armazena os dados como **objetos completos** — cada um com: - O **dado em si (payload)**, - Metadados personalizados, - E um **identificador único (URI)**. Não há hierarquia de pastas: o acesso é feito via **API HTTP/HTTPS**, ideal para escalabilidade e grandes volumes de dados. ### ⚙️ Características - Altamente escalável e econômico. - Acesso via **REST API**. - Ideal para **backup, mídias, logs, big data e aplicações web**. - Cada objeto é imutável — alterações geram novas versões. ### 💡 Exemplos | Provedor | Serviço | |-----------|----------| | AWS | **S3 (Simple Storage Service)** | | Azure | **Blob Storage** | | GCP | **Cloud Storage (GCS)** | 📘 **Analogia:** É como um **repositório na internet**, onde cada arquivo é acessado por um link único. --- ## 🔹 Comparativo Geral | Característica | Bloco | Arquivo | Objeto | |----------------|--------|----------|----------| | Estrutura | Blocos binários | Hierarquia de pastas | Objetos com metadados | | Acesso | Via sistema de arquivos local | Via protocolo NFS/SMB | Via API (HTTP/HTTPS) | | Performance | Alta (baixa latência) | Média | Variável (depende da API) | | Escalabilidade | Limitada ao volume | Moderada | Muito alta | | Uso típico | Banco de dados, VM, sistemas transacionais | Compartilhamento de dados, aplicações legadas | Backup, mídia, big data | | Exemplos | EBS, Azure Disk, Persistent Disk | EFS, FSx, Azure Files | S3, Blob, GCS | --- # 🧠 Questões de Concurso ### (1) [CESPE – SERPRO – 2021] O **armazenamento em bloco** é comumente utilizado em bancos de dados e sistemas operacionais devido à sua baixa latência e estrutura similar a discos locais. **( ) Certo ( ) Errado** <details> <summary>💬 Resposta e explicação</summary> ✅ **Certo.** O armazenamento em bloco funciona como um disco virtual, ideal para operações intensivas e de alta performance, como bancos de dados. </details> --- ### (2) [FGV – TCE/PR – 2022] O **armazenamento em objeto** é indicado para: a) Aplicações que exigem acesso de baixa latência. b) Backup, mídia e dados não estruturados em grande escala. c) Ambientes que utilizam NFS. d) Máquinas virtuais em execução. <details> <summary>💬 Resposta e explicação</summary> ✅ **b) Backup, mídia e dados não estruturados em grande escala.** O modelo de objeto é otimizado para alta escalabilidade e acesso via API, ideal para arquivos grandes e imutáveis. </details> --- ### (3) [FCC – TRE/SP – 2019] No contexto de armazenamento em nuvem, o serviço **Amazon S3** é classificado como: a) Armazenamento em bloco b) Armazenamento em arquivo c) Armazenamento em objeto d) Armazenamento local <details> <summary>💬 Resposta e explicação</summary> ✅ **c) Armazenamento em objeto.** O S3 usa modelo baseado em objetos com metadados e acesso via HTTP/HTTPS. </details> --- ### (4) [CESPE – Dataprev – 2022] O **EFS (Elastic File System)** da AWS é um serviço de armazenamento baseado em **arquivos**, que pode ser montado simultaneamente em várias instâncias EC2. **( ) Certo ( ) Errado** <details> <summary>💬 Resposta e explicação</summary> ✅ **Certo.** O EFS é um sistema de arquivos compartilhado (NFS) acessível por múltiplas instâncias EC2. </details> --- ### (5) [CESGRANRIO – Petrobras – 2023] Assinale a alternativa correta sobre os **tipos de armazenamento em nuvem**: a) O armazenamento em bloco é o mais adequado para armazenamento de grandes volumes de objetos estáticos. b) O armazenamento em arquivo é acessado via APIs REST. c) O armazenamento em objeto é o mais escalável e acessado via HTTP. d) O armazenamento em bloco dispensa sistema de arquivos. <details> <summary>💬 Resposta e explicação</summary> ✅ **c) O armazenamento em objeto é o mais escalável e acessado via HTTP.** Esse modelo é projetado para alta escalabilidade e distribuído globalmente. </details> --- # 📘 Referências - AWS Storage Overview: [https://aws.amazon.com/products/storage](https://aws.amazon.com/products/storage) - Azure Storage Docs: [https://learn.microsoft.com/azure/storage](https://learn.microsoft.com/azure/storage) - Google Cloud Storage: [https://cloud.google.com/storage](https://cloud.google.com/storage) - NIST Cloud Computing Reference Architecture (NIST SP 500-292) ---

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password
    or
    Sign in via Google Sign in via Facebook Sign in via X(Twitter) Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    By signing in, you agree to our terms of service.

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully