阅读更多

5顶
0踩

互联网
亚马逊发布了EC2的持久存储EBS(Elastic Block Store)。

自从使用EC2以来,应用跑在instance上,总是担心重启后会丢掉数据,中途也使用过PersistentFS来持久到S3上,但是毕竟不是官方的方法,这次官方发布了EBS,就可以帮忙解决很多问题。

Amazon EBS volumes can be created in any size between 1 GB and 1 TB, and multiple volumes can be attached to a single instance.

详细信息:
引用

Dear AWS Developer,

We are pleased to announce the release of a significant new Amazon EC2 feature, Amazon Elastic Block Store (EBS), which provides persistent storage for your Amazon EC2 instances. With Amazon EBS, storage volumes can be programmatically created, attached to Amazon EC2 instances, and if even more durability is desired, can be backed with a snapshot to the Amazon Simple Storage Service (Amazon S3).

Prior to Amazon EBS, block storage within an Amazon EC2 instance was tied to the instance itself so that when the instance was terminated, the data within the instance was lost. Now with Amazon EBS, users can chose to allocate storage volumes that persist reliably and independently from Amazon EC2 instances. Amazon EBS volumes can be created in any size between 1 GB and 1 TB, and multiple volumes can be attached to a single instance. Additionally, for even more durable backups and an easy way to create new volumes, Amazon EBS provides the ability to create point-in-time, consistent snapshots of volumes that are then stored to Amazon S3.

Amazon EBS is well suited for databases, as well as many other applications that require running a file system or access to raw block-level storage. As Amazon EC2 instances are started and stopped, the information saved in your database or application is preserved in much the same way it is with traditional physical servers. Amazon EBS can be accessed through the latest Amazon EC2 APIs, and is now available in public beta.

For more information on Amazon EBS and detail on how to start using this feature, please see the resources listed below:

    * Amazon EC2 Detail Page and Pricing
    * Amazon EC2 Developers Guide
    * Release Notes

We hope you enjoy this new feature and we look forward to your feedback.

Sincerely,

The Amazon EC2 team
来自: Gmail 邮件
5
0
评论 共 4 条 请登录后发表评论
4 楼 danfeihao 2011-04-12 17:36
EBS是指直接在Storage上划出一个空间,用来存储数据吗?应该没有虚拟化的概念在里面吧?
3 楼 20024804 2008-08-23 11:19
有人用过ec2吗?个人觉得太贵了,用不起
2 楼 jianyuesos 2008-08-22 16:28
不知道咱们国内现在还是不是在观望中。
1 楼 QQbyte 2008-08-22 11:01
不错,Amazon在云计算方面跑在前面啊。

发表评论

您还没有登录,请您登录后再发表评论

相关推荐

  • Delphi基本数据类型

    ● 自动类型转换:整数转小数,取值范围小的数据类型向取值范围大的数据类型转换。● 强制类型转换:小数转整数,取值范围大的数据类型向取值范围小的数据类型转换。

  • Delphi中布尔类型辨析

    ====================================================== 注:本文源代码点此下载 ====================================================== delphi中预定义的布尔类型有四种:boolean ,bytebool,wordbool,longbool。其中,boolean类型是首选布尔类

  • Delphi数据类型

    数据类型: (1)常用类型 ShortInt(char), Byte(BYTE,unsigned short), SmallInt(short) Word(unsigned short) *Real48(6字节浮点数) Integer,LongInt(int, long) Cardinal,LongWord/DWORD(unsigned long), Int64 (_int64)

  • Delphi中的布尔类型

    Delphi中定义了四种布尔类型:Boolean,ByteBool,WordBool和LongBool。后面三种布尔类型是为了与其他语言兼容而引入的,一般情况下建议使用Boolean类型。这四种类型的布尔值占用内存的数量如下:Boolean    1 ByteByteBool   1 ByteWordBool  2 Bytes(1 Word)LongBool   4 Bytes

  • Delphi 数据类型

     一、整数类型类型 所占字节数 取值范围byte 1 0-255word 2 0-65535shortint 1 -128-127smallint 2 -32768-32767integer 4 -214748648-214748467longint 4 -214748648-214748467cordinal 4 0-2147483647二、实数类型类型 所点字节数 取值范围Real 6 ±2.

  • C++中BYTE、WORD、DWORD、BOOL的故事

      (一)BYTE、WORD、DWORD   在Visual C++ 6.0中,BYTE与WORD,DWORD本质上都是一种无符号整型,它们在WINDEF.H中被定义,定义如下:          typedef unsigned char       BYTE;          typedef unsigned short      WORD;          typedef unsign...

  • bool与boolean、Long与long的区别

    C#:bool表示布尔值,是Boolean的别名;Java:boolean表示布尔值;C++:关键字-布尔变量,它的值只能有0或1或者true和false关键字;.net:Boolean表示布尔值。 long:默认值为0,0有时候是有意义的,比如说成绩为0;Long:默认为null,比如,没有成绩应该用Long。 转载于:https://www.cnblogs.com/ningxu/p/3...

  • delphi基本数据类型

    日志正文    Delphi的数据类型 标签: Delphi  数据类型  分类: Delphi2007-08-17 00:58<br />   从网上找到的一篇Delphi的数据类型的文章,分类还比较清晰,特转帖为blog<br />   一、基本数据类型<br />        1、整数类型<br />               通用类型:32位 Integer(有符号), Cardinal(无符号)<br />               具体类型:<br />                  

  • delphi中boolean转为string类型

    对delphi真是不够熟悉,今天写了一段代码,想调试下一个boolean值到底是多少,无奈对delphi的调试不会玩,就想难不住咱程序员的,直接messagebox输出白,又发现不知道boolean转string的函数        不得不在论坛上请教,发现CSDN上面解决问题就是快,呵呵。。。BoolToStr(False, True) 资料一:http://topic.csdn.net/u

  • Delphi 数据类型列表

    分类 范围 字节 备注 简单类型 序数 整数 Integer -2147483648 .. 2147483647 4 有符号32位 Cardinal 0 .. 4294967295 4 无符号32位 ...

  • byte 类型比较_Delphi基础教程图文版之数据类型(简单类型)

    对于初学编程这一段其实可以暂时跳过,但是出来混早晚要还的。学了一断时间后,你会发现数据类型很重要,特别是在你分析Delphi源码时长文预警……Delphi 中可以定义很多种数据类型,今天条先聊其中比较容易的的简单类型,其中包括:有序数据类型,实数类型和字符串类型。字符串类型比较特殊,等后面单开一篇来进行讲解有符号和无符号在上面的表格中很容易就注意到了这两个词,我自己在初次接触Delphi的时候很疑...

  • delphi基本语法(摘自博主:沈金强)

    delphi基本语法 本文参考自《delphi2010语法手册》 1. 工程文件结构 源文件联系着unit单元,delphi主模块源文件格式为.dpr,其他模块为.pas,一个完整程序由一个.dpr和若干.pas组成。 2..dpr 程序结构 一个.dpr由程序头、[use从句]、主程序块组成。一个典型工程文件如下: 1 program Project; 2 {$APPTY

  • Delphi format的用法

    一、Format函数的用法Format是一个很常用,却又似乎很烦的方法,本人试图对这个方法的帮助进行一些翻译,让它有一个完整的概貌,以供大家查询之用: 首先看它的声明:function Format(const Format: string; const Args: array of const): string; overload;事实上Format方法有两个种形式,另外一种是三个参数的,...

Global site tag (gtag.js) - Google Analytics