what is your idea about the following Paragraph
Object Storage is available in multiple regions and can store an infinite amount of storage. Most CSP provide cost per bit scaling pricing to their Object storage. Here you can customize the file organization and the metadata so that a specific file can be found easily. In AWS terms this would be an S3 Bucket. You can then grant permissions to other applications and users to access that bucket, having multiple instances allowed to retrieve the details in the same bucket.
Block storage is more akin to the harddrive disk of a computer, and are sold as such from CSPs. The Block storage represents the storage space you want to provide an instance for their required files and operation.
Lets say a company wants to spin up 50 Windows Vista machines for a new office branch to use. The Block storage would directly be assigned to each individual instance, requiring 50 individual Block Storage Drives. Once configured, that instance would use that Block storage drive to boot up windows, and store program data for those workspaces. However if there was a shared repository of files that the whole department needed to be able to access. These files can be stored in object storage, and all 50 workstations can be provisioned access to that one storage unit, or bucket.
| Object storage | Block Storage |
| It is just like a storage device where we can store some sort of data which common to all the instances of an Operating System. | It is just like a Hard disk of a computer where you can run more than one instances of an Operating System in one Storage area. |
| More than one instance can access it at anytime. | Files are stored in Object Storage |
| AWS S3 is the name of this service in AWS. |
what is your idea about the following Paragraph Object Storage is available in multiple regions and...