腾讯云 DCDB for TDSQL. Best Practices 产品文档

Size: px
Start display at page:

Download "腾讯云 DCDB for TDSQL. Best Practices 产品文档"

Transcription

1 腾讯云 DCDB for TDSQL Best Practices 产品文档

2 版权声明 腾讯云版权所有 本文档著作权归腾讯云单独所有, 未经腾讯云事先书面许可, 任何主体不得以任何形式复制 修改 抄袭 传 播全部或部分本文档内容 商标声明 及其它腾讯云服务相关的商标均为腾讯云计算 ( 北京 ) 有限责任公司及其关联公司所有 本文档涉及的第三方 主体的商标, 依法由权利人所有 服务声明 本文档意在向客户介绍腾讯云全部或部分产品 服务的当时的整体概况, 部分产品 服务的内容可能有所调整 您所购买的腾讯云产品 服务的种类 服务标准等应由您与腾讯云之间的商业合同约定, 除非双方另有约定, 否则, 腾讯云对本文档内容不做任何明示或模式的承诺或保证 第 2 页共 25 页

3 文档目录 文档声明... 2 Programming and Usage Specification... 4 Import from Standalone Instance to Distributed Instances Choose DCDB Instance and Sharding Configuration Import Between Distributed Instances 第 3 页共 25 页

4 Programming and Usage Specification Programming and Usage Specification of Distributed Version DCDB refers to DCDB for Percona and MariaDB, unless otherwise specified in this document. 1. Overview 1.1 Introduction to Distributed Solution DCDB for Percona and MariaDB is a distributed database deployed on Tencent Cloud's public cloud. It is compatible with MySQL protocol and syntax and supports automatic horizontal split. With distributed database, a logic database table is acquired as a whole and then at backend, is evenly split into multiple shards and distributed to multiple physical nodes. Currently, DCDB for Percona and MariaDB deploys master/slave architecture by default and provides complete solutions for disaster recovery, backup, recovery, monitoring, migration, and so on. It is suitable for massive database scenarios at TB or PB level. DCDB for Percona and MariaDB supports horizontal split, which is a distributed solution to split the data of a table to multiple databases (hosts) according to the logic of the data. This solution is also called horizontal data sharding. 1.2 Glossary DCDB for Percona and MariaDB: It is a distributed version of DCDB and is named DCDB in short in the follow-up document where does not involve other engines. Vertical split: Tables are classified according to business logic and distributed to different databases to share the pressure of single database. Horizontal split: Instead of being classified, tables are split to different databases in certain rules. Each database is a shard containing only a part of data. 第 4 页共 25 页

5 Sharding rules: Or data split rules. As relational database is a two-dimensional model, two split methods are available: Manually split by a regular field, such as date ( for example, 2015 and 2016 can be considered as a shard respectively), user's ID card number... Hash a specific field and distribute data to different databases according to the specified field, which is called ShardKey Instance: Multiple logically unified shards compose a logic instance. Shard: A physical-logic instance consists of database engines including "a master node (Master), some slave nodes (Slave_n), and some remote slave nodes (Watcher_m)". Node: It is a physical device carrying shards. Node could be a physical machine, a virtual machine or a small cluster. Logic table: Horizontal split is a physical split. While logically, the split database or database table is still a complete database table. proxy: With Tproxy, DCDB achieves automatic databases and tables splitting, manages the underlying physical database instances and provides a unique service port that is compatible with mysql database. shard: It is a physical database instance. A logical instance that is visible to users is composed of multiple physical instances. 2. Usage Specification 2.1 Database Connection DCDB provides a unique IP and its ports can be accessed and used by users, for example: mysql -h P3306 -utest12 -ptestpassword 第 5 页共 25 页

6 2.2 Overview of Incompatibility You should specify the shardkey (a sharding field) when create a table. A sample code is as follows: create table test(a int, b int, ) shardkey=b Cross-node "join" and "transaction" A batch operation like batch insert will fail when data is split into two different shards. It only supports the batch operation when the value of shardkey is always same. View, storage procedure, trigger Self-built partition It does not support the version below MySQL 3.4.0, SSL, and compression protocol. Compatibility: Compatibility Description Creating a Table When creating a table, you must specify the value of shardkey at the end, which is a field name in the table used for SQL routing selection: mysql> create table test1 ( a int, b int, c char(20) ); ERROR 1005 (07000): Proxy Warning - sql is not legal,tokenizer_gram went wrong mysql> create table test1 ( a int, b int, c char(20) ) shardkey=a; Query OK, 0 rows affected (1.56 sec) The field of "shardkey" has the following restrictions: 1. If there is a primary key or a unique index, "shardkey" must be a part of the primary key and all unique indexes; 2. If it contains multiple unique indexes (including primary key), these indexes must have an intersection field that is the "shardkey"; 第 6 页共 25 页

7 3. The type of "shardkey" must be int, bigint, smallint/char/varchar; 4. The value of "shardkey" should not contain Chinese characters. Otherwise, different character sets could be routed to different partitions because the gateway cannot convert character set; 5. Do not update the value of "shardkey"; 6. Put "shardkey=a" at the end of sql Ordinary sql select: It is recommended to contain the "shardkey" field. If the field is not contained, you need to scan the whole table, and then the gateway aggregates the result set. But this will cause a great impact on performance: mysql> select * from test1 where a=2; a b c record2 2 4 record rows in set (0.00 sec) insert/replace: Field "must" contain "shardkey", or the sql will not be executed. Because the proxy cannot confirm which shard should be inserted into: mysql> insert into test1 (b,c) values(4,"record3"); ERROR 1105 (07000): Proxy Warning - sql have no shardkey mysql> insert into test1 (a,c) values(4,"record3"); Query OK, 1 row affected (0.01 sec) delete/update: When we execute this kind of sql, for safety, the sql "must" contain "where" conditions, or it will not be executed: 第 7 页共 25 页

8 mysql> delete from test1; ERROR 1005 (07000): Proxy Warning - sql is not legal,tokenizer_gram went wrong mysql> delete from test1 where a=1; Query OK, 1 row affected (0.01 sec) join join: Currently, DCDB only supports the join operation in a single shard. This means all sqls in a transaction must be based on the same shard, so the shardkey must be specified. mysql> create table test1 ( a int, b int, c char(20) ) shardkey=a; Query OK, 0 rows affected (1.56 sec) mysql> create table test2 ( a int, d int, e char(20) ) shardkey=a; Query OK, 0 rows affected (1.46 sec) mysql> insert into test1 (a,b,c) values(1,2,"record1"),(2,3,"record2"); Query OK, 2 rows affected (0.02 sec) mysql> insert into test2 (a,d,e) values(1,3,"test2_record1"),(2,3,"test2_record2"); Query OK, 2 rows affected (0.02 sec) mysql> select * from test1 join test2 on test1.a=test2.a; ERROR 1105 (07000): Proxy Warning - join shardkey error mysql> select * from test1 join test2 on test1.a=test2.a where test1.a=1; a b c a d e record1 1 3 test2_record row in set (0.00 sec) 第 8 页共 25 页

9 Note: The statement mysql> select * from test1 join test2 on test1.a=test2.a; will be supported in subsequent versions, but with the following preconditions: 1. Must be inner join 2.The "where" condition of inner join must be that the "shardkey" of two tables are equal Transactions DCDB supports transactions in a single shard, which means all sqls in a transaction must be based on the same shard mysql> select * from test1; a b c record2 1 2 record rows in set (0.00 sec) mysql> begin; Query OK, 0 rows affected (0.00 sec) mysql> insert into test1 (a,b,c) values(2,4,"record3"); Query OK, 1 row affected (0.00 sec) mysql> insert into test1 (a,b,c) values(1,4,"record3"); ERROR 1105 (07000): Proxy ERROR - In transaction,this sql use a diffent backend 第 9 页共 25 页

10 mysql> select * from test1; ERROR 1105 (07000): Proxy ERROR - In transaction,this sql use more than one backend mysql> rollback; Query OK, 0 rows affected (0.01 sec) Note: Subsequent versions will support part of simple DML statements Auto-increment Field DCDB supports auto-increment field in a certain sense to ensure that a field is globally unique, but monotonic increment is not ensured. Specific usage is as shown below: Create: create table auto_inc ( a int,b int,c int auto_increment,d int) shardkey=d; Insert: mysql> insert into shard.auto_inc ( a,b,d,c) values(1,2,3,0),(1,2,3,0); Query OK, 2 rows affected (0.01 sec) Records: 2 Duplicates: 0 Warnings: 0 mysql> select * from shard.auto_inc; a b c d rows in set (0.01 sec) 第 10 页共 25 页

11 Note that when the proxy is scheduling the processes of switching, restarting and others, there could be void in auto-increment field, for example: mysql> insert into shard.auto_inc ( a,b,d,c) values(11,12,13,0),(21,22,23,0); Query OK, 2 rows affected (0.03 sec) mysql> select * from shard.auto_inc; a b c d rows in set (0.01 sec) Modify the current value alter table auto auto_increment=100 The current version does not support the auto-increment field as shardkey, but subsequent versions will support SQL Command Restrictions Currently, DCDB supports the sql commands as follows: 1. delele, update, insert, replace, select 第 11 页共 25 页

