Tubocharge your e-commerce site with Cache and Search Technologies

Size: px
Start display at page:

Download "Tubocharge your e-commerce site with Cache and Search Technologies"

Transcription

1 深入探讨 ElastiCache 最佳实践与常见使用场景 郑进佳, AWS 解决方案架构师 Kenny Zheng, Solution Architect, Web Services

2 主要内容 ElastiCache 概述 零宕机在线扩展 ElastiCache 集群 ElastiCache 安全与加密 ElastiCache 使用场景 最佳实践

3 µs 是新的 ms ElastiCache

4 内存 --- 键值 --- 存储支持 Redis Memcached 高性能全托管 ; 零管理 ElastiCache 高可用, 高可靠 强化版

5 数据结构 低 高 ElastiCache and DynamoDB Accelerator (DAX) DynamoDB HDFS RDS S3 CloudSearch and Elasticsearch Service Glacier 高 低 低 请求频率 延迟 数据量 低 低 低

6 Redis 概览 极速大多数命令延迟 <1 ms 内存数据结构服务器 开源 性能更强 ~200 命令 + Lua 脚本 持久性 实用数据结构 Strings, lists, hashes, sets, sorted sets, bitmaps, and HyperLogLogs 高可用复制 原子操作支持事务 简单

7 更多新功能 运行 Lua 脚本地理位置查询 Pub/Sub 模式

8 REDIS:6379> SMEMBERS features 1) Easy to deploy & monitor REDIS:6379> hget feature:details deploy-monitor ElastiCache AWS CloudFormation AWS CLI and SDKs AWS Management Console AWS CloudTrail AWS Config CloudWatch alarm SNS AWS Lambda Notification

9 REDIS:6379> SMEMBERS features 2) Enhanced Redis Engine REDIS:6379> hget feature:details enhancements ElastiCache Optimized Swap Memory Mitigate the risk of increased swap usage during syncs and snapshots Dynamic write throttling Improved output buffer management when the node s memory is close to being exhausted Smoother failovers Clusters recover faster as replicas avoid flushing their data to do a full re-sync with the primary

10 REDIS:6379> 1) Kevin McGehee 2) Qu Chen 3) Rajib Dugar SMEMBERS ec-team:open-source:contributors REDIS:6379> hgetall ec-team:open-source:contributions ElastiCache 1) PSYNC2 (Redis 4.0) 2) 3) BGSAVE (Redis 3.2) 4) 5) MIGRATE (Redis 3.0) 6) 7) MASTER TIMEOUT (Redis 2.8) 8) 9) INCREASE 2Billion+ KEYS in a DATASET (Redis 2.8) 10) (from 11) also: 4114, 4250, 3926, 3899

11 Redis 拓扑 禁用 Cluster Mode Max Storage 407 GiB Primary Endpoint I Primary Keyspace 纵向扩展 Slot 0 Slot 1 Slot 复制节点 启用 Cluster Mode Max Storage 6+ TiB Configuration Endpoint 1 15 主 / 分片 Keyspace 横向扩展 Slot Slot Slot 复制节点

12 Redis 集群模式启用 vs 禁用 功能启用禁用 故障转移 sec (Non-DNS) 故障转移风险 Writes affected partial dataset (less risk with more partitions) Reads available 性能 Scales with cluster size (90 nodes 15 primaries replicas per shard) 最大连接数 Primaries (65,000 x 15 = 975,000) Replicas (65,000 x 75 = 4,875,000) ~1.5 min (DNS-based) 存储 6+ TiB 407 GB Writes affected on entire dataset Reads available 6 nodes (1 primary replicas) Primary: 65,000 Replicas: (65,000 x 5 = 325,000) 成本 案例 : 假设需要使用 175 GB Smaller nodes but more $$ 9 x cache.r3.xlarge ($0.455hr) = $4.095 hr GB Larger nodes less $ 1 X cache.r3.8xlarge = $3.640, 237 GB

13 进一步探讨集群启用模式

14 Redis 集群 : 自动客户端分片 哈希分片 / 集群 每个键的分片是 CRC16( 键 ) 模 每个槽分配到集群的每个分片 开发者需要使用 Redis 集探知客户端 客户端被重定向到新的分片 智能客户端存储映射关系图 S5 S1 S2 Shard S1 = slots Shard S2 = slots Shard S3 = slots Shard S4 = slots Shard S5 = slots S4 S3 Client

15 Redis 集群 架构 举例 : 每集群 3 分片 2 只读副本 Redis 集群 多可用区一个集群可包含 1 到 15 个分片 Redis 集群 slots slots slots slots slots slots slots slots slots Availability Zone A Availability Zone B Availability Zone C

16 Redis 集群 架构 分片 每个分片包含一个主节点和最多五个复制节点 Redis 集群 Primary Replica Replica slots slots slots slots slots slots slots slots slots Availability Zone A Availability Zone B Availability Zone C

17 Redis 集群 架构 分片 每个分片包含一个主节点和最多五个复制节点 Redis 集群 Replica Primary Replica slots slots slots slots slots slots slots slots slots Availability Zone A Availability Zone B Availability Zone C

18 Redis 集群 架构 分片 每个分片包含一个主节点和最多五个复制节点 Redis 集群 slots slots slots slots slots slots Replica Replica Primary slots slots slots Availability Zone A Availability Zone B Availability Zone C

19 场景 1: 单主节点失效 Redis 集群 slots slots slots slots slots slots slots slots slots Availability Zone A Availability Zone B Availability Zone C

20 场景 1: 单主节点失效 故障缓解 : 1. 自动故障检测和复制节点提升 (~15 30 s) 2. 修复故障节点 Redis 集群 slots slots slots slots slots slots slots slots slots Availability Zone A Availability Zone B Availability Zone C

21 场景 2: 大多数主节点故障 Redis 集群 slots slots slots slots slots slots slots slots slots Availability Zone A Availability Zone B Availability Zone C

22 场景 2: 大多数主节点故障 故障缓解 : ElastiCache 的 Redis 强化 自动故障检测和复制节点提升 修复故障节点 Redis 集群 slots slots slots slots slots slots slots slots slots Availability Zone A Availability Zone B Availability Zone C

23 通过备份与恢复来扩容 Pro tip: DR strategy enable CRR on S3 bucket triggering AWS Lambda function to hydrate destination cluster Downtime rdb New writes not in snapshot 3 Shards 5 Shards Step 1 Step 2 Step 3 Step 4 aws elasticache create-snapshot --replication-group-id redisclusterid --snapshot-name sname aws elasticache copy-snapshot --source-snapshot-name sname --target-snapshot-name sname --target-bucket s3ucketname aws elasticache create-replication-group --replication-group-id NewRedisClusterID --snapshot-arns arn:aws:s3:::bucketname/redisbackup-0001.rdb, etc. Once the new cluster is up, update your app with new ElastiCache endpoint, then terminate old cluster

24 零宕机时间 --- 在线分区

25 在线分区 零宕机 Shard 1 Shard 2 Shard Simple API aws elasticache modify-replication-group-shard-configuration --replication-group-id rep-group-id --apply-immediately --node-group-count 5 Scale In Out

