阅读更多

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类型是首选布尔类

  • 第三章 类型、变量及常量

    变量Pascal 变量在使用前必须声明,声明变量时必须指定一种数据类型。下面是变量声明的例子:var Value: Integer; IsCorrect: Boolean; A, B: Char;关键字var可以在许多地方使用,例如放在函数或过程的开始部分,用来声明函数或过程的局部变量;也可以放在单元中,用于声明全程变量。var关键字之后是一组变量名列表,每个变量

  • 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

  • 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 基础知识 6】常用的数据类型

    Delphi 支持多种数据类型,本文介绍一些常见的 Delphi 数据类型及其示例

  • Delphi语言的语法

    Delphi语言因其强大的开发能力和优雅的语法,成为了软件开发领域中一个重要的工具。自1995年首次发布以来,Delphi以其快速应用开发(RAD)的特性,迅速吸引了大量程序员的关注。本文将对Delphi的语法特点、应用领域及其在现代软件开发中的重要性进行深入探讨。

  • delphi中boolean转为string类型

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

  • 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...

  • delphi基本数据类型

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

  • delphi IfThen(boolean, '0', '1')

    IfThen(boolean, '0', '1')

  • 把boolean的值转化为string类型

    把boolean的值转化为string类型  编程语言 专业回答 Five00 2007-09-20 16:40 这么用,放在main方法中输出就可看到结果。 boolean b = true; String s = String.valueOf(b); System.out.println(s);

  • Delphi把窗体设为bsnone时如何拖动窗体

    大家在写程序的时候为了追求美观,习惯性的会把borderstyle设置为bsnone,这么一来窗体就会变成无边框,大家可以自己在角落画一个image插入美工做好的图片,自己弄最小、大化,关闭按钮。但是没有了原始边框,要怎么实现拖动窗体呢? 我自己想了一个很简单的方法,先在界面中插入一个控件,可以是button、panel、image等等只要能响应鼠标事件即可。最好是选择自己画的边框,也就是imag...

Global site tag (gtag.js) - Google Analytics