12 2. alter, create, drop, truncate 3. show, describe (desc, explain), help 4. start, begin, commit, rollback, savepoint 5. set Note: For general sql used to query the information of database status, proxy will sent a default shard. In this case, if you query the statistics information, the result is the information of a single shard Restrictions on User Permission You cannot use sql command to configure user permission through the proxy, please go to Tencent Cloud Console -> Cloud Database -> DCDB -> Management to operate Other Unsupported MySQL features 1. Cross-node join and transaction (Note that join and transaction can be supported when they are not cross-code and use same shardkey in data operation) 2. View, storage procedure, trigger 3. Self-built partition 4. Batch data import: It does not support the sql like "load data local infile", which needs to be converted to "insert" statement, such as "insert into values (xxx,xxx), (xxx,xxx)"; 5. Sub-query, "having" clause Restrictions on Aggregate Functions 1. If you aggregate after "distinct", "where" condition must contain "shardkey": For example: select count(distinct a), sum(distinct a), avg(distinct a) from table where sk=\*\* 第 12 页共 25 页

13 2. If distinct, order by, group by are followed by a function, the function must appear in the "select" field and must be defined by an alias which is used after corresponding "distinct", "order by" and "group by": For example: select concat(...) as substr from table where... order by substr 3. The "group by" field must be contained in the "select" field: For example: select count(a),b from test group by b, where "select" field must contain the "b" field 第 13 页共 25 页

14 Import from Standalone Instance to Distributed Instances 1. Overview of Data Import Distributed architecture of distributed database is transparent to users, so generally, you only need to create table structure first. Then you can migrate data using MySQL client, such as mysqldump, Navicat and SQLyog. Procedures of migration are as follows: Step 1: Prepare import and export environment Step 2: Export the table structure and data of the source table Step 3: Modify the statement for creating table and create table structure in the destination table Step 4: Import data 2. Prepare import and export environment Before migrating data, you need to get the following prepared: CVM 2-core CPU, MEM 8 GB, Disk 500 GB+ (depending on data volume) (recommended) Linux MySQL client installed If the data volume is small (<10 GB), you can also import it directly via public network (Internet) with nothing to be prepared. DCDB: Select expected volume and make initialization according to the source library character set, table name case status and the value of innodb_page_size. Create an account with all global permissions enabled (recommended) Use public IP if necessary 3. Export the table structure and data of the source table 3.1 Demonstration environment Operating database: caccts 第 14 页共 25 页

15 Operating table: t_acct_water_0 Source database: single instance mysql Destination database: DCDB for Percona, MariaDB 3.2 Export table structure in the source database Execute mysqldump -u username -p password -d dbname tablename > tablename.sql to export table structure //Command example mysqldump -utest -ptest1234 -d -S /data/4003/prod/mysql.scok caccts t_acct_water_0 > table.sql 3.2 Export table data in the source database Execute mysqldump -c -u username -p password dbname tablename > tablename.sql to export table structure //Command example mysqldump -c -t -utest -ptest1234 -S /data/4003/prod/mysql.scok caccts t_acct_water_0 > data.sql Note: Data must be exported through mysqldump with parameter -c in order to get data with column name field. Sql without column name field will not be accepted by DCDB for Percona and MariaDB. Parameter -t specifies that only table data will be exported and table structure will not. 第 15 页共 25 页

16 3.3 Upload files to a directory on CVM Before uploading, you need to enable CVM public IP and read the CVM file upload guideline: File Upload from Linux Machine Using SCP. You should upload at least the following exported contents: Table structure sql: table.sql Data sql: data.sql 4. Modify the statement for creating table and create table structure in the destination table Open the exported table structure file table.sql, add primary key and shardkey through statements like the followings, and save as tablenew.sql. Pay attention to shardkey selection techniques and notes: CREATE TAbLE ( column name 1 data type, column name 2 data type, column name 3 data type,..., PRIMARY KEY('column name n')) ENGINE=INNODB DEFAULT CHARSET=xxxx shardkey=keyname Note: Primary key and shardkey must be set. Pay attention to the table name case status. It is recommended to delete redundant notes, or the table may not be created. 第 16 页共 25 页

17 5. Import data 5.1 Connect to DCDB for Percona and MariaDB instance 第 17 页共 25 页

18 On CVM, use mysql -u username -p password -h IP -P port to log in to MySQL server, and use use dbname to enter the database. Note: You may need to create a database first. 5.2 Import table structure Use the uploaded file and import data with source command. 1. Import table structure: source /file path/tablenew.sql 2. Import data: source /file path/data.sql 3. Verify the import result: select count(*) from tablename 第 18 页共 25 页

19 Note: You need to import table creation statement before importing data. You can also import sql directly using the source command in mysql. 6. Others Generally, you can import data smoothly as long as you have created the corresponding table structure with shardkey specified in the destination table before importing data. 第 19 页共 25 页

20 Choose DCDB Instance and Sharding Configuration Overview of DCDB selection DCDB is made up of shards. The specification and number of shards determine the processing abilities of DCDB instances. Theoretically, DCDB instance read and write concurrency performance = (performance of a shard with certain specification * number of the shards) DCDB instance transaction performance = (transaction performance of a shard with certain specification 70% number of the shards) Therefore, high specification and large quantity of shards means strong processing ability to the instance. The sharding performance of a DCBD instance is mainly related to CPU/memory and measured by QPS. Specific performance indicators can be found in the sharding performance part. How to decide on DCDB shard specification Specification of DCDB shard is determined by three factors: performance, capacity and other requirements. Performance: By predicting the performance capacity and possible increments for at least six months, you can define the total CPU/memory size required for your distributed instance. Capacity: By predicting the disk capacity and possible increments for at least one year, you can define the total disk size required for your distributed instance. Other requirements: That one shard stores at least 50 million lines of data is recommended. broadcast table and single table, join and other businesses within the node shall also be considered. Note: It is recommended to ensure high specification for single shard with relatively small quantity of shards. 第 20 页共 25 页

21 Judging from the above, we recommend to you the following policies based on the predicted business models: For functional testing and no special performance requirements: 2 shards, and the specification for each one: memory: 2 GB, disk: 25 GB. In initial stage of business, total size of data is small but grows fast: 2 shards, and the specification for each one: memory: 16 GB, disk: 200 GB. In stable development stage, sharding is based on actual business conditions: 4 shards, and the specification for each one: current business peak * growth rate / 4. Test of DCDB Sharding Performance Database benchmark performance test is for modifying descriptions of sysbench 0.5: otlp script in sysbench is modified; read/write ratio is set to 1:1 and controlled by executing test command parameters "oltp_point_selects" and "oltp_index_updates". All test cases in this document do 4 Select operations and 1 Update operation, and keep read/write ratio to 4:1. vcpu (Core) Memory Storage Data set Number of Number of QPS TPS (GB) Space (GB) (GB) clients concurrence in single client 1 2 GB 100 GB 46 GB GB 200 GB 76 GB GB 200 GB 142 GB GB 400 GB 238 GB GB 700 GB 238 GB GB 1 T 378 GB GB 1.5 T 378 GB GB 2 T 378 GB GB 3 T 567 GB GB 6 T 567 GB TPS is a single TPS, but not a distributed transaction TPS. 第 21 页共 25 页

22 According to the requirements on operation policies, current DCDB instances (or part of them) adopt the policy of excess usage of idle resources, so CPU utilization may exceed 100% on your monitoring screen. 第 22 页共 25 页

23 Import Between Distributed Instances Since the solution for data importing from one distributed database to another is special, we take mysqldump as an example to summarize the importing steps as follows: Step 1: Install mysqldump (MariaDB version) Purchase linux CVM and use yum install mariadb-server to install mysqldump. Step 2: Export the table structure of the source database mysqldump --no-tablespaces --default-character-set=utf8 --hex-blob --skip-add-drop-table -c --skip-lock-tables --skip-opt --skip-triggers --skip-comments --skip-tz-utc --skip-extended-insert --skip-disable-keys --skip-quote-names --no-data -uusername -ppassword -hxxx.xxx.xxx.xxx -Pxxxxx dbname grep -v '^\/\*\!40' > schema.sql; Note: --default-character-set=utf8 will be set based on your source table. -uusername is an account with permissions (-u: keyword). -ppassword is a password (-p: keyword). -hxxx.xxx.xxx.xxx -Pxxxxx is the IP and port of the database instance. dbname is the database name. Filter /!40.../ statements out with grep, because they are not supported in DCDB. Step 2: Export the table data of the source database 第 23 页共 25 页