26 在线分区 零宕机 : 向外扩展 Shard 1 Shard 2 Shard , , reads/writes 无应用中断 跨分片的统一分布 Shard 4 Shard , ,

27 在线分片 零宕机 : 向内扩展 Shard 1 Shard 2 Shard reads/writes 无应用中断 跨分片的统一分布 Shard 4 Shard 5

28 在线分片 CW 告警触发 内存高 CloudWatch AWS SNS AWS Lambda var params = { ApplyImmediately: true, NodeGroupCount: 5, ReplicationGroupId: rep-group-id, } elasticache.modifyreplicationgroupshardconfiguration(params, function(err, data) { if (err) console.log(err, err.stack); else console.log(data); }); Cluster Resized 35 Shards

29 正常状态 reads reads/ writes search reads AZ1 clients reads 缓存集群 AZ2 关系型数据 search

30 重负载 reads reads/ writes search reads AZ1 clients reads 缓存集群 AZ2 关系型数据 search

31 正常状态 自动横向扩展 reads/ writes reads search reads AZ1 clients reads 缓存集群 AZ2 关系型数据 search

32 ElastiCache 安全

33 ElastiCache Redis 参考架构 REDIS:6379> hget feature:details ref-arch Availability Zone A Availability Zone B Availability Zone C

34 ElastiCache Redis 参考架构 REDIS:6379> hget feature:details ref-arch Private Subnet Private Subnet Private Subnet Availability Zone A Availability Zone B Availability Zone C

35 ElastiCache Redis 参考架构 REDIS:6379> hget feature:details ref-arch security group security group security group Private Subnet Private Subnet Private Subnet Availability Zone A Availability Zone B Availability Zone C

36 ElastiCache Redis 参考架构 REDIS:6379> hget feature:details ref-arch Encryption at REST REDIS RDB snapshot security group security group security group Private Subnet Private Subnet Private Subnet Availability Zone A ElastiCache Redis Cluster Availability Zone B Availability Zone C S3 bucket

37 ElastiCache Redis 参考架构 REDIS:6379> hget feature:details ref-arch security group security group security group Public Subnet Public Subnet Encryption In-Transit Redis AUTH Public Subnet Encryption at REST REDIS RDB snapshot security group security group security group Private Subnet Private Subnet Private Subnet Availability Zone A ElastiCache Redis Cluster Availability Zone B Availability Zone C S3 bucket

38 ElastiCache 加密与合规 加密 传输过程 : 加密客户端和 Redis 服务端的所有通讯包括节点之间通讯 存储 : 加密存储在硬盘和 S3 上的备份 全托管 : 通过 API 或者控制台创建, 自动发布和更新 合规 HIPAA 合规 ElastiCache Redis 包含在 AWS Business Associate Addendum Redis 3.2.6

39 常见使用场景

40

41 使用场景 会话管理 数据库缓存 APIs (HTTP 响应 ) IOT 流数据分析 ( 赛选 / 聚合 ) Pub/sub 社交媒体 ( 情感分析 ) 独立数据库 ( 元数据存储 ) 排行榜

42 缓存 关系型数据 reads/ writes Clients RDS mysql.lambda_async 对象数据 reads/writes Elastic Load Balancing EC2 ElastiCache Redis write-through S3 reads/ writes DynamoDB 非结构化数据 DDB streams

43 缓存 NoSQL 更小的 NoSQL DB 集群需求 = 低成本更快的数据检索 = 更好的性能 Clients reads Elasticsearch Cluster EC2 reads/ writes Cassandra Cluster MongoDB Cluster

44 使用 ElastiCache 缓存 NoSQL 数据库 Smaller NoSQL DB clusters needed = lower costs Faster data retrieval = better performance reads ElastiCache Redis reads ElastiCache Redis EC2 EC2 reads/ writes MongoDB Cluster reads/ writes Cassandra Cluster DBObject doc = collection.findone(); Cache serialized DBObject in Redis (good) Cache rows in Redis hash (faster/more efficient) ResultSet rs = session.execute(stmt); Cache serialized ResultSet in Redis (good) Cache rows in Redis hash (faster/more efficient)

45 数据源 流式数据的的加工 / 处理 Kinesis Streams raw stream 持续的数据赛选 / 加工 AWS Lambda function 1 cleansed stream Kinesis Streams Kinesis Analytics ElastiCache (Redis) Real-time pub/sub 订阅 AWS Lambda function 2

46 数据源 使用 Redis 的大数据框架 Collect Process Spark Streaming on EMR Analyze Kinesis EC2 Apache Kafka Apache Storm on EMR AWS Lambda Kinesis app Store ElastiCache S3 Spark on EMR AWS Lambda Custom app AWS IoT

47 移动社交应用 EC2 GEORADIUS Search points of interest API Gateway AWS Lambda ElastiCache Redis GEOADD Update points of interest DDB streams DynamoDB

48 数字化广告 Clients Advertisers Ad network Clickstream (shopping events) Ad slot publishers Ad slot Consumer ElastiCache Redis Ad placement (websites/apps) User visits page Publisher places ad slot for auction Winners bid ad displayed <40 ms Bidders respond with bids Ad network calls for bids

49 游戏 实时排行榜 需要独特性和订购的热门游戏 非常方便使用 Redis 排序集合 ZADD "leaderboard" 1201 "Gollum ZADD "leaderboard" 963 "Sauron" ZADD "leaderboard" 1092 "Bilbo" ZADD "leaderboard" 1383 "Frodo ZREVRANGE "leaderboard" 0-1 1) "Frodo" 2) "Gollum" 3) "Bilbo" 4) "Sauron ZREVRANK "leaderboard" "Sauron" (integer) 3

50 ElastiCache: 最佳实践

51 集群规模最佳实践 存储 集群需要有足够内存 推荐 : 所需内存 + 25% 保留内存 ( Redis) + 预留增长 ( 可选 10%) 使用 eviction 策略和 TTLs 来优化 在达到最大内存之前, 使用 CloudWatch 告警纵向或者横向扩展集群 使用内存优化节点提高成本效率 ( 支持 R4) 性能 不能牺牲性能 使用 Redis 基准工具测试性能基准 更多 READIOPS 增加复制节点 更多 WRITEIOPS 增加分片 ( 横向扩展 ) 更多 network IO 使用网络优化的实例和横向扩展 使用管道来批量读写 数据结构命令考虑 Big(O) 时间复杂度 集群独立 ( 应用共享键空间 ) 为你的应用选择合适的策略 基于工作负载和环境识别哪种类型的隔离是最适合你的 隔离 : 不隔离 $ 基于应用类型隔离 $$ 全隔离 $$$

52 Redis 基准工具开源工具测试性能基准 example: src/redis-benchmark -h r3-xlarge-perf.foio use1.cache.amazonaws.com -p n d 100 Syntax: redis-benchmark -h <host> -p <port> -c 50 -n d 500 q -c <clients> Specifies the number of parallel connections (default 50). -n <requests> Specifies the number of requests (default ). -d <size> Specifies the data size of GET and SET values in bytes. -t <test1,test2> Comma-separated list of tests to perform. -q Quiet operation, displays only the result.

53 Redis 最大内存策略 基于你的应用负载需求选择最大内存策略 noeviction: return errors when the memory limit has been reached and the client is trying to execute commands that might result in more memory to be used allkeys-lru: evict keys trying to remove the less recently used (LRU) keys first volatile-lru: evict keys trying to remove the less recently used (LRU) keys first, but only among keys that have an expire set allkeys-random: evict random keys to make space for the new data added volatile-random: evict random keys to make space for the new data added, but only evict keys with an expire set volatile-ttl: evict only keys with an expire set, and try to evict keys with a shorter time to live (TTL) first

54 关键的 ElastiCache CloudWatch 指标 CPUUtilization Memcached up to 90% ok Redis divide by cores (ex: 90% / 4 = 22.5%) SwapUsage low CacheMisses/CacheHits Ratio low/stable Evictions near zero Exception: Russian-doll caching CurrConnections stable 设置 CloudWatch 告警指标

55 ElastiCache 可修改的参数 Maxclients: (unchangeable) Use connection pooling timeout closes a connection after it has been idle for a given interval tcp-keepalive detects dead peers given an interval Databases: 16 (default) for non-clustered mode Logical partition Reserved-memory: 25% (default) Recommended 50% of maxmemory to use before % after ElastiCache Maxmemory-policy: The eviction policy for keys when maximum memory usage is reached Possible values: volatile-lru, allkeys-lru, volatile-random, allkeys-random, volatile-ttl, noeviction

56 缓存的诀窍 明白潜在数据变更的频率 为每个键设置基于适合那个频率的 TTLs 值 根据应用的需求, 选择合适的移除策略 根据应用目的隔离集群 ( 例如, 缓存集群, 队列, 独立数据库, 等等 ) 通过写抛出保持集群更新 性能测试调整集群大小 监控 HIT/MISS 命中率来告警 使用故障转移的 API 来测试应用弹性

57 Thank You!

1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005

1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005 1 o o o CPU o o o o o SQL Server 2005 o CPU o o o o o SQL Server o Microsoft SQL Server 2005 1 1...3 2...20 3...28 4...41 5 Windows SQL Server...47 Microsoft SQL Server 2005 DBSRV1 Microsoft SQL Server

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 Apache Spark 与 多 数 据 源 的 结 合 田 毅 @ 目 录 为 什 么 会 用 到 多 个 数 据 源 Spark 的 多 数 据 源 方 案 有 哪 些 已 有 的 数 据 源 支 持 Spark 在 GrowingIO 的 实 践 分 享 为 什 么 会 用 到 多 个 数 据 源 从 数 据 本 身 来 看 大 数 据 的 特 性 之 一 :Variety 数 据 的 多 样

More information

SL2511 SR Plus 操作手冊_單面.doc

SL2511 SR Plus 操作手冊_單面.doc IEEE 802.11b SL-2511 SR Plus SENAO INTERNATIONAL CO., LTD www.senao.com - 1 - - 2 - .5 1-1...5 1-2...6 1-3...6 1-4...7.9 2-1...9 2-2 IE...11 SL-2511 SR Plus....13 3-1...13 3-2...14 3-3...15 3-4...16-3

More information

A API Application Programming Interface 见 应 用 程 序 编 程 接 口 ARP Address Resolution Protocol 地 址 解 析 协 议 为 IP 地 址 到 对 应 的 硬 件 地 址 之 间 提 供 动 态 映 射 阿 里 云 内

A API Application Programming Interface 见 应 用 程 序 编 程 接 口 ARP Address Resolution Protocol 地 址 解 析 协 议 为 IP 地 址 到 对 应 的 硬 件 地 址 之 间 提 供 动 态 映 射 阿 里 云 内 A API Application Programming Interface 见 应 用 程 序 编 程 接 口 ARP Address Resolution Protocol 地 址 解 析 协 议 为 IP 地 址 到 对 应 的 硬 件 地 址 之 间 提 供 动 态 映 射 阿 里 云 内 容 分 发 网 络 Alibaba Cloud Content Delivery Network 一

More information

ABOUT ME AGENDA 唐建法 / TJ MongoDB 高级方案架构师 MongoDB 中文社区联合发起人 Spark 介绍 Spark 和 MongoDB 案例演示

ABOUT ME AGENDA 唐建法 / TJ MongoDB 高级方案架构师 MongoDB 中文社区联合发起人 Spark 介绍 Spark 和 MongoDB 案例演示 完整的大数据解決方案 ABOUT ME AGENDA 唐建法 / TJ MongoDB 高级方案架构师 MongoDB 中文社区联合发起人 Spark 介绍 Spark 和 MongoDB 案例演示 Dataframe Pig YARN Spark Stand Alone HDFS Spark Stand Alone Mesos Mesos Spark Streaming Hive Hadoop

More information

VASP应用运行优化

VASP应用运行优化 1 VASP wszhang@ustc.edu.cn April 8, 2018 Contents 1 2 2 2 3 2 4 2 4.1........................................................ 2 4.2..................................................... 3 5 4 5.1..........................................................

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