24 mysqldump --no-tablespaces --default-character-set=utf8 --hex-blob --skip-add-drop-table -c --skip-lock-tables --skip-opt --skip-triggers --skip-comments --skip-tz-utc --skip-extended-insert --skip-disable-keys --skip-quote-names --no-create-info -uandelwu -pandelwu -hxxx.xxx.xxx.xxx -Pxxxxx dbname grep -v '^\/\*\!40' > data.sql; Note: --default-character-set=utf8 will be set based on your source table. -uusername is an account with permissions (-u: keyword). -ppassword is a password (-p: keyword). -hxxx.xxx.xxx.xxx -Pxxxxx is the IP and port of the database instance. dbname is the database name. Filter /!40.../ statements out with grep, because they are not supported in DCDB. Step 3: Create a database in the destination database mysql --default-character-set=utf8 -uusername -ppassword -hxxx.xxx.xxx.xxx -Pxxxxx -e "create database dbname;"; Note: --default-character-set=utf8 will be set based on your destination table. -uusername is an account with permissions (-u: keyword). -ppassword is a password (-p: keyword). -hxxx.xxx.xxx.xxx -Pxxxxx is the IP and port of the database instance. dbname is the database name. Step 4: Import table structure in the destination database+ 第 24 页共 25 页

25 Powered by TCPDF ( Best Practices 产品文档 mysql --default-character-set=utf8 -uusername -ppassword -hxxx.xxx.xxx.xxx -Pxxxxx dbname < schema.sql Note: --default-character-set=utf8 will be set based on your destination table. -uusername is an account with permissions (-u: keyword). -ppassword is a password (-p: keyword). -hxxx.xxx.xxx.xxx -Pxxxxx is the IP and port of the database instance. dbname is the database name. Step 5: Import table data in the destination database mysql --default-character-set=utf8 -uusername -ppassword -hxxx.xxx.xxx.xxx -Pxxxxx dbname < data.sql Note: If auto-increment field is used in the source table and error "Column 'xx' specified twice" occurred while importing data, you need to delete the backquotes in the autoincrement field (cat schema.sql tr "`" " " > schema_tr.sql) of schema.sql, drop database, and then repeat steps 3 to 5 using the modified schema_tr.sql. 第 25 页共 25 页

腾讯云 DCDB for TDSQL. Development Manual 产品文档

腾讯云 DCDB for TDSQL. Development Manual 产品文档 腾讯云 DCDB for TDSQL Development Manual 产品文档 版权声明 2015-2016 腾讯云版权所有 本文档著作权归腾讯云单独所有, 未经腾讯云事先书面许可, 任何主体不得以任何形式复制 修改 抄袭 传 播全部或部分本文档内容 商标声明 及其它腾讯云服务相关的商标均为腾讯云计算 ( 北京 ) 有限责任公司及其关联公司所有 本文档涉及的第三方 主体的商标, 依法由权利人所有

More information

ZWO 相机固件升级参考手册. ZWO Camera Firmware Upgrade reference manual. 版权所有 c 苏州市振旺光电有限公司 保留一切权利 非经本公司许可, 任何组织和个人不得擅自摘抄 复制本文档内容的部分或者全部, 并

ZWO 相机固件升级参考手册. ZWO Camera Firmware Upgrade reference manual. 版权所有 c 苏州市振旺光电有限公司 保留一切权利 非经本公司许可, 任何组织和个人不得擅自摘抄 复制本文档内容的部分或者全部, 并 ZWO 相机固件升级参考手册 ZWO Camera Firmware Upgrade reference manual 文档编号 :ZW1802240ACSC ZWO Co., Ltd. Phone:+86 512 65923102 Web: http://www.zwoptical.com 版权所有 c 苏州市振旺光电有限公司 2015-2035 保留一切权利 非经本公司许可, 任何组织和个人不得擅自摘抄

More information

H3C CAS 虚拟机支持的操作系统列表. Copyright 2016 杭州华三通信技术有限公司版权所有, 保留一切权利 非经本公司书面许可, 任何单位和个人不得擅自摘抄 复制本文档内容的部分或全部, 并不得以任何形式传播 本文档中的信息可能变动, 恕不另行通知

H3C CAS 虚拟机支持的操作系统列表. Copyright 2016 杭州华三通信技术有限公司版权所有, 保留一切权利 非经本公司书面许可, 任何单位和个人不得擅自摘抄 复制本文档内容的部分或全部, 并不得以任何形式传播 本文档中的信息可能变动, 恕不另行通知 H3C CAS 虚拟机支持的操作系统列表 Copyright 2016 杭州华三通信技术有限公司版权所有, 保留一切权利 非经本公司书面许可, 任何单位和个人不得擅自摘抄 复制本文档内容的部分或全部, 并不得以任何形式传播 本文档中的信息可能变动, 恕不另行通知 目录 1 Windows 1 2 Linux 1 2.1 CentOS 1 2.2 Fedora 2 2.3 RedHat Enterprise

More information

上汽通用汽车供应商门户网站项目 (SGMSP) User Guide 用户手册 上汽通用汽车有限公司 2014 上汽通用汽车有限公司未经授权, 不得以任何形式使用本文档所包括的任何部分

上汽通用汽车供应商门户网站项目 (SGMSP) User Guide 用户手册 上汽通用汽车有限公司 2014 上汽通用汽车有限公司未经授权, 不得以任何形式使用本文档所包括的任何部分 上汽通用汽车供应商门户网站项目 (SGMSP) User Guide 用户手册 上汽通用汽车有限公司 2014 上汽通用汽车有限公司未经授权, 不得以任何形式使用本文档所包括的任何部分 SGM IT < 上汽通用汽车供应商门户网站项目 (SGMSP)> 工作产品名称 :< User Guide 用户手册 > Current Version: Owner: < 曹昌晔 > Date Created:

More information

EMP2 SERIES. mpcie to Serial COM User Manual. Rev 1.3

EMP2 SERIES. mpcie to Serial COM User Manual. Rev 1.3 EMP2 SERIES mpcie to Serial COM User Manual Rev 1.3 Copyright Information Innodisk is trademark or registered trademark of Innodisk Corporation. This document is subject to change and revision without

More information

Declaration of Conformity STANDARD 100 by OEKO TEX

Declaration of Conformity STANDARD 100 by OEKO TEX Declaration of Conformity STANDARD 100 by OEKO TEX OEKO-TEX - International Association for Research and Testing in the Field of Textile and Leather Ecology OEKO-TEX - 国际纺织和皮革生态学研究和检测协会 Declaration of

More information

如何查看 Cache Engine 缓存中有哪些网站 /URL

如何查看 Cache Engine 缓存中有哪些网站 /URL 如何查看 Cache Engine 缓存中有哪些网站 /URL 目录 简介 硬件与软件版本 处理日志 验证配置 相关信息 简介 本文解释如何设置处理日志记录什么网站 /URL 在 Cache Engine 被缓存 硬件与软件版本 使用这些硬件和软件版本, 此配置开发并且测试了 : Hardware:Cisco 缓存引擎 500 系列和 73xx 软件 :Cisco Cache 软件版本 2.3.0

More information

ApsaraDB for RDS. Quick Start (MySQL)

ApsaraDB for RDS. Quick Start (MySQL) Get started with ApsaraDB The ApsaraDB Relational Database Service (RDS) is a stable and reliable online database service with auto-scaling capabilities. Based on the Apsara distributed file system and

More information

ICP Enablon User Manual Factory ICP Enablon 用户手册 工厂 Version th Jul 2012 版本 年 7 月 16 日. Content 内容

ICP Enablon User Manual Factory ICP Enablon 用户手册 工厂 Version th Jul 2012 版本 年 7 月 16 日. Content 内容 Content 内容 A1 A2 A3 A4 A5 A6 A7 A8 A9 Login via ICTI CARE Website 通过 ICTI 关爱网站登录 Completing the Application Form 填写申请表 Application Form Created 创建的申请表 Receive Acknowledgement Email 接收确认电子邮件 Receive User

More information

北 京 忆 恒 创 源 科 技 有 限 公 司 16

北 京 忆 恒 创 源 科 技 有 限 公 司 16 北京忆恒创源科技有限公司 16 Client Name Internal Project Name PPT Template Range For Internal only Project Leader Tang Zhibo Date 2013.4.26 Vision 0.1 北京忆恒创源科技有限公司,Memblaze 唐志波市场副总 / 联合创始人 曾在英特尔有限公司任职 11 年 任英特尔解决方案部高级技术顾问,

More information

Logitech G302 Daedalus Prime Setup Guide 设置指南

Logitech G302 Daedalus Prime Setup Guide 设置指南 Logitech G302 Daedalus Prime Setup Guide 设置指南 Logitech G302 Daedalus Prime Contents / 目录 English................. 3 简体中文................. 6 2 Logitech G302 Daedalus Prime 1 On 2 USB Your Daedalus Prime

More information

The Design of Everyday Things

The Design of Everyday Things The Design of Everyday Things Byron Li Copyright 2009 Trend Micro Inc. It's Not Your Fault Donald A. Norman & His Book Classification 03/17/11 3 Norman Door Why Learn to think from different aspects Contribute

More information

操作系统原理与设计. 第 13 章 IO Systems(IO 管理 ) 陈香兰 2009 年 09 月 01 日 中国科学技术大学计算机学院

操作系统原理与设计. 第 13 章 IO Systems(IO 管理 ) 陈香兰 2009 年 09 月 01 日 中国科学技术大学计算机学院 第 13 章 IO Systems(IO 管理 ) 中国科学技术大学计算机学院 2009 年 09 月 01 日 提纲 I/O Hardware 1 I/O Hardware Polling Interrupts Direct Memory Access (DMA) I/O hardware summary 2 Block and Character Devices Network Devices

More information

PCU50 的整盘备份. 本文只针对操作系统为 Windows XP 版本的 PCU50 PCU50 启动硬件自检完后, 出现下面文字时, 按向下光标键 光标条停在 SINUMERIK 下方的空白处, 如下图, 按回车键 PCU50 会进入到服务画面, 如下图

PCU50 的整盘备份. 本文只针对操作系统为 Windows XP 版本的 PCU50 PCU50 启动硬件自检完后, 出现下面文字时, 按向下光标键 光标条停在 SINUMERIK 下方的空白处, 如下图, 按回车键 PCU50 会进入到服务画面, 如下图 PCU50 的整盘备份 本文只针对操作系统为 Windows XP 版本的 PCU50 PCU50 启动硬件自检完后, 出现下面文字时, 按向下光标键 OS Loader V4.00 Please select the operating system to start: SINUMERIK Use and to move the highlight to your choice. Press Enter

More information

软件和支持订订 1.1 订阅单位定义 订阅服务费用以称为 单位 的计量标准为依据 下表 1.1 定义了用于计量贵方使用的软件订阅的数量的各种单位 在贵方购买行为所适用的订单中以及在附件中包含了各种软件订阅所适用的具体单位

软件和支持订订 1.1 订阅单位定义 订阅服务费用以称为 单位 的计量标准为依据 下表 1.1 定义了用于计量贵方使用的软件订阅的数量的各种单位 在贵方购买行为所适用的订单中以及在附件中包含了各种软件订阅所适用的具体单位 PRODUCT APPENDIX 1 SOFTWARE AND SUPPORT SUBSCRIPTIONS 软件和支持订订 This Product Appendix (which includes Exhibits applicable to specific Red Hat Products) contains terms that describe the parameters and govern

More information

Online Marketing. Marketing Systems and Services. Technology. Customer Care. Institute of Intercultural competence.

Online Marketing. Marketing Systems and Services. Technology. Customer Care. Institute of Intercultural competence. Online Marketing Marketing Systems and Services Technology Customer Care Institute of Intercultural competence Design and Video Design and Video Design Those precious milliseconds A glimpse lasting 50

More information

计算机组成原理第二讲 第二章 : 运算方法和运算器 数据与文字的表示方法 (1) 整数的表示方法. 授课老师 : 王浩宇

计算机组成原理第二讲 第二章 : 运算方法和运算器 数据与文字的表示方法 (1) 整数的表示方法. 授课老师 : 王浩宇 计算机组成原理第二讲 第二章 : 运算方法和运算器 数据与文字的表示方法 (1) 整数的表示方法 授课老师 : 王浩宇 haoyuwang@bupt.edu.cn 1 Today: Bits, Bytes, and Integers Representing information as bits Bit-level manipulations Integers Representation: unsigned

More information

三 依赖注入 (dependency injection) 的学习

三 依赖注入 (dependency injection) 的学习 三 依赖注入 (dependency injection) 的学习 EJB 3.0, 提供了一个简单的和优雅的方法来解藕服务对象和资源 使用 @EJB 注释, 可以将 EJB 存根对象注入到任何 EJB 3.0 容器管理的 POJO 中 如果注释用在一个属性变量上, 容器将会在它被第一次访问之前赋值给它 在 Jboss 下一版本中 @EJB 注释从 javax.annotation 包移到了 javax.ejb

More information

Support for Title 21 CFR Part 11 and Annex 11 compliance: Agilent OpenLAB CDS version 2.1

Support for Title 21 CFR Part 11 and Annex 11 compliance: Agilent OpenLAB CDS version 2.1 Support for Title 21 CFR and compliance: Agilent OpenLAB CDS version 2.1 Whitepaper Overview US FDA in Title 21 of the Code of Federal Regulations (CFR), and its EU analog, Eudralex Chapter 4,, describe

More information

Previous on Computer Networks Class 18. ICMP: Internet Control Message Protocol IP Protocol Actually a IP packet

Previous on Computer Networks Class 18. ICMP: Internet Control Message Protocol IP Protocol Actually a IP packet ICMP: Internet Control Message Protocol IP Protocol Actually a IP packet 前 4 个字节都是一样的 0 8 16 31 类型代码检验和 ( 这 4 个字节取决于 ICMP 报文的类型 ) ICMP 的数据部分 ( 长度取决于类型 ) ICMP 报文 首部 数据部分 IP 数据报 ICMP: Internet Control Message

More information

Bi-monthly report. Tianyi Luo

Bi-monthly report. Tianyi Luo Bi-monthly report Tianyi Luo 1 Work done in this week Write a crawler plus based on keywords (Support Chinese and English) Modify a Sina weibo crawler (340M/day) Offline learning to rank module is completed

More information

NetScreen 概念与范例. ScreenOS 参考指南 第 7 卷 : 虚拟系统. ScreenOS 编号 SC 修订本 E

NetScreen 概念与范例. ScreenOS 参考指南 第 7 卷 : 虚拟系统. ScreenOS 编号 SC 修订本 E NetScreen 概念与范例 ScreenOS 参考指南 第 7 卷 : 虚拟系统 ScreenOS 5.0.0 编号 093-0930-000-SC 修订本 E Copyright Notice Copyright 2004 NetScreen Technologies, Inc. All rights reserved. NetScreen, NetScreen Technologies, GigaScreen,

More information

Understanding IO patterns of SSDs

Understanding IO patterns of SSDs 固态硬盘 I/O 特性测试 周大 众所周知, 固态硬盘是一种由闪存作为存储介质的数据库存储设备 由于闪存和磁盘之间物理特性的巨大差异, 现有的各种软件系统无法直接使用闪存芯片 为了提供对现有软件系统的支持, 往往在闪存之上添加一个闪存转换层来实现此目的 固态硬盘就是在闪存上附加了闪存转换层从而提供和磁盘相同的访问接口的存储设备 一方面, 闪存本身具有独特的访问特性 另外一方面, 闪存转换层内置大量的算法来实现闪存和磁盘访问接口之间的转换

More information

Operating Systems. Chapter 4 Threads. Lei Duan

Operating Systems. Chapter 4 Threads. Lei Duan Operating Systems Chapter 4 Threads Lei Duan leiduan@scu.edu.cn 2015.2 Agenda 4.1 Processes and Threads 4.2 Types of Threads 4.3 Multicore and Multithreading 4.4 Summary 2015-04-01 2/49 Agenda 4.1 Processes

More information

Chapter 7: Deadlocks. Operating System Concepts 9 th Edition

Chapter 7: Deadlocks. Operating System Concepts 9 th Edition Chapter 7: Deadlocks Silberschatz, Galvin and Gagne 2013 Chapter Objectives To develop a description of deadlocks, which prevent sets of concurrent processes from completing their tasks To present a number

More information

Microsoft RemoteFX: USB 和设备重定向 姓名 : 张天民 职务 : 高级讲师 公司 : 东方瑞通 ( 北京 ) 咨询服务有限公司

Microsoft RemoteFX: USB 和设备重定向 姓名 : 张天民 职务 : 高级讲师 公司 : 东方瑞通 ( 北京 ) 咨询服务有限公司 Microsoft RemoteFX: USB 和设备重定向 姓名 : 张天民 职务 : 高级讲师 公司 : 东方瑞通 ( 北京 ) 咨询服务有限公司 RemoteFX 中新的 USB 重定向特性 在 RDS 中所有设备重定向机制 VDI 部署场景讨论 : 瘦客户端和胖客户端 (Thin&Rich). 用户体验 : 演示使用新的 USB 重定向功能 81% 4 本地和远程的一致的体验 (Close

More information

OpenCascade 的曲面.

OpenCascade 的曲面. 在 OpenSceneGraph 中绘制 OpenCascade 的曲面 eryar@163.com 摘要 Abstract : 本文对 OpenCascade 中的几何曲面数据进行简要说明, 并结合 OpenSceneGraph 将这些曲面显示 关键字 Key Words:OpenCascade OpenSceneGraph Geometry Surface NURBS 一 引言 Introduction

More information

U-CONTROL UMX610/UMX490/UMX250. The Ultimate Studio in a Box: 61/49/25-Key USB/MIDI Controller Keyboard with Separate USB/Audio Interface

U-CONTROL UMX610/UMX490/UMX250. The Ultimate Studio in a Box: 61/49/25-Key USB/MIDI Controller Keyboard with Separate USB/Audio Interface U-CONTROL UMX610/UMX490/UMX250 The Ultimate Studio in a Box: 61/49/25-Key USB/MIDI Controller Keyboard with Separate USB/Audio Interface 2 U-CONTROL UMX610/UMX490/UMX250 快速启动向导 3 其他的重要信息 ¼'' TS 1. 2. 3.

More information

Spark Standalone 模式应用程序开发 Spark 大数据博客 -

Spark Standalone 模式应用程序开发 Spark 大数据博客 - 在本博客的 Spark 快速入门指南 (Quick Start Spark) 文章中简单地介绍了如何通过 Spark s hell 来快速地运用 API 本文将介绍如何快速地利用 Spark 提供的 API 开发 Standalone 模式的应用程序 Spark 支持三种程序语言的开发 :Scala ( 利用 SBT 进行编译 ), Java ( 利用 Maven 进行编译 ) 以及 Python

More information

Smart Services Lucy Huo (Senior Consultant, UNITY Business Consulting) April 27, 2016

Smart Services Lucy Huo (Senior Consultant, UNITY Business Consulting) April 27, 2016 Smart Services Lucy Huo (Senior Consultant, UNITY Business Consulting) April 27, 2016 42 = Average Age of a Company According to Christensen, well-established companies are not capable of change in face

More information

NyearBluetoothPrint SDK. Development Document--Android

NyearBluetoothPrint SDK. Development Document--Android NyearBluetoothPrint SDK Development Document--Android (v0.98) 2018/09/03 --Continuous update-- I Catalogue 1. Introduction:... 3 2. Relevant knowledge... 4 3. Direction for use... 4 3.1 SDK Import... 4

More information

电子行业产品指南. Electronics Industry Product Selector Guide

电子行业产品指南. Electronics Industry Product Selector Guide 电子行业产品指南 Electronics Industry Product Selector Guide 覆铜板行业内可信赖的产品系列 覆铜板市场趋势普通 Tg 和高 Tg 无卤素覆铜板 出于对环境的保护, 越来越多的覆铜板和终端制造商需求无卤素材料, 包含普通 Tg 和高 Tg 高速产品用覆铜板 高速信号通讯和存储要求覆铜板具有高速传输和信号完整性特性, 更低的 Dk 和 Df 是具体的特性表现

More information

CA Application Performance Management

CA Application Performance Management CA Application Performance Management for IBM WebSphere Portal 指南 版本 9.5 本文档包括内嵌帮助系统和以电子形式分发的材料 ( 以下简称 文档 ), 其仅供参考,CA 随时可对其进行更改或撤销 未经 CA 事先书面同意, 不得擅自复制 转让 翻印 透露 修改或转录本文档的全部或部分内容 本文档属于 CA 的机密和专有信息, 不得擅自透露,

More information

Logitech ConferenceCam CC3000e Camera 罗技 ConferenceCam CC3000e Camera Setup Guide 设置指南

Logitech ConferenceCam CC3000e Camera 罗技 ConferenceCam CC3000e Camera Setup Guide 设置指南 Logitech ConferenceCam CC3000e Camera 罗技 ConferenceCam CC3000e Camera Setup Guide 设置指南 Logitech ConferenceCam CC3000e Camera English................. 4 简体中文................ 9 www.logitech.com/support............................

More information

A Benchmark For Stroke Extraction of Chinese Characters

A Benchmark For Stroke Extraction of Chinese Characters 2015-09-29 13:04:51 http://www.cnki.net/kcms/detail/11.2442.n.20150929.1304.006.html 北京大学学报 ( 自然科学版 ) Acta Scientiarum Naturalium Universitatis Pekinensis doi: 10.13209/j.0479-8023.2016.025 A Benchmark

More information

OTAD Application Note

OTAD Application Note OTAD Application Note Document Title: OTAD Application Note Version: 1.0 Date: 2011-08-30 Status: Document Control ID: Release _OTAD_Application_Note_CN_V1.0 Copyright Shanghai SIMCom Wireless Solutions

More information

CHINA VISA APPLICATION CONCIERGE SERVICE*

CHINA VISA APPLICATION CONCIERGE SERVICE* TRAVEL VISA PRO ORDER FORM Call us for assistance 866-378-1722 Fax 866-511-7599 www.travelvisapro.com info@travelvisapro.com CHINA VISA APPLICATION CONCIERGE SERVICE* Travel Visa Pro will review your documents

More information

DECLARATION OF CONFORMITY

DECLARATION OF CONFORMITY DECLARATION OF CONFORMITY Manufacturer/Supplier: Name of Equipment: Type of Equipment: Class of Equipment: Sentinel Hardware Keys, Sentinel Dual Hardware Keys, Meter Key (Refer to Annex I for detailed

More information

Chapter 11 SHANDONG UNIVERSITY 1

Chapter 11 SHANDONG UNIVERSITY 1 Chapter 11 File System Implementation ti SHANDONG UNIVERSITY 1 Contents File-System Structure File-System Implementation Directory Implementation Allocation Methods Free-Space Management Efficiency and

More information

Multiprotocol Label Switching The future of IP Backbone Technology

Multiprotocol Label Switching The future of IP Backbone Technology Multiprotocol Label Switching The future of IP Backbone Technology Computer Network Architecture For Postgraduates Chen Zhenxiang School of Information Science and Technology. University of Jinan (c) Chen

More information

Packaging 10Apr2012 Rev V Specification MBXL HSG 1. PURPOSE 目的 2. APPLICABLE PRODUCT 适用范围

Packaging 10Apr2012 Rev V Specification MBXL HSG 1. PURPOSE 目的 2. APPLICABLE PRODUCT 适用范围 107-68703 Packaging 10Apr2012 Rev V Specification MBXL HSG 1. PURPOSE 目的 Define the packaging specifiction and packaging method of MBXL HSG. 订定 MBXL HSG 产品之包装规格及包装方式 2. APPLICABLE PRODUCT 适用范围 PKG TYPE

More information

S3FN41F. External Interrupt. Revision 1.00 August Samsung Electronics Co., Ltd. All rights reserved.

S3FN41F. External Interrupt. Revision 1.00 August Samsung Electronics Co., Ltd. All rights reserved. S3FN41F External Interrupt Revision 1.00 August 2012 Application Note 2012 Samsung Electronics Co., Ltd. All rights reserved. Important Notice Samsung Electronics Co. Ltd. ( Samsung ) reserves the right

More information

TW5.0 如何使用 SSL 认证. 先使用 openssl 工具 1 生成 CA 私钥和自签名根证书 (1) 生成 CA 私钥 openssl genrsa -out ca-key.pem 1024

TW5.0 如何使用 SSL 认证. 先使用 openssl 工具 1 生成 CA 私钥和自签名根证书 (1) 生成 CA 私钥 openssl genrsa -out ca-key.pem 1024 TW5.0 如何使用 SSL 认证 先使用 openssl 工具 1 生成 CA 私钥和自签名根证书 (1) 生成 CA 私钥 openssl genrsa -out ca-key.pem 1024 Generating RSA private key, 1024 bit long modulus.++++++...++++++ e is 65537 (0x10001) (2) 生成待签名证书 openssl

More information

3dvia Composer Solidworks

3dvia Composer Solidworks 3dvia Composer Solidworks 1 / 6 2 / 6 3 / 6 3dvia Composer Solidworks Detail View of a Detail View. Garth COLEMAN: Nice tips, Tim! Easily Use Your Drawing Frames for Technical Illustrations Just with 3DVIA

More information

Triangle - Delaunay Triangulator

Triangle - Delaunay Triangulator Triangle - Delaunay Triangulator eryar@163.com Abstract. Triangle is a 2D quality mesh generator and Delaunay triangulator. Triangle was created as part of the Quake project in the school of Computer Science

More information

CMS Video Monitor Platform User Manual. CMS3.0 User Manual 非常感谢您购买我公司的产品, 如果您有什么疑问或需要请随时联系我们

CMS Video Monitor Platform User Manual. CMS3.0 User Manual 非常感谢您购买我公司的产品, 如果您有什么疑问或需要请随时联系我们 CMS3.0 User Manual 8-8-2014 声明 非常感谢您购买我公司的产品, 如果您有什么疑问或需要请随时联系我们 This user manual will be updated when the product s function enhanced, and will regularly improved and updated the product s description

More information

Safety Life Cycle Model IEC61508 安全生命周期模型 -IEC61508

Safety Life Cycle Model IEC61508 安全生命周期模型 -IEC61508 exida is a unique organization rich with Functional Safety and Control System Security support, products, services, experience, expertise, and an unending quest to exceed customer expectations. Fully integrated

More information

EZCast Docking Station

EZCast Docking Station EZCast Docking Station Quick Start Guide Rev. 2.00 Introduction Thanks for choosing EZCast! The EZCast Docking Station contains the cutting-edge EZCast technology, and firmware upgrade will be provided

More information

XPS 8920 Setup and Specifications

XPS 8920 Setup and Specifications XPS 8920 Setup and Specifications 计算机型号 : XPS 8920 管制型号 : D24M 管制类型 : D24M001 注 小心和警告 注 : 注 表示帮助您更好地使用该产品的重要信息 小心 : 小心 表示可能会损坏硬件或导致数据丢失, 并说明如何避免此类问题 警告 : 警告 表示可能会造成财产损失 人身伤害甚至死亡 版权所有 2017 Dell Inc. 或其附属公司

More information

CMS Video Monitor Platform User Manual. bezpeka-shop.com. CMS3.0 User Manual 非常感谢您购买我公司的产品, 如果您有什么疑问或需要请随时联系我们 - 1 -

CMS Video Monitor Platform User Manual. bezpeka-shop.com. CMS3.0 User Manual 非常感谢您购买我公司的产品, 如果您有什么疑问或需要请随时联系我们 - 1 - 声明 CMS3.0 User Manual 非常感谢您购买我公司的产品, 如果您有什么疑问或需要请随时联系我们 - 1 - This user manual will be updated when the product s function enhanced, and will regularly improved and updated the product s description or

More information

公司动态 电视广播 [0511.HK,25.75 港元, 未评级 ]

公司动态 电视广播 [0511.HK,25.75 港元, 未评级 ] 公司动态 电视广播 [511.HK,5.75 港元, 未评级 ] 香港广告收入疲弱之际, 押注新 OTT 业务 ; 股息收益率达 1% 有助支持股价分析员 : 李嘉豪, CFA (tonyli@chinastock.com.hk; 电话 : (85) 3698 639 ) 公司背景 : 电视广播 (TVB) 是香港的免费电视台之一, 商营中文节目制作机构电视广播 之一, 其历史可追溯至 1967 年

More information

测试 SFTP 的 问题在归档配置页的 MediaSense

测试 SFTP 的 问题在归档配置页的 MediaSense 测试 SFTP 的 问题在归档配置页的 MediaSense Contents Introduction Prerequisites Requirements Components Used 问题 : 测试 SFTP 按钮发生故障由于 SSH 算法协商故障解决方案 Bug Reled Informion Introduction 本文描述如何解决可能发生的安全壳 SSH 算法协商故障, 当您配置一个安全文件传输协议

More information

[ 电子书 ]Spark for Data Science PDF 下载 Spark 大数据博客 -

[ 电子书 ]Spark for Data Science PDF 下载 Spark 大数据博客 - [ 电子书 ]Spark for Data Science PDF 下载 昨天分享了 [ 电子书 ]Apache Spark 2 for Beginners pdf 下载, 这本书很适合入门学习 Spark, 虽然书名上写着是 Apache Spark 2, 但是其内容介绍几乎和 Spark 2 毫无关系, 今天要分享的图书也是一本适合入门的 Spark 电子书, 也是 Packt 出版,2016

More information

EZCast Wire User s Manual

EZCast Wire User s Manual EZCast Wire User s Manual Rev. 2.01 Introduction Thanks for choosing EZCast! The EZCast Wire contains the cutting-edge EZCast technology, and firmware upgrade will be provided accordingly in order to compatible

More information

XML allows your content to be created in one workflow, at one cost, to reach all your readers XML 的优势 : 只需一次加工和投入, 到达所有读者的手中

XML allows your content to be created in one workflow, at one cost, to reach all your readers XML 的优势 : 只需一次加工和投入, 到达所有读者的手中 XML allows your content to be created in one workflow, at one cost, to reach all your readers XML 的优势 : 只需一次加工和投入, 到达所有读者的手中 We can format your materials to be read.. in print 印刷 XML Conversions online

More information

臺北巿立大學 104 學年度研究所碩士班入學考試試題

臺北巿立大學 104 學年度研究所碩士班入學考試試題 臺北巿立大學 104 學年度研究所碩士班入學考試試題 班別 : 資訊科學系碩士班 ( 資訊科學組 ) 科目 : 計算機概論 ( 含程式設計 ) 考試時間 :90 分鐘 08:30-10:00 總分 :100 分 注意 : 不必抄題, 作答時請將試題題號及答案依照順序寫在答卷上 ; 限用藍色或黑色筆作答, 使用其他顏色或鉛筆作答者, 所考科目以零分計算 ( 於本試題紙上作答者, 不予計分 ) 一 單選題

More information

Citrix CloudGateway. aggregate control. all apps and data to any device, anywhere

Citrix CloudGateway. aggregate control. all apps and data to any device, anywhere Citrix CloudGateway aggregate control all apps and data to any device, anywhere Agenda 1. What s Cloud Gateway? 2. Cloud Gateway Overview 3. How it works? What s Cloud Gateway? It s all about the apps

More information

EZCast Wire. User s Manual. Rev. 2.00

EZCast Wire. User s Manual. Rev. 2.00 EZCast Wire User s Manual Rev. 2.00 Introduction Thanks for choosing EZCast! The EZCast Wire contains the cutting-edge EZCast technology, and firmware upgrade will be provided accordingly in order to compatible

More information

Chapter 1 (Part 2) Introduction to Operating System

Chapter 1 (Part 2) Introduction to Operating System Chapter 1 (Part 2) Introduction to Operating System 张竞慧办公室 : 计算机楼 366 室电邮 :jhzhang@seu.edu.cn 主页 :http://cse.seu.edu.cn/personalpage/zjh/ 电话 :025-52091017 1.1 Computer System Components 1. Hardware provides

More information

Conceptual Modeling on Tencent s Distributed Database Systems. Pan Anqun, Wang Xiaoyu, Li Haixiang Tencent Inc.

Conceptual Modeling on Tencent s Distributed Database Systems. Pan Anqun, Wang Xiaoyu, Li Haixiang Tencent Inc. Conceptual Modeling on Tencent s Distributed Database Systems Pan Anqun, Wang Xiaoyu, Li Haixiang Tencent Inc. Outline Introduction System overview of TDSQL Conceptual Modeling on TDSQL Applications Conclusion

More information

Michael Bailou Huang, LAc, MAc, MLS, MEd Health Sciences Library, Stony Brook University, USA 黄柏楼美国石溪大学健康科学图书馆

Michael Bailou Huang, LAc, MAc, MLS, MEd Health Sciences Library, Stony Brook University, USA 黄柏楼美国石溪大学健康科学图书馆 QU Nan, MS Capital Normal University Library, Beijing, China 屈南中国首都师范大学图书馆 Michael Bailou Huang, LAc, MAc, MLS, MEd Health Sciences Library, Stony Brook University, USA michael.b.huang@stonybrook.edu 黄柏楼美国石溪大学健康科学图书馆

More information

第二小题 : 逻辑隔离 (10 分 ) OpenFlow Switch1 (PC-A/Netfpga) OpenFlow Switch2 (PC-B/Netfpga) ServerB PC-2. Switching Hub

第二小题 : 逻辑隔离 (10 分 ) OpenFlow Switch1 (PC-A/Netfpga) OpenFlow Switch2 (PC-B/Netfpga) ServerB PC-2. Switching Hub 第二小题 : 逻辑隔离 (10 分 ) 一 实验背景云平台服务器上的不同虚拟服务器, 分属于不同的用户 用户远程登录自己的虚拟服务器之后, 安全上不允许直接访问同一局域网的其他虚拟服务器 二 实验目的搭建简单网络, 通过逻辑隔离的方法, 实现用户能远程登录局域网内自己的虚拟内服务器, 同时不允许直接访问同一局域网的其他虚拟服务器 三 实验环境搭建如图 1-1 所示, 我们会创建一个基于 OpenFlow

More information

display portal server display portal user display portal user count display portal web-server

display portal server display portal user display portal user count display portal web-server 目录 1 Portal 1-1 1.1 Portal 配置命令 1-1 1.1.1 aaa-fail nobinding enable 1-1 1.1.2 aging-time 1-1 1.1.3 app-id (Facebook authentication server view) 1-2 1.1.4 app-id (QQ authentication server view) 1-3 1.1.5

More information

AvalonMiner Raspberry Pi Configuration Guide. AvalonMiner 树莓派配置教程 AvalonMiner Raspberry Pi Configuration Guide

AvalonMiner Raspberry Pi Configuration Guide. AvalonMiner 树莓派配置教程 AvalonMiner Raspberry Pi Configuration Guide AvalonMiner 树莓派配置教程 AvalonMiner Raspberry Pi Configuration Guide 简介 我们通过使用烧录有 AvalonMiner 设备管理程序的树莓派作为控制器 使 用户能够通过控制器中管理程序的图形界面 来同时对多台 AvalonMiner 6.0 或 AvalonMiner 6.01 进行管理和调试 本教程将简要的说明 如何把 AvalonMiner

More information

PMI,PMI (China) Membership, Certifications. Bob Chen PMI (China) August 31, 2010

PMI,PMI (China) Membership, Certifications. Bob Chen PMI (China) August 31, 2010 PMI,PMI (China) Membership, Certifications Bob Chen PMI (China) August 31, 2010 内容 (1) PMI Global (2) PMI China update (3) Certifications (4) Memberships 2 PMI Global Developments 3 What is PMI? Global

More information

Technology: Anti-social Networking 科技 : 反社交网络

Technology: Anti-social Networking 科技 : 反社交网络 Technology: Anti-social Networking 科技 : 反社交网络 1 Technology: Anti-social Networking 科技 : 反社交网络 The Growth of Online Communities 社交网络使用的增长 Read the text below and do the activity that follows. 阅读下面的短文, 然后完成练习

More information

GB/T NATIONAL STANDARD OF THE PEOPLE S REPUBLIC OF CHINA 中华人民共和国国家标准

GB/T NATIONAL STANDARD OF THE PEOPLE S REPUBLIC OF CHINA 中华人民共和国国家标准 ICS 17.220.20 N 22 NATIONAL STANDARD OF THE PEOPLE S REPUBLIC OF CHINA 中华人民共和国国家标准 Society energy metering for reading system specification Part3: Dedicated application layer 社区能源计量抄收系统规范第 3 部分 : 专用应用层

More information

Murrelektronik Connectivity Interface Part I Product range MSDD, cable entry panels MSDD 系列, 电缆穿线板

Murrelektronik Connectivity Interface Part I Product range MSDD, cable entry panels MSDD 系列, 电缆穿线板 Murrelektronik Connectivity Interface Part I Product range MSDD, cable entry panels MSDD 系列, 电缆穿线板 INTERFACE PORTFOLIO PG 03 Relays 继电器 Intelligent Interface Technology 智能转换技术 Passive Interface Technology

More information

User Guide for Apabi Digital Library of Chinese e-books

User Guide for Apabi Digital Library of Chinese e-books User Guide for Apabi Digital Library of Chinese e-books Edinburgh University Library 1. Overview The Apabi Digital Library contains about 4,600 Chinese e-books, as of November 2005, on a wide range of

More information

1. DWR 1.1 DWR 基础 概念 使用使用 DWR 的步骤. 1 什么是 DWR? Direct Web Remote, 直接 Web 远程 是一个 Ajax 的框架

1. DWR 1.1 DWR 基础 概念 使用使用 DWR 的步骤. 1 什么是 DWR? Direct Web Remote, 直接 Web 远程 是一个 Ajax 的框架 1. DWR 1.1 DWR 基础 1.1.1 概念 1 什么是 DWR? Direct Web Remote, 直接 Web 远程 是一个 Ajax 的框架 2 作用 使用 DWR, 可以直接在 html 网页中调用 Java 对象的方法 ( 通过 JS 和 Ajax) 3 基本原理主要技术基础是 :AJAX+ 反射 1) JS 通过 AJAX 发出请求, 目标地址为 /dwr/*, 被 DWRServlet(

More information

Oracle 一体化创新云技术 助力智慧政府信息化战略. Copyright* *2014*Oracle*and/or*its*affiliates.*All*rights*reserved.** *

Oracle 一体化创新云技术 助力智慧政府信息化战略. Copyright* *2014*Oracle*and/or*its*affiliates.*All*rights*reserved.** * Oracle 一体化创新云技术 助力智慧政府信息化战略 ?* x * Exadata Exadata* * * Exadata* InfiniBand 0Gbits/S 5?10 * Exadata* * Exadata& & Oracle exadata! " 4 " 240 12! "!! " " " Exadata* Exadata & Single?Instance*Database*

More information

Apache OpenWhisk + Kubernetes:

Apache OpenWhisk + Kubernetes: Apache OpenWhisk + Kubernetes: A Perfect Match for Your Serverless Platform Ying Chun Guo guoyingc@cn.ibm.com Zhou Xing xingzhou@qiyi.com Agenda What is serverless? Kubernetes + Apache OpenWhisk Technical

More information

Congestion Control Mechanisms for Ad-hoc Social Networks 自组织社会网络中的拥塞控制机制

Congestion Control Mechanisms for Ad-hoc Social Networks 自组织社会网络中的拥塞控制机制 Congestion Control Mechanisms for Ad-hoc Social Networks 自组织社会网络中的拥塞控制机制 by Hannan-Bin-Liaqat (11117018) to School of Software in partial fulfillment of the requirements for the degree of Doctor of Philosophy

More information

Oracle Exam 1z0-883 MySQL 5.6 Database Administrator Version: 8.0 [ Total Questions: 100 ]

Oracle Exam 1z0-883 MySQL 5.6 Database Administrator Version: 8.0 [ Total Questions: 100 ] s@lm@n Oracle Exam 1z0-883 MySQL 5.6 Database Administrator Version: 8.0 [ Total Questions: 100 ] Oracle 1z0-883 : Practice Test Question No : 1 Consider the Mysql Enterprise Audit plugin. You are checking

More information

密级 : 博士学位论文. 论文题目基于 ScratchPad Memory 的嵌入式系统优化研究

密级 : 博士学位论文. 论文题目基于 ScratchPad Memory 的嵌入式系统优化研究 密级 : 博士学位论文 论文题目基于 ScratchPad Memory 的嵌入式系统优化研究 作者姓名指导教师学科 ( 专业 ) 所在学院提交日期 胡威陈天洲教授计算机科学与技术计算机学院二零零八年三月 A Dissertation Submitted to Zhejiang University for the Degree of Doctor of Philosophy TITLE: The

More information

LV 7290 REMOTE CONTROLLER INSTRUCTION MANUAL

LV 7290 REMOTE CONTROLLER INSTRUCTION MANUAL LV 7290 REMOTE CONTROLLER INSTRUCTION MANUAL TABLE OF CONTENTS GENERAL SAFETY SUMMARY... I 1. INTRODUCTION... 1 1.1 Scope of Warranty... 1 1.2 Operating Precautions... 2 1.2.1 Power Supply Voltage... 2

More information

计算机科学与技术专业本科培养计划. Undergraduate Program for Specialty in Computer Science & Technology

计算机科学与技术专业本科培养计划. Undergraduate Program for Specialty in Computer Science & Technology 计算机科学与技术学院 计算机科学与技术学院下设 6 个研究所 : 计算科学理论研究所 数据工程研究所 并行分布式计算研究所 数据存储研究所 数字媒体研究所 信息安全研究所 ;2 个中心 : 嵌入式软件与系统工程中心和教学中心 外存储系统国家专业实验室 教育部信息存储系统重点实验室 中国教育科研网格主结点 国家高性能计算中心 ( 武汉 ) 服务计算技术与系统教育部重点实验室 湖北省数据库工程技术研究中心

More information

本文列出 Git 常用命令, 点击下图查看大图

本文列出 Git 常用命令, 点击下图查看大图 Git 常用命令速查表 本文列出 Git 常用命令, 点击下图查看大图 如果想及时了解 Spark Hadoop 或者 Hbase 相关的文章, 欢迎关注微信公共帐号 :iteblog_hadoop 入门 git init or git clone url 1 / 6 配置 git config --global color.ui true git config --global push.default

More information

Software Engineering. Zheng Li( 李征 ) Jing Wan( 万静 )

Software Engineering. Zheng Li( 李征 ) Jing Wan( 万静 ) Software Engineering Zheng Li( 李征 ) Jing Wan( 万静 ) 作业 Automatically test generation 1. 编写一个三角形程序, 任意输入三个整数, 判断三个整形边长能否构成三角形, 如果是三角形, 则判断它是一般三角形 等腰三角形或等边三角形, 并输出三角形的类型 2. 画出程序的 CFG, 计算圈复杂度 3. 设计一组测试用例满足测试准则

More information

New Media Data Analytics and Application. Lecture 7: Information Acquisition An Integration Ting Wang

New Media Data Analytics and Application. Lecture 7: Information Acquisition An Integration Ting Wang New Media Data Analytics and Application Lecture 7: Information Acquisition An Integration Ting Wang Outlines Product-Oriented Data Collection Make a Web Crawler System Integration You should know your

More information

Chapter 4 (Part I) The Processor: Datapath and Control (A Single-cycle Implementation) 设计芯片电路方块图从何着手?

Chapter 4 (Part I) The Processor: Datapath and Control (A Single-cycle Implementation) 设计芯片电路方块图从何着手? Chapter (Part I) The Processor: Datapath and Control (A Single-cycle Implementation) 陳瑞奇 (J.C. Rikki Chen) 亚洲大学资讯工程学系 Adapted from class notes by Prof. M.J. Irwin, PSU and Prof. D. Patterson, UCB 设计芯片电路方块图从何着手?

More information

<properties> <jdk.version>1.8</jdk.version> <project.build.sourceencoding>utf-8</project.build.sourceencoding> </properties>

<properties> <jdk.version>1.8</jdk.version> <project.build.sourceencoding>utf-8</project.build.sourceencoding> </properties> SpringBoot 的基本操作 一 基本概念在 spring 没有出现的时候, 我们更多的是使用的 Spring,SpringMVC,Mybatis 等开发框架, 但是要将这些框架整合到 web 项目中需要做大量的配置,applicationContext.xml 以及 servlet- MVC.xml 文件等等, 但是这些文件还还不够, 还需要配置 web.xml 文件进行一系列的配置 以上操作是比较麻烦的,

More information

nbns-list netbios-type network next-server option reset dhcp server conflict 1-34

nbns-list netbios-type network next-server option reset dhcp server conflict 1-34 目录 1 DHCP 1-1 1.1 DHCP 公共命令 1-1 1.1.1 dhcp dscp 1-1 1.1.2 dhcp enable 1-1 1.1.3 dhcp select 1-2 1.2 DHCP 服务器配置命令 1-3 1.2.1 address range 1-3 1.2.2 bims-server 1-4 1.2.3 bootfile-name 1-5 1.2.4 class 1-6

More information

Ganglia 是 UC Berkeley 发起的一个开源集群监视项目, 主要是用来监控系统性能, 如 :cpu mem 硬盘利用率, I/O 负载 网络流量情况等, 通过曲线很容易见到每个节点的工作状态, 对合理调整 分配系统资源, 提高系统整体性能起到重要作用

Ganglia 是 UC Berkeley 发起的一个开源集群监视项目, 主要是用来监控系统性能, 如 :cpu mem 硬盘利用率, I/O 负载 网络流量情况等, 通过曲线很容易见到每个节点的工作状态, 对合理调整 分配系统资源, 提高系统整体性能起到重要作用 在本博客的 Spark Metrics 配置详解 文章中介绍了 Spark Metrics 的配置, 其中我们就介绍了 Spark 监控支持 Ganglia Sink Ganglia 是 UC Berkeley 发起的一个开源集群监视项目, 主要是用来监控系统性能, 如 :cpu mem 硬盘利用率, I/O 负载 网络流量情况等, 通过曲线很容易见到每个节点的工作状态, 对合理调整 分配系统资源,

More information

Command Dictionary CUSTOM

Command Dictionary CUSTOM 命令模式 CUSTOM [(filename)] [parameters] Executes a "custom-designed" command which has been provided by special programming using the GHS Programming Interface. 通过 GHS 程序接口, 执行一个 用户设计 的命令, 该命令由其他特殊程序提供 参数说明

More information

智能终端与物联网应用 课程建设与实践. 邝坚 嵌入式系统与网络通信研究中心北京邮电大学计算机学院

智能终端与物联网应用 课程建设与实践. 邝坚 嵌入式系统与网络通信研究中心北京邮电大学计算机学院 智能终端与物联网应用 课程建设与实践 邝坚 jkuang@bupt.edu.cn 嵌入式系统与网络通信研究中心北京邮电大学计算机学院 定位 移动互联网 服务 安 理解 云计算 服务计算 可信 全 交换感知 嵌入式计算 计算 现状与趋势 p 移动互联网发展迅猛 第 27 次中国互联网络发展状况统计报告 (CNNIC) 指出截至 2010 年 12 月, 中国互联网用户数已达到 4.57 亿, 其中移动互联网网民数已达

More information

实验三十三 DEIGRP 的配置 一 实验目的 二 应用环境 三 实验设备 四 实验拓扑 五 实验要求 六 实验步骤 1. 掌握 DEIGRP 的配置方法 2. 理解 DEIGRP 协议的工作过程

实验三十三 DEIGRP 的配置 一 实验目的 二 应用环境 三 实验设备 四 实验拓扑 五 实验要求 六 实验步骤 1. 掌握 DEIGRP 的配置方法 2. 理解 DEIGRP 协议的工作过程 实验三十三 DEIGRP 的配置 一 实验目的 1. 掌握 DEIGRP 的配置方法 2. 理解 DEIGRP 协议的工作过程 二 应用环境 由于 RIP 协议的诸多问题, 神州数码开发了与 EIGRP 完全兼容的 DEIGRP, 支持变长子网 掩码 路由选择参考更多因素, 如带宽等等 三 实验设备 1. DCR-1751 三台 2. CR-V35FC 一条 3. CR-V35MT 一条 四 实验拓扑

More information

Use Cases for Partitioning. Bill Karwin Percona, Inc

Use Cases for Partitioning. Bill Karwin Percona, Inc Use Cases for Partitioning Bill Karwin Percona, Inc. 2011-02-16 1 Why Use Cases?! Anyone can read the reference manual: http://dev.mysql.com/doc/refman/5.1/en/partitioning.html! This talk is about when

More information

PTZ PRO 2. Setup Guide 设置指南

PTZ PRO 2. Setup Guide 设置指南 PTZ PRO 2 Setup Guide 设置指南 3 ENGLISH 8 简体中文 2 KNOW YOUR PRODUCT 1 4 9 5 10 6 7 11 8 2 13 14 3 12 15 Camera 1. 10X lossless zoom 2. Camera LED 3. Kensington Security Slot Remote 4. Mirror 5. Zoom in 6.

More information

Bitnami Kafka for Huawei Enterprise Cloud

Bitnami Kafka for Huawei Enterprise Cloud Bitnami Kafka for Huawei Enterprise Cloud Description Apache Kafka is publish-subscribe messaging rethought as a distributed commit log. How to start or stop the services? Each Bitnami stack includes a

More information

A Brief Introduction of TiDB. Dongxu (Edward) Huang CTO, PingCAP

A Brief Introduction of TiDB. Dongxu (Edward) Huang CTO, PingCAP A Brief Introduction of TiDB Dongxu (Edward) Huang CTO, PingCAP About me Dongxu (Edward) Huang, Cofounder & CTO of PingCAP PingCAP, based in Beijing, China. Infrastructure software engineer, open source

More information

Britannica Academic Online Edition 大不列顛百科全书网络学术版

Britannica Academic Online Edition 大不列顛百科全书网络学术版 Britannica Academic Online Edition 大不列顛百科全书网络学术版 The Complete Digital Resource Deep use of online resources 2013 The Complete Digital Resource High profile contributors Current content Collaborative content

More information

Relational Database Service. User Guide. Issue 05 Date

Relational Database Service. User Guide. Issue 05 Date Issue 05 Date 2017-02-08 Contents Contents 1 Introduction... 1 1.1 Concepts... 2 1.1.1 RDS... 2 1.1.2 DB Cluster... 2 1.1.3 DB Instance... 2 1.1.4 DB Backup... 3 1.1.5 DB Snapshot... 3 1.2 RDS DB Instances...

More information

ApsaraDB for RDS. Quick Start (PostgreSQL)

ApsaraDB for RDS. Quick Start (PostgreSQL) Getting started with ApsaraDB The Alibaba Relational Database Service (RDS) is a stable, reliable, and auto-scaling online database service. Based on the Apsara distributed file system and high-performance

More information

Wireless Presentation Pod

Wireless Presentation Pod Wireless Presentation Pod WPP20 www.yealink.com Quick Start Guide (V10.1) Package Contents If you find anything missing, contact your system administrator. WPP20 Wireless Presentation Pod Quick Start Guide

More information

Oral Questions and Answers (DBMS LAB) Questions & Answers- DBMS

Oral Questions and Answers (DBMS LAB) Questions & Answers- DBMS Questions & Answers- DBMS https://career.guru99.com/top-50-database-interview-questions/ 1) Define Database. A prearranged collection of figures known as data is called database. 2) What is DBMS? Database

More information

Apache Kafka 源码编译 Spark 大数据博客 -

Apache Kafka 源码编译 Spark 大数据博客 - 经过近一个月时间, 终于差不多将之前在 Flume 0.9.4 上面编写的 source sink 等插件迁移到 Flume-ng 1.5.0, 包括了将 Flume 0.9.4 上面的 TailSou rce TailDirSource 等插件的迁移 ( 当然, 我们加入了许多新的功能, 比如故障恢复 日志的断点续传 按块发送日志以及每个一定的时间轮询发送日志而不是等一个日志发送完才发送另外一个日志

More information

Intel RealSense Tracking Camera

Intel RealSense Tracking Camera Intel RealSense Tracking Camera Datasheet Intel RealSense Tracking Camera T265 January 2019 Revision 001 Document Number: 572522-001 Description and Features You may not use or facilitate the use of this

More information

Diamond Sponsor 1 Available

Diamond Sponsor 1 Available Diamond Sponsor 1 Available D1 Morning Keynote Acknowledgement (w/logo) on conference direction board Complimentary tabletop exhibit display 8 Complimentary delegate registrations 4 Staffs at tabletop

More information

VAS 5054A FAQ ( 所有 5054A 整合, 中英对照 )

VAS 5054A FAQ ( 所有 5054A 整合, 中英对照 ) VAS 5054A FAQ ( 所有 5054A 整合, 中英对照 ) About Computer Windows System Requirements ( 电脑系统要求方面 ) 问 :VAS 5054A 安装过程中出现错误提示 :code 4 (corrupt cabinet) 答 : 客户电脑系统有问题, 换 XP 系统安装 Q: When vas5054 install, an error

More information