RAID RAID 0 RAID 1 RAID 5 RAID * ( -1)* ( /2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( )

RAID RAID 0 RAID 1 RAID 5 RAID * ( -1)* ( /2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( ) RAID RAID 0 RAID 1 RAID 5 RAID 10 2 2 3 4 * (-1)* (/2)* No Yes Yes Yes A. B. BIOS SATA C. RAID BIOS RAID ( ) D. SATA RAID/AHCI ( ) SATA M.2 SSD ( ) ( ) ( ) Windows USB 1 SATA A. SATASATAIntel SATA (SATA3

More information

IP505SM_manual_cn.doc

IP505SM_manual_cn.doc IP505SM 1 Introduction 1...4...4...4...5 LAN...5...5...6...6...7 LED...7...7 2...9...9...9 3...11...11...12...12...12...14...18 LAN...19 DHCP...20...21 4 PC...22...22 Windows...22 TCP/IP -...22 TCP/IP

More information

AL-M200 Series

AL-M200 Series NPD4754-00 TC ( ) Windows 7 1. [Start ( )] [Control Panel ()] [Network and Internet ( )] 2. [Network and Sharing Center ( )] 3. [Change adapter settings ( )] 4. 3 Windows XP 1. [Start ( )] [Control Panel

More information

2005 3

2005 3 Text 2009.4 hongqn@douban.com 2005 3 2.8M 1/4 20M / 500~600/sec 23 PC (1U*15/2U*8) 12 38G memcached 1U (frodo) AMD Athlon 64 1.8GHz 1G 160G SATA*2 Gentoo Linux MySQL 5 Quixote (a Python web framework)

More information

ebook 132-6

ebook 132-6 6 SQL Server Windows NT Windows 2000 6.1 Enterprise Manager SQL Server Enterprise Manager( ) (Microsoft Management C o n s o l e M M C ) Enterprise Manager SQL Server Enterprise Manager 6.1.1 Enterprise

More information

ebook140-8

ebook140-8 8 Microsoft VPN Windows NT 4 V P N Windows 98 Client 7 Vintage Air V P N 7 Wi n d o w s NT V P N 7 VPN ( ) 7 Novell NetWare VPN 8.1 PPTP NT4 VPN Q 154091 M i c r o s o f t Windows NT RAS [ ] Windows NT4

More information

支付宝2011年 IT资产与费用预算

支付宝2011年 IT资产与费用预算 OceanBase 支 持 ACID 的 可 扩 展 关 系 数 据 库 qushan@alipay.com 2013 年 04 月 关 系 数 据 库 发 展 1970-72:E.F.Codd 数 据 库 关 系 模 式 20 世 纨 80 年 代 第 一 个 商 业 数 据 库 Oracle V2 SQL 成 为 数 据 库 行 业 标 准 可 扩 展 性 Mainframe: 小 型 机 =>

More information

C/C++ - 字符输入输出和字符确认

C/C++ - 字符输入输出和字符确认 C/C++ Table of contents 1. 2. getchar() putchar() 3. (Buffer) 4. 5. 6. 7. 8. 1 2 3 1 // pseudo code 2 read a character 3 while there is more input 4 increment character count 5 if a line has been read,

More information

ebook140-9

ebook140-9 9 VPN VPN Novell BorderManager Windows NT PPTP V P N L A V P N V N P I n t e r n e t V P N 9.1 V P N Windows 98 Windows PPTP VPN Novell BorderManager T M I P s e c Wi n d o w s I n t e r n e t I S P I

More information

BYOD Http Redirect convergence Client (1) 2008R2 NLB( ) (2) NLB Unicast mode switch flooding (arp ) NLB DNS Redirect 1. Round-Robin DNS DNS IP/DNS Cli

BYOD Http Redirect convergence Client (1) 2008R2 NLB( ) (2) NLB Unicast mode switch flooding (arp ) NLB DNS Redirect 1. Round-Robin DNS DNS IP/DNS Cli BYOD 204 2015 GoogleHicloud (Load Balance) Server Load Balance Link Load Balance Server Redirect 1. URL Redirect redirector URL redirect Real Server Client HTTP Real Server Web Client 2 (1) URL Redirect

More information

P4i45GL_GV-R50-CN.p65

P4i45GL_GV-R50-CN.p65 1 Main Advanced Security Power Boot Exit System Date System Time Floppy Drives IDE Devices BIOS Version Processor Type Processor Speed Cache Size Microcode Update Total Memory DDR1 DDR2 Dec 18 2003 Thu

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

Oracle 4

Oracle 4 Oracle 4 01 04 Oracle 07 Oracle Oracle Instance Oracle Instance Oracle Instance Oracle Database Oracle Database Instance Parameter File Pfile Instance Instance Instance Instance Oracle Instance System

More information

PTS7_Manual.PDF

PTS7_Manual.PDF User Manual Soliton Technologies CO., LTD www.soliton.com.tw - PCI V2.2. - PCI 32-bit / 33MHz * 2 - Zero Skew CLK Signal Generator. - (each Slot). -. - PCI. - Hot-Swap - DOS, Windows 98/2000/XP, Linux

More information

untitled

untitled Work Managers 什 Work Managers? WebLogic Server 9.x 行 (thread) 理 thread pool 數量 立 execute queues 來 量 理 thread count, thread priority 參數 理 thread pool 數量? WebLogic Server 9.x 理 行 (thread) (self-tuning) 句

More information

第 06 期 李祥池 : 基于 ELK 和 Spark Streaming 的日志分析系统设计与实现 1 日志 1.1 日志定义 IT 1.2 日志处理方案演进 v1.0 v2.0 Hadoop Storm Spark Hadoop/Storm/Spark v3.0 TB Splunk ELK SI

第 06 期 李祥池 : 基于 ELK 和 Spark Streaming 的日志分析系统设计与实现 1 日志 1.1 日志定义 IT 1.2 日志处理方案演进 v1.0 v2.0 Hadoop Storm Spark Hadoop/Storm/Spark v3.0 TB Splunk ELK SI 电子科学技术第 02 卷第 06 期 2015 年 11 月 Electronic Science & Technology Vol.02 No.06 Nov.2015 年 基于 ELK 和 Spark Streaming 的日志分析系统设计与实现 李祥池 ( 杭州华三通信技术有限公司北京研究所, 北京,100085) 摘要 : 在大数据时代 对数据平台各组件的运行状态实时监控与运行分析具有重要意义

More information

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM

2 2 3 DLight CPU I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AM Oracle Solaris Studio 12.2 DLight 2010 9 2 2 3 DLight 3 3 6 13 CPU 16 18 21 I/O DLight Oracle Solaris (DTrace) C/C++ Solaris DLight DTrace DLight DLight DLight C C++ Fortran CPU I/O DLight AMP Apache MySQL

More information

untitled

untitled ArcSDE ESRI ( ) High availability Backup & recovery Clustering Replication Mirroring Standby servers ArcSDE % 95% 99.9% 99.99% 99.999% 99.9999% 18.25 / 8.7 / 52.5 / 5.25 / 31.8 / Spatial Geodatabase

More information

Microsoft PowerPoint - ARC110_栾跃.ppt

Microsoft PowerPoint - ARC110_栾跃.ppt ARC110 软 件 构 架 设 计 的 原 则 和 指 南 课 程 内 容 概 述 介 绍 和 引 言 软 件 构 架 和 构 架 师 软 件 构 架 的 设 计 模 式 框 架 和 参 照 设 计 自 我 介 绍 第 一 代 自 费 留 学 生 : 美 国 南 伊 利 诺 州 立 大 学 (SIUE) 电 机 工 程 学 士 (1984) 及 硕 士 学 位 (1985) 历 任 OwensIllinois,

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

Simulator By SunLingxi 2003

Simulator By SunLingxi 2003 Simulator By SunLingxi sunlingxi@sina.com 2003 windows 2000 Tornado ping ping 1. Tornado Full Simulator...3 2....3 3. ping...6 4. Tornado Simulator BSP...6 5. VxWorks simpc...7 6. simulator...7 7. simulator

More information

Microsoft PowerPoint - talk8.ppt

Microsoft PowerPoint - talk8.ppt Adaptive Playout Scheduling Using Time-scale Modification Yi Liang, Nikolaus Färber Bernd Girod, Balaji Prabhakar Outline QoS concerns and tradeoffs Jitter adaptation as a playout scheduling scheme Packet

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 Hadoop 生 态 技 术 在 阿 里 全 网 商 品 搜 索 实 战 阿 里 巴 巴 - 王 峰 自 我 介 绍 真 名 : 王 峰 淘 宝 花 名 : 莫 问 微 博 : 淘 莫 问 2006 年 硕 士 毕 业 后 加 入 阿 里 巴 巴 集 团 淘 及 搜 索 事 业 部 ( 高 级 技 术 与 家 ) 目 前 负 责 搜 索 离 线 系 统 团 队 技 术 方 向 : 分 布 式 计 算

More information

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8

els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June, 009 9:5 AM ELS-0/0C.8 Yamaha ELS-0/0C..8 LCD ELS-0/0C v. typeu LCD ELS-0/0C typeu / -6 / [SEARCH] / - ZH ELS-0/0C.8 els0xu_zh_nf_v8.book Page Wednesday, June,

More information

幻灯片 1

幻灯片 1 Bring Shopper Research Into Category Solution Content What is the difference between Shopper Research and Consumer Research? Bring Shopper Research into Category Solution Case Share Page 2 Shopper Research

More information

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

IP Access Lists IP Access Lists IP Access Lists

IP Access Lists IP Access Lists IP Access Lists Chapter 10 Access Lists IP Access Lists IP Access Lists IP Access Lists Security) IP Access Lists Access Lists (Network router For example, RouterA can use an access list to deny access from Network 4

More information

untitled

untitled ArcGIS Server Web services Web services Application Web services Web Catalog ArcGIS Server Web services 6-2 Web services? Internet (SOAP) :, : Credit card authentication, shopping carts GIS:, locator services,

More information

ebook140-11

ebook140-11 11 VPN Windows NT4 B o r d e r M a n a g e r VPN VPN V P N V P N V P V P N V P N TCP/IP 11.1 V P N V P N / ( ) 11.1.1 11 V P N 285 2 3 1. L A N LAN V P N 10MB 100MB L A N VPN V P N V P N Microsoft PPTP

More information

PowerPoint Presentation

PowerPoint Presentation 使用 Amazon Kinesis Firehose 和 Amazon Redshift 进行数据流分析 李君,AWS 高级技术讲师 Amy Li, Technical Trainer, Amazon Web Services 今日议程 AWS 上大数据应用体系介绍 Amazon Kinesis Firehose & Amazon Redshift 一起动手搭建日志分析流处理解决方案 Q & A Step

More information

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10

Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Serial ATA ( Silicon Image SiI3114)...2 (1) SATA... 2 (2) B I O S S A T A... 3 (3) RAID BIOS RAID... 5 (4) S A T A... 8 (5) S A T A... 10 Ác Åé å Serial ATA ( Silicon Image SiI3114) S A T A (1) SATA (2)

More information

untitled

untitled LBS Research and Application of Location Information Management Technology in LBS TP319 10290 UDC LBS Research and Application of Location Information Management Technology in LBS , LBS PDA LBS

More information

<4D6963726F736F667420576F7264202D20B5E7D7D3C9CCCEF1D7A8D2B5C5E0D1F8B7BDB0B8D0DEB6C1D6B8C4CFA3A832303136BCB6A3A92E646F63>

<4D6963726F736F667420576F7264202D20B5E7D7D3C9CCCEF1D7A8D2B5C5E0D1F8B7BDB0B8D0DEB6C1D6B8C4CFA3A832303136BCB6A3A92E646F63> 福 州 大 校 训 博 远 志 明 德 至 诚 目 录 福 州 大 大 英 语 课 程 教 实 施 方 案 1 福 州 大 大 信 息 技 术 基 础 分 级 教 实 施 方 案 2 电 子 商 务 专 业 培 养 方 案 3 电 子 商 务 专 业 简 介 10 培 养 方 案 解 读 16 管 理 院 电 子 商 务 专 业 课 程 安 排 表 21 福 州 大 大 英 语 课 程 教 实 施

More information

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco

Windows RTEMS 1 Danilliu MMI TCP/IP QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos eco Windows RTEMS 1 Danilliu MMI TCP/IP 80486 QEMU i386 QEMU ARM POWERPC i386 IPC PC104 uc/os-ii uc/os MMI TCP/IP i386 PORT Linux ecos Linux ecos ecos ecos Email www.rtems.com RTEMS ecos RTEMS RTEMS Windows

More information

Dell EMC Data Domain DDOS 5.5 Data Domain Data Domain Data Domain : Data Domain Boost (DDBoost) Dell EMC DDBoost Data Domain DDBoost Source De-Dup Bac

Dell EMC Data Domain DDOS 5.5 Data Domain Data Domain Data Domain : Data Domain Boost (DDBoost) Dell EMC DDBoost Data Domain DDBoost Source De-Dup Bac Dell EMC Dell EMC IT Dell EMC IT Dell EMC https://www. dellemc.com/ Dell EMC Data Domain DDOS 5.5 Data Domain Data Domain Data Domain : Data Domain Boost (DDBoost) Dell EMC DDBoost Data Domain DDBoost

More information

PowerPoint Presentation

PowerPoint Presentation 无服务器架构设计模式和最佳实践 Serverless Architectural Patterns and Best Practices 李磊, AWS 解决方案架构师 Leon Li, Solutions Architect, Web Services 2017 年 9 月 26 日 Sep 26, 2017 议程 无服务器架构的特征和实践经典的三层架构批处理流式处理自动化处理中的无服务器应用 BMC

More information

资源管理软件TORQUE与作业调度软件Maui的安装、设置及使用

资源管理软件TORQUE与作业调度软件Maui的安装、设置及使用 TORQUE Maui hmli@ustc.edu.cn 2008 1 1 TORQUE 2 1.1 TORQUE........................... 2 1.2 TORQUE...................... 2 1.3 TORQUE.......................... 4 1.4 TORQUE........................... 4

More information

第一章 Linux與網路資源

第一章 Linux與網路資源 1 28 Proxy Server 28-1 Proxy proxy Server rpm qa grep squid Linux Proxy Proxy Proxy Proxy Proxy Request Proxy Proxy Proxy RedHat Linux Fedora #mount /mnt/cdrom squid squid Proxy #cd /mnt/cdrom/redhat/rpms

More information

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc Key @ Value Chain fanchihmin@yahoo.com.tw 1 Key@ValueChain 1994.6 1996.6 2000.6 2000.10 ~ 2004.10 (E- RD / Pre-Sales / Consultant) APS, Advanced Planning & Scheduling CDP, Collaborative Demand Planning

More information

Microsoft PowerPoint - ch6 [相容模式]

Microsoft PowerPoint - ch6 [相容模式] UiBinder wzyang@asia.edu.tw UiBinder Java GWT UiBinder XML UI i18n (widget) 1 2 UiBinder HelloWidget.ui.xml: UI HelloWidgetBinder HelloWidget.java XML UI Owner class ( Composite ) UI XML UiBinder: Owner

More information

实践课堂成都站-0609.key

实践课堂成都站-0609.key 青云 QingCloud 容器器及 Kubernetes 实践 王渊命 青云 QingCloud 容器器平台负责 人 当我们谈论容器器时我们在谈论什什么? 容器器的两个视 角 资源隔离 应 用封装 容器器 生态圈现状 容器器技术 一家独 大百花 齐放 Docker, Rocket, Mesos Universal container, LXC, Hyper Container 调度系统三 足鼎 立

More information

C3_ppt.PDF

C3_ppt.PDF C03-101 1 , 2 (Packet-filtering Firewall) (stateful Inspection Firewall) (Proxy) (Circuit Level gateway) (application-level gateway) (Hybrid Firewall) 2 IP TCP 10.0.0.x TCP Any High Any 80 80 10.0.0.x

More information

软件测试(TA07)第一学期考试

软件测试(TA07)第一学期考试 一 判 断 题 ( 每 题 1 分, 正 确 的, 错 误 的,20 道 ) 1. 软 件 测 试 按 照 测 试 过 程 分 类 为 黑 盒 白 盒 测 试 ( ) 2. 在 设 计 测 试 用 例 时, 应 包 括 合 理 的 输 入 条 件 和 不 合 理 的 输 入 条 件 ( ) 3. 集 成 测 试 计 划 在 需 求 分 析 阶 段 末 提 交 ( ) 4. 单 元 测 试 属 于 动

More information

Connected Intelligence:ビッグデータ技術を活用したIT運用

Connected Intelligence:ビッグデータ技術を活用したIT運用 HP Technology At Work 2015 Connected Intelligence IT HP 0 Copyright 2015 Hewlett-Packard Development Company, L.P. The information contained herein is subject to change without notice. HP New Style of

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

Azure_s

Azure_s Azure ? Azure Azure Windows Server Database Server Azure Azure Azure Azure Azure Azure Azure Azure OpenSource Azure IaaS Azure VM Windows Server Linux PaaS Azure ASP.NET PHP Node.js Python MS SQL MySQL

More information

DocHdl2OnPPMtmpTarget

DocHdl2OnPPMtmpTarget 雲端運算及應用之淺談 ( 上 ) 曾婉菁 印刷科技 Google Google Grid computing Utility computing 1. 2. IBM 3. Microsoft 4. Google 5. NIST 6. Gartner IT as a service 1 1. Private Cloud 2. Public Cloud 3. Hybrid Cloud 4. Community

More information

2015年4月11日雅思阅读预测机经(新东方版)

2015年4月11日雅思阅读预测机经(新东方版) 剑 桥 雅 思 10 第 一 时 间 解 析 阅 读 部 分 1 剑 桥 雅 思 10 整 体 内 容 统 计 2 剑 桥 雅 思 10 话 题 类 型 从 以 上 统 计 可 以 看 出, 雅 思 阅 读 的 考 试 话 题 一 直 广 泛 多 样 而 题 型 则 稳 中 有 变 以 剑 桥 10 的 test 4 为 例 出 现 的 三 篇 文 章 分 别 是 自 然 类, 心 理 研 究 类,

More information

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南

Symantec™ Sygate Enterprise Protection 防护代理安装使用指南 Symantec Sygate Enterprise Protection 防 护 代 理 安 装 使 用 指 南 5.1 版 版 权 信 息 Copyright 2005 Symantec Corporation. 2005 年 Symantec Corporation 版 权 所 有 All rights reserved. 保 留 所 有 权 利 Symantec Symantec 徽 标 Sygate

More information

ext-web-auth-wlc.pdf

ext-web-auth-wlc.pdf 使 用 无 线 局 域 网 控 制 器 的 外 部 Web 身 份 验 证 配 置 示 例 目 录 简 介 先 决 条 件 要 求 使 用 的 组 件 规 则 背 景 信 息 外 部 Web 身 份 验 证 过 程 网 络 设 置 配 置 为 来 宾 用 户 创 建 动 态 接 口 创 建 预 先 身 份 验 证 ACL 在 WLC 上 为 来 宾 用 户 创 建 本 地 数 据 库 配 置 外 部

More information

VIDEOJET connect 7000 VJC-7000-90 zh- CHS Operation Manual VIDEOJET connect 7000 zh-chs 3 目 录 1 浏 览 器 连 接 7 1.1 系 统 要 求 7 1.2 建 立 连 接 7 1.2.1 摄 像 机 中 的 密 码 保 护 7 1.3 受 保 护 的 网 络 7 2 系 统 概 述 8 2.1 实 况

More information

PowerPoint 演示文稿

PowerPoint 演示文稿 AWS 数据库服务综述 Ryan Huang 黄皓 haohuang@amazon.com AWS 技术销售部 2014.12 2014 Amazon.com, Inc. and its affiliates. All rights reserved. May not be copied, modified, or distributed in whole or in part without the

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL steven@nchc.gov.tw, c00hkl00@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Jan, 2003 1 2003/1/28 ( ) 09:00-10:30 10:40-12:00 Linux 13:00-14:30

More information

PowerPoint Presentation

PowerPoint Presentation AWS 中国多区域部署方案简介 目录 宁夏区域简介 多区域部署涉及的技术方案 多区域部署的应用场景 多区域部署案例 由西云数据运营的 AWS 中国 ( 宁夏 ) 区域成为中国的第二个 AWS 区域 Ningxia Beijing 2017 年 12 月发布 地处宁夏中卫 目前两个可用区 主要运营商的 BGP 带宽 宁夏区域已提供丰富的服务 计算及存储 Amazon Elastic Compute Cloud

More information

既 設 建 築 物 汙 水 處 理 設 施 生 化 需 氧 量 三 O 化 學 需 氧 量 一 OO 流 量 大 於 二 五 O 立 方 公 尺 / 日 懸 浮 固 體 三 O 大 腸 桿 菌 群 二 OO OOO 生 化 需 氧 量 五 O 既 設 建 築 物 指 中 華 民 國 九 化 學 需

既 設 建 築 物 汙 水 處 理 設 施 生 化 需 氧 量 三 O 化 學 需 氧 量 一 OO 流 量 大 於 二 五 O 立 方 公 尺 / 日 懸 浮 固 體 三 O 大 腸 桿 菌 群 二 OO OOO 生 化 需 氧 量 五 O 既 設 建 築 物 指 中 華 民 國 九 化 學 需 台 灣 基 層 透 析 協 會 本 會 宗 旨 : 關 懷 透 析 病 患, 提 升 透 析 品 質, 維 護 透 析 診 所 與 病 患 的 權 益, 最 新 消 息 : 協 助 政 府 制 定 相 關 醫 療 政 策 及 推 行 健 康 保 險 制 度 105 年 6 月 1 日, 腎 臟 醫 學 會 林 元 灝 秘 書 長 和 基 層 透 析 協 會 顏 大 翔 秘 書 長 至 劉 建 國 立

More information

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2

(Guangzhou) AIT Co, Ltd V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn Xi III Zebra XI III 1 (Guangzhou) AIT Co, Ltd 020-84106666 020-84106688 http://wwwlenxcn 230V 110V [ ]! 2 (Guangzhou) AIT Co, Ltd 020-84106666

More information

Olav Lundström MicroSCADA Pro Marketing & Sales 2005 ABB - 1-1MRS755673

Olav Lundström MicroSCADA Pro Marketing & Sales 2005 ABB - 1-1MRS755673 Olav Lundström MicroSCADA Pro Marketing & Sales 2005 ABB - 1 - Contents MicroSCADA Pro Portal Marketing and sales Ordering MicroSCADA Pro Partners Club 2005 ABB - 2 - MicroSCADA Pro - Portal Imagine that

More information

学 校 编 码 :10384 分 类 号 密 级 学 号 :X2007155130 UDC 厦 门 怡 福 养 生 健 康 管 理 有 限 公 司 创 业 计 划 王 韬 指 导 教 师 姓 名 : 郭 霖 教 授 厦 门 大 学 硕 士 学 位 论 文 厦 门 怡 福 养 生 健 康 管 理 有 限 公 司 创 业 计 划 A Business Plan for Xiamen Eve Health

More information

untitled

untitled Ogre Rendering System http://antsam.blogone.net AntsamCGD@hotmail.com geometry systemmaterial systemshader systemrendering system API API DirectX OpenGL API Pipeline Abstraction API Pipeline Pipeline configurationpipeline

More information

RAID RAID 0 RAID 1 RAID 5 RAID * (-1)* (/ 2)* No Yes Yes Yes SATA A. B. BIOS SATA C. RAID BIOS RAID ( ) D. RAID/AHCI ( ) S ATA S S D ( ) (

RAID RAID 0 RAID 1 RAID 5 RAID * (-1)* (/ 2)* No Yes Yes Yes SATA A. B. BIOS SATA C. RAID BIOS RAID ( ) D. RAID/AHCI ( ) S ATA S S D ( ) ( SATA... 2 RAID/AHCI... 16 Intel Optane... 19 Intel Virtual RAID on CPU (Intel VROC)... 21 RAID RAID 0 RAID 1 RAID 5 RAID 10 2 2 3 4 * (-1)* (/ 2)* No Yes Yes Yes SATA A. B. BIOS SATA C. RAID BIOS RAID

More information

Microsoft Word - 11.doc

Microsoft Word - 11.doc 除 錯 技 巧 您 將 於 本 章 學 到 以 下 各 項 : 如 何 在 Visual C++ 2010 的 除 錯 工 具 控 制 下 執 行 程 式? 如 何 逐 步 地 執 行 程 式 的 敘 述? 如 何 監 看 或 改 變 程 式 中 的 變 數 值? 如 何 監 看 程 式 中 計 算 式 的 值? 何 謂 Call Stack? 何 謂 診 斷 器 (assertion)? 如 何

More information

SiteView技术白皮书

SiteView技术白皮书 SiteView ECC V6.2 技 术 白 皮 书 游 龙 网 络 科 技 ( 中 国 ) 有 限 公 司 DragonFlow Networks(China),Inc. 目 录 第 一 章 产 品 概 述... 3 第 二 章 系 统 结 构... 6 一 系 统 架 构... 7 1 用 户 管 理 模 块... 7 2 Web Server... 8 3 存 储 加 密 模 块... 8

More information

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

Chapter 24 DC Battery Sizing

Chapter 24  DC Battery Sizing 26 (Battery Sizing & Discharge Analysis) - 1. 2. 3. ETAP PowerStation IEEE 485 26-1 ETAP PowerStation 4.7 IEEE 485 ETAP PowerStation 26-2 ETAP PowerStation 4.7 26.1 (Study Toolbar) / (Run Battery Sizing

More information

Microsoft Word - A200811-1988.doc

Microsoft Word - A200811-1988.doc RTS 游 戏 的 流 量 特 性 分 析 李 程 北 京 邮 电 大 学 宽 带 网 络 监 控 教 研 中 心, 北 京 (8) E-mail:quickiecheng@gmail.com 摘 要 : 随 着 网 络 游 戏 日 益 流 行, 网 络 游 戏 的 流 量 在 网 络 中 的 分 量 越 来 越 多, 所 以 对 网 络 游 戏 的 流 量 特 性 分 析 就 很 有 意 义 本

More information

Microsoft Word - PS2_linux_guide_cn.doc

Microsoft Word - PS2_linux_guide_cn.doc Linux For $ONY PlayStatioin2 Unofficall General Guide Language: Simplified Chinese First Write By Beter Hans v0.1 Mail: hansb@citiz.net Version: 0.1 本 人 是 菜 鸟 + 小 白 欢 迎 指 正 错 误 之 处, 如 果 您 有 其 他 使 用 心 得

More information

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2

User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Terminal Mode No User User ID 150 Password - User ID 150 Password Mon- Cam-- Invalid Terminal Mode No User Terminal Mode No User Mon- Cam-- 2 Mon1 Cam-- Mon- Cam-- Prohibited M04 Mon1 Cam03 Mon1 Cam03

More information

ebook20-7

ebook20-7 7 Catalyst 5000 Catalyst 5000 Cisco Works for Switched Internetworks (CWSI) C L I C L I G U I C L C W S I C i s c o C W S I C L I I P Te l n e t C L I 9600 8 6 7.1 Catalyst C a t a l y s t Cisco IOS C

More information

Chapter 2

Chapter 2 2 (Setup) ETAP PowerStation ETAP ETAP PowerStation PowerStation PowerPlot ODBC SQL Server Oracle SQL Server Oracle Windows SQL Server Oracle PowerStation PowerStation PowerStation PowerStation ETAP PowerStation

More information

audiogram3 Owners Manual

audiogram3 Owners Manual USB AUDIO INTERFACE ZH 2 AUDIOGRAM 3 ( ) * Yamaha USB Yamaha USB ( ) ( ) USB Yamaha (5)-10 1/2 AUDIOGRAM 3 3 MIC / INST (XLR ) (IEC60268 ): 1 2 (+) 3 (-) 2 1 3 Yamaha USB Yamaha Yamaha Steinberg Media

More information

Kubenetes 系列列公开课 2 每周四晚 8 点档 1. Kubernetes 初探 2. 上 手 Kubernetes 3. Kubernetes 的资源调度 4. Kubernetes 的运 行行时 5. Kubernetes 的 网络管理理 6. Kubernetes 的存储管理理 7.

Kubenetes 系列列公开课 2 每周四晚 8 点档 1. Kubernetes 初探 2. 上 手 Kubernetes 3. Kubernetes 的资源调度 4. Kubernetes 的运 行行时 5. Kubernetes 的 网络管理理 6. Kubernetes 的存储管理理 7. Kubernetes 包管理理 工具 Helm 蔺礼强 Kubenetes 系列列公开课 2 每周四晚 8 点档 1. Kubernetes 初探 2. 上 手 Kubernetes 3. Kubernetes 的资源调度 4. Kubernetes 的运 行行时 5. Kubernetes 的 网络管理理 6. Kubernetes 的存储管理理 7. Kubernetes

More information

Microsoft PowerPoint ARIS_Platform_en.ppt

Microsoft PowerPoint ARIS_Platform_en.ppt ARIS Platform www.ixon.com.tw ARIS ARIS Architecture of Integrated Information System Prof. Dr. Dr. h.c. mult. August-Wilhelm Scheer ARIS () 2 IDS Scheer AG International Presence >> Partners and subsidiaries

More information

深入理解otter

深入理解otter 深 入 理 解 otter 七 锋 2013-07-04 Agenda 1. 中 美 同 步 需 求 2. otter 架 构 & 设 计 o o o o o o o o 如 何 解 决 " 差 " 网 络 如 何 避 免 双 向 回 环 如 何 处 理 数 据 一 致 性 如 何 高 效 同 步 数 据 如 何 高 效 同 步 文 件 如 何 支 持 系 统 HA 如 何 处 理 特 殊 业 务

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

UDC The Policy Risk and Prevention in Chinese Securities Market

UDC The Policy Risk and Prevention in Chinese Securities Market 10384 200106013 UDC The Policy Risk and Prevention in Chinese Securities Market 2004 5 2004 2004 2004 5 : Abstract Many scholars have discussed the question about the influence of the policy on Chinese

More information

DPark MapReduce (Davies) davies@douban.com 2011/12/07 Velocity China 2011 Douban Douban 5500 Douban 5500 1000G, Douban 5500 1000G, 60+ Douban 5500 1000G, 60+ 200+ Douban 5500 1000G, 60+ 200+ > MooseFS

More information

Cube20S small, speedy, safe Eextremely modular Up to 64 modules per bus node Quick reaction time: up to 20 µs Cube20S A new Member of the Cube Family

Cube20S small, speedy, safe Eextremely modular Up to 64 modules per bus node Quick reaction time: up to 20 µs Cube20S A new Member of the Cube Family small, speedy, safe Eextremely modular Up to 64 modules per bus de Quick reaction time: up to 20 µs A new Member of the Cube Family Murrelektronik s modular I/O system expands the field-tested Cube family

More information

HOL-CHG-1695

HOL-CHG-1695 Table of Contents 练 习 概 述 - - vsphere 挑 战 练 习... 2 练 习 指 导... 3 第 1 单 元 : 在 实 践 中 学 习 (15 分 钟 )... 5 剪 贴 板 复 制 和 粘 贴 功 能 无 法 使 用?... 6 虚 拟 机 性 能 不 佳... 17 第 2 单 元 : 基 本 运 维 挑 战 (30 分 钟 )... 32 无 法 登 录

More information

Session Number VVT-291 Cisco ACNS / Microsoft WMT Don't Know None Others Investor relations Business to business collaboration Marketing events raining for customers and suppliers External communications

More information

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile..

WebSphere Studio Application Developer IBM Portal Toolkit... 2/21 1. WebSphere Portal Portal WebSphere Application Server stopserver.bat -configfile.. WebSphere Studio Application Developer IBM Portal Toolkit... 1/21 WebSphere Studio Application Developer IBM Portal Toolkit Portlet Doug Phillips (dougep@us.ibm.com),, IBM Developer Technical Support Center

More information

epub 61-2

epub 61-2 2 Web Dreamweaver UltraDev Dreamweaver 3 We b We b We Dreamweaver UltraDev We b Dreamweaver UltraDev We b We b 2.1 Web We b We b D r e a m w e a v e r J a v a S c r i p t We b We b 2.1.1 Web We b C C +

More information

1

1 DOCUMENTATION FOR FAW-VW Auto Co., Ltd. Sales & Service Architecture Concept () () Version 1.0.0.1 Documentation FAW-VW 1 61 1...4 1.1...4 2...4 3...4 3.1...4 3.2...5 3.3...5 4...5 4.1 IP...5 4.2 DNSDNS...6

More information

簡報技巧

簡報技巧 2 Q & A 4 7 Presenter Audienc e 7 10 / 11 7 / 11 / 7 55 11 / 7 55 38 11 12 13 14 Q & A 1. : 1. : 1. : / 5W Who What When Where Why 1. : / 5W Who What When 5W2H How to do How much Where Why 1.

More information

NTSE: Non-Transactional Storage Engine MySQL InnoDB 10 InnoDB +Memcached 5 50% / K C++

NTSE: Non-Transactional Storage Engine MySQL InnoDB 10 InnoDB +Memcached 5 50% / K C++ NTSE Web MySQL (Breezes/ ).. http://wangyuanzju.blog.163.com wangyuan@corp.netease.com NTSE: Non-Transactional Storage Engine MySQL InnoDB 10 InnoDB +Memcached 5 50% / 2008.6 2010.5 90K C++ Web - UGC

More information

自由軟體教學平台

自由軟體教學平台 NCHC Opensource task force DRBL c00hkl00@nchc.gov.tw, steven@nchc.gov.tw National Center for High-Performance Computing http://www.nchc.gov.tw Dec, 2002 1 Outline 1. 2. DRBL 3. 4. Service DHCP, TFTP, NFS,

More information

在 ongodb 中实现强事务

在 ongodb 中实现强事务 在 ongodb 中实现强事务 600+ employees 2,000+ customers 13 offices worldwide 15,000,000+ Downloads RANK DBMS MODEL SCORE GROWTH (20 MO) 1. Oracle Rela+onal DBMS 1,442-5% 2. MySQL Rela+onal DBMS 1,294 2% 3.

More information

<4D6963726F736F667420576F7264202D20B5DAC8FDB7BDBE57C9CFD6A7B8B6D6AEB7A8C2C98696EE7DCCBDBEBF2E646F63>

<4D6963726F736F667420576F7264202D20B5DAC8FDB7BDBE57C9CFD6A7B8B6D6AEB7A8C2C98696EE7DCCBDBEBF2E646F63> 題 目 : 第 三 方 網 上 支 付 之 法 律 問 題 探 究 Title:A study on legal issues of the third-party online payment 姓 名 Name 學 號 Student No. 學 院 Faculty 課 程 Program 專 業 Major 指 導 老 師 Supervisor 日 期 Date : 王 子 瑜 : 1209853J-LJ20-0021

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

RunPC2_.doc

RunPC2_.doc PowerBuilder 8 (5) PowerBuilder Client/Server Jaguar Server Jaguar Server Connection Cache Thin Client Internet Connection Pooling EAServer Connection Cache Connection Cache Connection Cache Connection

More information

PROFIBUS3.doc

PROFIBUS3.doc PLC PLC ProfiBus 3. PROFIBUS-DP PROFIBUS-DP PROFIBUS-DP PROFIBUS S7 STEP7 SIMATIC NET S5 COM PROFIBUS COM5431 PROFIBUS-DP GSD GSD *.GSD *. GSE GSD S7 STEP7 PROFIBUS DP S7-400 CPU416-2DP S7-200 PROFIBUS

More information

Get Started产品文档

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

More information

附件9 电梯运行安全监测管理信息平台技术规范 第11部分:系统信息安全技术规范(征求意见稿)

附件9 电梯运行安全监测管理信息平台技术规范 第11部分:系统信息安全技术规范(征求意见稿) ICS 35.240.01 M 63 备 案 号 : - 北 京 市 地 方 标 准 DB11/ XXX.1 XXXX 电 梯 运 行 安 全 监 测 管 理 信 息 平 台 技 术 规 范 第 11 部 分 : 系 统 信 息 安 全 规 范 Technical Specification for Management Information Platform of Elevator Operation

More information

KL DSC DEMO 使用说明

KL DSC DEMO 使用说明 :0755-82556825 83239613 : (0755)83239613 : http://www.kingbirdnet.com EMAIL Good989@163.com 1 1 KB3000 DTU... 3 1.1... 3 1.2... 3 1.3... 3 1.4... 3 2... 4 2.1 GSM/GPRS... 4 2.2... 4 2.3... 5 2.4... 6 2.5...

More information