Cache and buffer management
|
|
- 영학 신
- 6 years ago
- Views:
Transcription
1 1 IO-Lite: A unified I/O buffering and caching system By Pai, Druschel, and Zwaenepoel (OSDI, 1999) Presented by Eunsoo Park Operating System Design, Spring 2016
2 Introduction 2 Motivation 범용 OS à 서버의성능악화 à 서버 HW 비용증가 원인 : 다양한 I/O subsystem 들에대한통합부재 결과 à 여러 I/O subsystem 들에서다음과같은문제발생 Redundant data copying Multiple buffering Lack of cross-subsystem optimization Idea 통합된 Buffer Interface 를제공 = IO-Lite 커널의각 I/O Subsystem ( IPC, Filesystem, Network ) 에삽입 Application 에 IO-Lite Library 제공 à 선택적으로사용 효과 freebsd 에구현하여성능측정 àreal Workload 에서 40~80% 성능향상
3 Redundant Data Copying 3 I/O Data path 를따라데이터가이동하면서 Data 복사가여러번발생하는현상 원인 : System 의구조체 & Interface 를사용하기때문에발생 문제 : 성능저하 ( 불필요한 Copy Operation ) User User buffer User User buffer Kernel File Cache Data Copy write Kernel Data Copy Network Buffer write Storage File A Network Interface
4 Multiple Buffering 4 Buffering / Caching 불완전한통합으로인해같은 Data Object 의여러사본이 Memory 에존재하는현상 원인 : 여러 I/O Subsystem 들간의소통부재 영향 : 메모리낭비 à 다른파일캐시의 Hit rate 감소 Web Server Example ( When server sends a file ) File A File Cache File A Web server s buffer File A Network Buffers for one or more connections
5 Lack of cross-subsystem optimizations 5 개별적인 Buffering 방식을사용하여각 I/O subsystem 의최적화기회를잃는현상발생 File A + Checksum File A Network File A + Checksum
6 Original Solution POSIX I/O 6 일반 read() / write() 파일연산 Double Buffering 문제발생 Redundant Page Copying 및 Multiple Buffering mmap() 연산 File Cache 를직접메모리연산으로접근하므로 Copy 발생 X Network Interface 에적용불가 à General 한솔루션필요 Page-aligned 연산 User Sharing Buffer No Copy! Kernel File Cache Storage File A Network
7 Design of IO-Lite 7 I/O Data 에대한자료구조설계 buffer_aggregate + Immutable buffer ( Read-only buffer ) 위추상화로다음과같은시스템일부수정 ( 최대효과 ) Inter-process Communication Applications Filesystem Network Cache Replacement and Paging Subsystem 간최적화기법설계
8 buffer_aggregate 8 모든 OS subsystem 들은 buffer_aggregate 를통해 I/O data 에접근 고성능을요하는 Application 도 buffer_aggregate 를통해 I/O data 에접근하도록선택가능 I/O Subsystem I/O Subsystem I/O I/O Subsystem Subsystem Application buffer_aggregate buffer_aggregate buffer_aggregate I/O data buffer I/O data buffer I/O data buffer I/O data buffer I/O data buffer Non-contiguous Contiguous
9 Immutable Buffer 9 buffer_aggregate 는각 I/O Data buffer 로이루어짐 Buffer 는 Data content 에처음접근할때 Read-only 로할당 각 I/O Susbsytem ( Application 포함 ) 들간의 Synchronization / Protection / Consistency / Fault Isolation 문제들을해결 à Just share! COW! 각 buffer_aggregate 의 buffer 들은 <pointer, length> Tuple 로정렬 File Cache of a file A File A 에접근하는 Application Buffer File A 의일부에접근하는 Network File Cache User Buffer Network Buffer by value buffer_aggregate buffer_aggregate buffer_aggregate by reference File A Buffer
10 Consideration 10 IPC ( Data Transfer between different Protection Domains ) 기존기법들의문제점 Page Remapping 복사보단이동 Semantic : Sender 가후에재사용불가 VM Remapping Overhead 발생 Shared Memory Protection 을따로관리해야하므로사용하는 Layer 에서 Copy 불가피 디자인 Source Intermediate Domains Destination 1. Buffer를위한 VM Area 검색및할당 2. Physical page 할당 3. Page Table 수정 4. Data 작성 5. aggregate로부터 buffer list 생성 6. Read-only 설정 7. 전송 8. VM Area 검색및할당 9. buffer list 로 page mapping 10. list 로부터 aggregate 생성 11. Data 사용 12. VM area 해지 13. Page Table 수정 14. 모든 Receiver 가해지하면 Write 권한재획득및 Buffer 재사용
11 Consideration (cont.) 11 Application fd 에사용가능한추가 API ( IOL_read, IOL_write, and etc. ) 제공 기존 UNIX API 유지 à Backward compatibility 새로운 IOL_read 는요구한 data 를가장많이포함한 buffer_aggregate 반환 à 요청한 Read 양보다덜읽게됨 IOL_write à 해당 Buffer_aggregate 정보로해당 Data object 를대체 Applicatoin Transparency 를제공할수는없으나 ANSI C standard IO library 를제공하여 Language-specific 한성능향상기대할수있음 à Domain 간 IOL_Agg 를 Passing 하는것과기존 System Call Interface 가맞지않음
12 Consideration (cont.) 12 File Sytem IO-Lite file cache Network 각 buffer_aggregate 에 <file-id, offset> 붙임 Write operation 은 Buffer 자체를수정하지않음 (Immutable) à Buffer 를교체 ( buffer_aggregate 수정 ) 특이사항없음 ( IPC 와유사 )
13 Consideration (cont.) 13 Cache Replacement Cache 의교체가발생해도 Sharing 되고있는기존 Cache 를 Eviction 할수없음 à VM Mapping 이끊겨도다른 Process 에서사용하고있을수있음 ( IOL_read, IOL_write ) 전체 VM page 의절반이해당 Cache 와관련한 I/O Data 라면해당 Cache Entry 중하나제거 Paging Cache Eviction 이필요한경우 LRU 에의해선정된 Entry 가제거되고관련된모든 Mapping 을제거 ( * 현재 Linux 에서도적용하고있는사항 ) Cache Entry 가포함하는 Page 가 Paging out 대상으로선정될경우, 위의 Cache entry eviction 이발생 ( 해당 Page 가 Eviction 된다는보장없음 )
14 Cross-subsystem Optimizations 14 각 Buffer 에 Generation number 적용 Buffer 가재할당될때마다 1 씩증가 Immutable 이므로 Generation number 로내용식별가능 File A + Checksum File A Network File A + Checksum
15 Web Server 적용 15 Web Server 동작 여러 Client 들로부터 TCP Connection 승인 HTTP Request Read / Requested Data Write Copy 1. Requested Data 가 File 인경우 File System Read Copy 2. File System Cache 에서발견되지않을경우 Disk Read 기존 Copy 문제솔루션 mmap 으로 Copy 2 해결 Copy 1 해결불가 Connection 마다 Multiple Buffering 문제여전 Third-party CGI Program 사용시 ( 다른 Applicatoin 을통해동적 Data 생성하여 Server 에전달하는 Interface ) IPC 발생 Data 의경우 File System 으로공유하는경우가많음 Copy 발생 Connection 마다이하 Copy 발생
16 Experimental Setup 16 비교군 Apache 널리사용되는 Web Server Flash ( Event-drive HTTP Server ) 저자들에의해만들어진 Server Flash-Lite ( IO-Lite API 를사용하여수정된 Flash ) Workload General : 500 bytes ~ 200 Kbytes File 에 40번의 Request Persistent Connections : Connection Overhead 를제외 CGI : 추가적인 I/O Overhead 를발생시키던 Interface Real Workloads : Rice 대학 CSCI 학부로그사용 Wide Area Network : 0 ~ 256 Slow client 연결시 Throughput 감소측정 Applications : UNIX Program 에 API 포함
17 General Test & Persistent Connections 17 General Flash 에비해 43%, Apache 에비해 137% Bandwidth 증가 5KB 미만 File 접근에대해서는 Flash 와동일성능 Persistent Persistent Connection 에서는 50KB 미만 File 에대해 Flash 와 Flash-Lite 에서성능향상 à Apache 에서는 Connection 을유지했을때의최적화 X
18 기타 Workload 18
19 Discussion 19 mmap 에대해 99 년당시 mmap 은저자의주장대로 Network subsystem 에사용불가? 현재는 Sniff 모드라하여 PACKET_MMAP 가능 à User Buffer 를 Socket buffer 로활용 buffer_aggregate 등추가구현으로인해발생하는 Memory Overhead 미기재 à Cache Policy 등에서도 Memory 사용량이많다는내용은있었으나실험이없음 최신 OS 에서도 IPC Buffer Copy 를없애기위한노력들이존재 à General 하지않고특정 Interface 를위해서만존재 à 굳이 General Solution 이필요한가? KDBus à D-Bus 의 User-Kernel-User-Kernel-User Memory Copy 를 User-Kernel-User 로변경
20 20 Utilizing the IOMMU Scalably ATC 15 Usenix Annual Technical Conference (ATC 15) Presented by Hyemin Lee Operating System Design, Spring 2016
21 DMA (Direct Memory Access) 21 DMA 는 CPU 의개입없이 I/O Device 로부터데이터의 Read, Write 의기능을제공한다. Physically Contiguous memory 영역을 Mapping 하여 Read, Write 에대한작업을수행한다. Operation 이완료시 Interrupt 를발생하여 Transaction 의완료에대한정보를 CPU 에게제공한다. DMA Descriptor : {Address, Size} Physical Map Physically Contiguous Ring Buffer Rx (DMA Read) Ring Buffer Tx (DMA Write) I/O Device Driver Main Memory I/O Device
22 Block Device DMA Operation 22 DMA transfer 오로지 Physically Contiguous 영역에대한접근만을제공 Block Device(Disk, Etc..) 에서 Physically Non-Contiguous 영역에대한 DMA Operation 이필요시? Physically Non-Contiguous 영역을 Mapping 한 List 를 Scatter-gather DMA Operation 을통해수행 (e.g. Block Device Driver) Scatter-gather DMA bio_vec bio_vec bio_vec bi_sector bi_sector bv_page bv_page bv_page bi_next bi_io_vec bi_size bi_next bi_io_vec bi_size bv_len bv_offset bv_len bv_offset bv_len bv_offset <Block Device Driver>
23 Problem of DMA 23 오로지 Physically contiguous 한영역의 Mapping 만을지원 I/O Device Register 의접근범위로 Host Memory 의 Address Space 가제한됨 (32bit I/O Register - Host 64bit Memory Range) Malicious Device, Buggy Device 에서 Physical Memory 에대한 Direct Access 는 System Security 에문제가발생가능하다. VM 에서 Guest OS 가 Device 에대한접근을직접통제하면안됨 ( 중재자가필요 )
24 IOMMU Concept 24 앞서말했던 DMA 의문제점을해결하기위해 IOMMU (MMU 와비슷한 ) 를제공 Device 에게 Virtually Contiguous 한 Mapping 을제공 IOVA(I/O Virtual Address) 를 Host 에서할당하여 DMA Operation 으로사용 OS 에서직접관리하므로 Memory Protection 기능이나, Inter-OS(Guest OS) 간 isolation 을쉽게보장 IOVA 0xAB32C IOTLB PA 0x5324
25 IOMMU in Virtualization 25 Paravirtualization 에서는 Guest 가 Host 의 Physical Memory 를알지못하여 DMA 가어려운문제발생 Guest VM - Guest PM(Corruption 발생가능 ) - Host VM - Host PM Guest VM Guest PM Host VM Host PM DMA Operation can Corrupt <without IOMMU> Guest VM IOMMU Hypervisor Device Remapping <with IOMMU> Device 특정 Guest OS 에게 Device 에대한 DMA 를반드시중재해야된다. Security 문제발생 (inter-os Protection Issue)
26 Motivation 26 High-throughput I/O workloads 에서 Intra-OS Protection 을위한기법에서발생하는병목현상이더욱두드러진다. DMA Transaction 단위로 IOVA 를 Invalidation 하여 Mapping 정보를 Transaction 단위로제공해야한다.(Intra-OS Protection) 따라서, 매번 IOVA 에대한정보가 DMA Transaction 단위로 Invalidation 과 Reallocation 이되어야한다. (transient IOMMU Mapping) Allocate IOVA Global Lock IOVA map physical memory For one DMA Transaction Let driver know IOVA Destroy Mapping Global Lock <Intra-OS Protection>
27 Problem 1. Linux IOTLB Invalidation 27 매 Transaction 당 IOVA 를 Invalidation 할때 IOTLB(Cache for V to P Mapping) 또한 Invalidation 해야할필요가있다. IOTLB 를 Invalidation 하기위해매번 Global Lock 을통한접근이필요하다. (Scalability 를떨어뜨림 ) 현재 Linux System 은 IOVA 에대한 Invalidation 에대한방법으로 Batching 기법을통한 Invalidation 을진행한다 (every 10ms, 250 invalidation requests) 이또한, Global lock 에대한접근에서 21.7% 에 Cycle 소비가일어난다. IOVA3 : Global Lock IOVA0 IOVA1 IOVA2 Core #1 Core #2 Core #3 IOVA4 Invalidation Queue Solution : Batching invalidation requests 를각각 Per-Core 마다수행하도록변경
28 Problem 2. Linux IOVA Allocation 28 In Linux, IOVA Allocator 를통해 IOVA Allocation 을수행 첫번째, 매 DMA Transaction 당 allocation 과 deallocation 을할때 IOVA Allocator 를위한 Global Lock 의획득이필요 (Core 간 Contention 발생 ) 이러한 Global Lock 을통한할당이 Core 간 Contention 을유발해평균 31.7% 의 Cycle 을소비 IOVA 는 Virtual Address Space 내가능한 Packing 하여할당 (Searching Overhead 증가 ) 가능한가장최소의 Page Table 와 PDE 를할당 Why?? 따라서, Top Virtual Address 에서 First Fit 을찾아서할당하게됨 Start Address, Size : Allocated Virtual I/O Address Space : Freed EiovaR : Efficient IOMMU Intra-Operating System Protection Usenix FAST 15 -Find first fit from top of virtual space in constant time
29 Linux Page Table Management 29 왜 Virtual Address 에대한 Packing 이필요한지? IOMMU translation 을위한 Page Table 구조는 4-level radix tree 를사용 Inner Node : page directory Leaf Node : page table Page reclamation requires some kind of synchronization to atomically Determine that the page table is empty Remove the pointer from the parent PDE to it Costly Prevent other cores from creating new entries Invalidating IOTLB 따라서, Linux 는 IOVA 로사용되는 Page Table 에대한 Reclamation 을하지않도록제한따라서, 이로써발생하는 Memory Overhead 를줄이고자 Packing 기법을제안
30 Solution 1. Dynamic Identity Mappings 30 Physical Address 의 Direct Mapping(1:1) 된 Virtual Address 로사용하자 (make use of kernel s V to P mapping) Simple 한 Approach 로 Reusability 를높히고 ( 재할당 Cost 감소 ) Intra-OS 유사기법제공 Re-allocable IOVA 에대해 Same Physical Page 를 Mapping 하여 Reusability 를향상 Map(A) Map(A) Unmap(A) Reference Count :1 Reference Count : 2 Reference Count : 1 Unmap(A) Reference Count : 0 Device cannot access A DIM(dynamic identity mappings) 은 Intra-OS 마다의 Protection 을제공해야된다. 매 Transaction 당 V To P mapping 에대한권한을유지할수있도록제공 1bit : Write bit 제공 Unmapping 시해당권한의 bit 을이전값에맞추어변환 Map(A,R) Map(A,W) Unmap(A,W) A is readable A is readable and writable A is only readable
31 Solution 2. IOVA-kmalloc 31 만약 Kmalloc 과같이 Efficient Confilct-free Allocation 기법을사용하여 IOVA 를할당하면어떨까? IOVA 는 virtual page numbers 의 Range 로서할당을하게된다. (Allocating unique range of integers) 하지만, 일방적인 (Kmalloc, etc..)byte 단위로할당하게된다. For a K page range : kmalloc(k) k 라는 Metric 을통해 PFN 의 Range 로할당받을수있도록변경 Kmalloc(k) k = Range/4096; IOVA Range = [4086B, 4096(B+[R/4096])]
32 Solution 3. Scalable IOVA allocation 32 IOVA 할당에서발생하는 Global Lock 을 Scalable Allocator Mechanism 으로사용한다면? 이전에 IOVA 가 Deallocation 된영역에대한 Per-Core Cache 를적용해보자 다음의내용을반드시고려해야된다 하나의 Core 가 IOVA 를계속할당하고, 다른 core 가이를지속적으로 free 한다면?( unbalance in cache à non-scalable allocator will be invoked ) Magazine* 이라는기법이이에적합한 Solution 을이미제시한다. *Magazines and Vmem: Extending the Slab Allocator to Many CPUs and Arbitrary Resources (ATC 01)
33 Evaluation 33 실험환경 Client and Server : Dual Intel Xeon E v3 2.4GHz 8-core with 32GB memory Server NIC : NetXtream 2 BCM Gb/s Client NIC : Intel Gb/s Server : Linux Client : Linux Unmodified Kernel Server and Client directly connect to avoid network interference
34 Evaluation IOVA allocation and IOTLB invalidation technique perform at 93%~95% of No-IOMMU
35 Conclusion & Discussion IOMMU 의장점인 Memory Protection 기능이오히려성능의병목현상을일으킴 Ø 잦은 invalidation 과 IOVA Reallocation 의문제점을정확히지적 Ø Global Lock 으로인한 Host CPU 간 Scalability 문제에대한지적은 Ø 이러한문제를 Simple 한기법을통해해결 High Throughput 을지향하는 I/O Device 에대해서 IOMMU 가과연최선인지? ( 높은오버헤드및비효율적인 Intra-OS Technique)
6.24-9년 6월
리눅스 환경에서Solid-State Disk 성능 최적화를 위한 디스크 입출력요구 변환 계층 김태웅 류준길 박찬익 Taewoong Kim Junkil Ryu Chanik Park 포항공과대학교 컴퓨터공학과 {ehoto, lancer, cipark}@postech.ac.kr 요약 SSD(Solid-State Disk)는 여러 개의 낸드 플래시 메모리들로 구성된
More informationChap06(Interprocess Communication).PDF
Interprocess Communication 2002 2 Hyun-Ju Park Introduction (interprocess communication; IPC) IPC data transfer sharing data event notification resource sharing process control Interprocess Communication
More information6주차.key
6, Process concept A program in execution Program code PCB (process control block) Program counter, registers, etc. Stack Heap Data section => global variable Process in memory Process state New Running
More information<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>
i ii iii iv v vi 1 2 3 4 가상대학 시스템의 국내외 현황 조사 가상대학 플랫폼 개발 이상적인 가상대학시스템의 미래상 제안 5 웹-기반 가상대학 시스템 전통적인 교수 방법 시간/공간 제약을 극복한 학습동기 부여 교수의 일방적인 내용전달 교수와 학생간의 상호작용 동료 학생들 간의 상호작용 가상대학 운영 공지사항,강의록 자료실, 메모 질의응답,
More informationPCServerMgmt7
Web Windows NT/2000 Server DP&NM Lab 1 Contents 2 Windows NT Service Provider Management Application Web UI 3 . PC,, Client/Server Network 4 (1),,, PC Mainframe PC Backbone Server TCP/IP DCS PLC Network
More information(72) 발명자 이동희 서울 동작구 여의대방로44길 10, 101동 802호 (대 방동, 대림아파트) 노삼혁 서울 중구 정동길 21-31, B동 404호 (정동, 정동상 림원) 이 발명을 지원한 국가연구개발사업 과제고유번호 2010-0025282 부처명 교육과학기술부
(19) 대한민국특허청(KR) (12) 등록특허공보(B1) (45) 공고일자 2015년01월13일 (11) 등록번호 10-1480424 (24) 등록일자 2015년01월02일 (51) 국제특허분류(Int. Cl.) G06F 12/00 (2006.01) G11C 16/00 (2006.01) (21) 출원번호 10-2013-0023977 (22) 출원일자 2013년03월06일
More information초보자를 위한 분산 캐시 활용 전략
초보자를위한분산캐시활용전략 강대명 charsyam@naver.com 우리가꿈꾸는서비스 우리가꿈꾸는서비스 우리가꿈꾸는서비스 우리가꿈꾸는서비스 그러나현실은? 서비스에필요한것은? 서비스에필요한것은? 핵심적인기능 서비스에필요한것은? 핵심적인기능 서비스에필요한것은? 핵심적인기능 서비스에필요한것은? 적절한기능 서비스안정성 트위터에매일고래만보이면? 트위터에매일고래만보이면?
More informationsolution map_....
SOLUTION BROCHURE RELIABLE STORAGE SOLUTIONS ETERNUS FOR RELIABILITY AND AVAILABILITY PROTECT YOUR DATA AND SUPPORT BUSINESS FLEXIBILITY WITH FUJITSU STORAGE SOLUTIONS kr.fujitsu.com INDEX 1. Storage System
More informationvm-웨어-앞부속
VMware vsphere 4 This document was created using the official VMware icon and diagram library. Copyright 2009 VMware, Inc. All rights reserved. This product is protected by U.S. and international copyright
More informationPowerPoint 프레젠테이션
Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING
More informationMicrosoft PowerPoint - o8.pptx
메모리보호 (Memory Protection) 메모리보호를위해 page table entry에 protection bit와 valid bit 추가 Protection bits read-write / read-only / executable-only 정의 page 단위의 memory protection 제공 Valid bit (or valid-invalid bit)
More information리뉴얼 xtremI 최종 softcopy
SSD를 100% 이해한 CONTENTS SSD? 03 04 05 06 07 08 09 10 11 12 13 15 14 17 18 18 19 03 SSD SSD? Solid State Drive(SSD) NAND NAND DRAM SSD [ 1. SSD ] CPU( )RAM Cache Memory Firmware GB RAM Cache Memory Memory
More informationvm-웨어-01장
Chapter 16 21 (Agenda). (Green),., 2010. IT IT. IT 2007 3.1% 2030 11.1%, IT 2007 1.1.% 2030 4.7%, 2020 4 IT. 1 IT, IT. (Virtualization),. 2009 /IT 2010 10 2. 6 2008. 1970 MIT IBM (Mainframe), x86 1. (http
More information1217 WebTrafMon II
(1/28) (2/28) (10 Mbps ) Video, Audio. (3/28) 10 ~ 15 ( : telnet, ftp ),, (4/28) UDP/TCP (5/28) centralized environment packet header information analysis network traffic data, capture presentation network
More informationMicrosoft PowerPoint - 알고리즘_1주차_2차시.pptx
Chapter 2 Secondary Storage and System Software References: 1. M. J. Folk and B. Zoellick, File Structures, Addison-Wesley. 목차 Disks Storage as a Hierarchy Buffer Management Flash Memory 영남대학교데이터베이스연구실
More informationSMB_ICMP_UDP(huichang).PDF
SMB(Server Message Block) UDP(User Datagram Protocol) ICMP(Internet Control Message Protocol) SMB (Server Message Block) SMB? : Microsoft IBM, Intel,. Unix NFS. SMB client/server. Client server request
More informationPowerPoint 프레젠테이션
(Host) set up : Linux Backend RS-232, Ethernet, parallel(jtag) Host terminal Target terminal : monitor (Minicom) JTAG Cross compiler Boot loader Pentium Redhat 9.0 Serial port Serial cross cable Ethernet
More informationOracle9i Real Application Clusters
Senior Sales Consultant Oracle Corporation Oracle9i Real Application Clusters Agenda? ? (interconnect) (clusterware) Oracle9i Real Application Clusters computing is a breakthrough technology. The ability
More informationOPCTalk for Hitachi Ethernet 1 2. Path. DCOMwindow NT/2000 network server. Winsock update win95. . . 3 Excel CSV. Update Background Thread Client Command Queue Size Client Dynamic Scan Block Block
More informationInteg
HP Integrity HP Chipset Itanium 2(Processor 9100) HP Integrity HP, Itanium. HP Integrity Blade BL860c HP Integrity Blade BL870c HP Integrity rx2660 HP Integrity rx3600 HP Integrity rx6600 2 HP Integrity
More informationFMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2
FMX FMX 20062 () wwwexellencom sales@exellencom () 1 FMX 1 11 5M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX D E (one
More informationSharing Memory Between Drivers and Applications
본컬럼에대한모든저작권은 DevGuru에있습니다. 컬럼을타사이트등에기재및링크또는컬럼내용을인용시반드시출처를밝히셔야합니다. 컬럼들을 CD나기타매체로배포하고자할경우 DevGuru에동의를얻으셔야합니다. c DevGuru Corporation. All rights reserved 기타자세한질문사항들은웹게시판이나 support@devguru.co.kr 으로 문의하기바랍니다.
More informationCD-RW_Advanced.PDF
HP CD-Writer Program User Guide - - Ver. 2.0 HP CD-RW Adaptec Easy CD Creator Copier, Direct CD. HP CD-RW,. Easy CD Creator 3.5C, Direct CD 3.0., HP. HP CD-RW TEAM ( 02-3270-0803 ) < > 1. CD...3 CD...5
More informationMS-SQL SERVER 대비 기능
Business! ORACLE MS - SQL ORACLE MS - SQL Clustering A-Z A-F G-L M-R S-Z T-Z Microsoft EE : Works for benchmarks only CREATE VIEW Customers AS SELECT * FROM Server1.TableOwner.Customers_33 UNION ALL SELECT
More information슬라이드 1
/ 유닉스시스템개요 / 파일 / 프로세스 01 File Descriptor file file descriptor file type unix 에서의파일은단지바이트들의나열임 operating system 은파일에어떤포맷도부과하지않음 파일의내용은바이트단위로주소를줄수있음 file descriptor 는 0 이나양수임 file 은 open 이나 creat 로 file
More informationSpecial Theme _ 모바일웹과 스마트폰 본 고에서는 모바일웹에서의 단말 API인 W3C DAP (Device API and Policy) 의 표준 개발 현황에 대해서 살펴보고 관 련하여 개발 중인 사례를 통하여 이해를 돕고자 한다. 2. 웹 애플리케이션과 네이
모바일웹 플랫폼과 Device API 표준 이강찬 TTA 유비쿼터스 웹 응용 실무반(WG6052)의장, ETRI 선임연구원 1. 머리말 현재 소개되어 이용되는 모바일 플랫폼은 아이폰, 윈 도 모바일, 안드로이드, 심비안, 모조, 리모, 팜 WebOS, 바다 등이 있으며, 플랫폼별로 버전을 고려하면 그 수 를 열거하기 힘들 정도로 다양하게 이용되고 있다. 이
More informationPowerPoint Presentation
Data Protection Rapid Recovery x86 DR Agent based Backup - Physical Machine - Virtual Machine - Cluster Agentless Backup - VMware ESXi Deploy Agents - Windows - AD, ESXi Restore Machine - Live Recovery
More information¨ìÃÊÁ¡2
2 Worldwide Converged Mobile Device Shipment Share by Operating System, 2005 and 2010 Paim OS (3.6%) BiackBerry OS (7.5%) 2005 Other (0.3%) Linux (21.8%) Symbian OS (60.7%) Windows Mobile (6.1%) Total=56.52M
More informationVoice Portal using Oracle 9i AS Wireless
Voice Portal Platform using Oracle9iAS Wireless 20020829 Oracle Technology Day 1 Contents Introduction Voice Portal Voice Web Voice XML Voice Portal Platform using Oracle9iAS Wireless Voice Portal Video
More informationMicrosoft PowerPoint - 알고리즘_5주차_1차시.pptx
Basic Idea of External Sorting run 1 run 2 run 3 run 4 run 5 run 6 750 records 750 records 750 records 750 records 750 records 750 records run 1 run 2 run 3 1500 records 1500 records 1500 records run 1
More informationWeb Application Hosting in the AWS Cloud Contents 개요 가용성과 확장성이 높은 웹 호스팅은 복잡하고 비용이 많이 드는 사업이 될 수 있습니다. 전통적인 웹 확장 아키텍처는 높은 수준의 안정성을 보장하기 위해 복잡한 솔루션으로 구현
02 Web Application Hosting in the AWS Cloud www.wisen.co.kr Wisely Combine the Network platforms Web Application Hosting in the AWS Cloud Contents 개요 가용성과 확장성이 높은 웹 호스팅은 복잡하고 비용이 많이 드는 사업이 될 수 있습니다. 전통적인
More informationuntitled
Memory leak Resource 力 金 3-tier 見 Out of Memory( 不 ) Memory leak( 漏 ) 狀 Application Server Crash 理 Server 狀 Crash 類 JVM 說 例 行說 說 Memory leak Resource Out of Memory Memory leak Out of Memory 不論 Java heap
More informationChap7.PDF
Chapter 7 The SUN Intranet Data Warehouse: Architecture and Tools All rights reserved 1 Intranet Data Warehouse : Distributed Networking Computing Peer-to-peer Peer-to-peer:,. C/S Microsoft ActiveX DCOM(Distributed
More informationuntitled
(shared) (integrated) (stored) (operational) (data) : (DBMS) :, (database) :DBMS File & Database - : - : ( : ) - : - : - :, - DB - - -DBMScatalog meta-data -DBMS -DBMS - -DBMS concurrency control E-R,
More informationfinal_thesis
CORBA/SNMP DPNM Lab. POSTECH email : ymkang@postech.ac.kr Motivation CORBA/SNMP CORBA/SNMP 2 Motivation CMIP, SNMP and CORBA high cost, low efficiency, complexity 3 Goal (Information Model) (Operation)
More informationDocsPin_Korean.pages
Unity Localize Script Service, Page 1 Unity Localize Script Service Introduction Application Game. Unity. Google Drive Unity.. Application Game. -? ( ) -? -?.. 준비사항 Google Drive. Google Drive.,.. - Google
More informationBackup Exec
(sjin.kim@veritas.com) www.veritas veritas.co..co.kr ? 24 X 7 X 365 Global Data Access.. 100% Storage Used Terabytes 9 8 7 6 5 4 3 2 1 0 2000 2001 2002 2003 IDC (TB) 93%. 199693,000 TB 2000831,000 TB.
More informationMicrosoft PowerPoint - 알고리즘_2주차_1차시.pptx
1.4 Blocking Block의정의 디스크와메모리사이에데이터전송의단위 물리적레코드라고도함 Sector, Block, Cluster의비교 Sector: Data transfer 의최소단위 Block = n개의 sector로구성 디스크와메모리사이에데이터전송의단위 Cluster: m 개의 sector 로구성되며, FAT 구성단위 Cluster Block 영남대학교데이터베이스연구실
More informationMicrosoft PowerPoint - eSlim SV5-2410 [20080402]
Innovation for Total Solution Provider!! eslim SV5-2410 Opteron Server 2008. 3 ESLIM KOREA INC. 1. 제 품 개 요 eslim SV5-2410 Server Quad-Core and Dual-Core Opteron 2000 Series Max. 4 Disk Bays for SAS and
More informationThe Self-Managing Database : Automatic Health Monitoring and Alerting
The Self-Managing Database : Automatic Health Monitoring and Alerting Agenda Oracle 10g Enterpirse Manager Oracle 10g 3 rd Party PL/SQL API Summary (Self-Managing Database) ? 6% 6% 12% 55% 6% Source: IOUG
More informationuntitled
PowerBuilder 連 Microsoft SQL Server database PB10.0 PB9.0 若 Microsoft SQL Server 料 database Profile MSS 料 (Microsoft SQL Server database interface) 行了 PB10.0 了 Sybase 不 Microsoft 料 了 SQL Server 料 PB10.0
More informationORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O
Orange for ORACLE V4.0 Installation Guide ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE...1 1....2 1.1...2 1.2...2 1.2.1...2 1.2.2 (Online Upgrade)...11 1.3 ORANGE CONFIGURATION ADMIN...12 1.3.1 Orange Configuration
More informationAPOGEE Insight_KR_Base_3P11
Technical Specification Sheet Document No. 149-332P25 September, 2010 Insight 3.11 Base Workstation 그림 1. Insight Base 메인메뉴 Insight Base Insight Insight Base, Insight Base Insight Base Insight Windows
More informationESP1ºÎ-04
Chapter 04 4.1..,..,.,.,.,. RTOS(Real-Time Operating System)., RTOS.. VxWorks(www.windriver.com), psos(www.windriver.com), VRTX(www.mento. com), QNX(www.qnx.com), OSE(www.ose.com), Nucleus(www.atinudclus.
More information<목 차 > 제 1장 일반사항 4 I.사업의 개요 4 1.사업명 4 2.사업의 목적 4 3.입찰 방식 4 4.입찰 참가 자격 4 5.사업 및 계약 기간 5 6.추진 일정 6 7.사업 범위 및 내용 6 II.사업시행 주요 요건 8 1.사업시행 조건 8 2.계약보증 9 3
열차운행정보 승무원 확인시스템 구축 제 안 요 청 서 2014.6. 제 1장 일반사항 4 I.사업의 개요 4 1.사업명 4 2.사업의 목적 4 3.입찰 방식 4 4.입찰 참가 자격 4 5.사업 및 계약 기간 5 6.추진 일정 6 7.사업 범위 및 내용 6 II.사업시행 주요 요건 8 1.사업시행 조건 8 2.계약보증 9 3.시운전 및 하자보증 10
More informationTEL:02)861-1175, FAX:02)861-1176 , REAL-TIME,, ( ) CUSTOMER. CUSTOMER REAL TIME CUSTOMER D/B RF HANDY TEMINAL RF, RF (AP-3020) : LAN-S (N-1000) : LAN (TCP/IP) RF (PPT-2740) : RF (,RF ) : (CL-201)
More information04(1486-1494) CSTV15-23.hwp
ISSN 2383-630X(Print) / ISSN 2383-6296(Online) Journal of KIISE, Vol. 42, No. 12, pp. 1486-1494, 2015. 12 http://dx.doi.org/10.5626/jok.2015.42.12.1486 리눅스 기반 모바일 기기에서 사용자 응답성 향상을 위한 프레임워크 지원 선별적 페이지 보호
More informationMicrosoft PowerPoint - eSlim SV5-2510 [080116]
Innovation for Total Solution Provider!! eslim SV5-2510 Opteron Server 2008. 03 ESLIM KOREA INC. 1. 제 품 개 요 eslim SV5-2510 Server Quad-Core and Dual-Core Opteron 2000 Series 6 internal HDD bays for SAS
More informationCONTENTS CONTENTS CONTENT 1. SSD & HDD 비교 2. SSD 서버 & HDD 서버 비교 3. LSD SSD 서버 & HDD 서버 비교 4. LSD SSD 서버 & 글로벌 SSD 서버 비교 2
읽기속도 1초에 20Gbps www.lsdtech.co.kr 2011. 7. 01 Green Computing SSD Server & SSD Storage 이기택 82-10-8724-0575 ktlee1217@lsdtech.co.kr CONTENTS CONTENTS CONTENT 1. SSD & HDD 비교 2. SSD 서버 & HDD 서버 비교 3. LSD
More informationOZ-LMS TM OZ-LMS 2008 OZ-LMS 2006 OZ-LMS Lite Best IT Serviece Provider OZNET KOREA Management Philosophy & Vision Introduction OZNETKOREA IT Mission Core Values KH IT ERP Web Solution IT SW 2000 4 3 508-2
More informationKDTÁ¾ÇÕ-2-07/03
CIMON-PLC CIMON-SCADA CIMON-TOUCH CIMON-Xpanel www.kdtsys.com CIMON-SCADA Total Solution for Industrial Automation Industrial Automatic Software sphere 16 Total Solution For Industrial Automation SCADA
More informationARMBOOT 1
100% 2003222 : : : () PGPnet 1 (Sniffer) 1, 2,,, (Sniffer), (Sniffer),, (Expert) 3, (Dashboard), (Host Table), (Matrix), (ART, Application Response Time), (History), (Protocol Distribution), 1 (Select
More informationODS-FM1
OPTICAL DISC ARCHIVE FILE MANAGER ODS-FM1 INSTALLATION GUIDE [Korean] 1st Edition (Revised 4) 상표 Microsoft, Windows 및 Internet Explorer는 미국 및 / 또는 다른 국가에서 Microsoft Corporation 의 등록 상표입 Intel 및 Intel Core
More information1. 회사소개 및 연혁 - 회사소개 회사소개 회사연혁 대표이사: 한종열 관계사 설립일 : 03. 11. 05 자본금 : 11.5억원 인 원 : 18명 에스오넷 미도리야전기코리 아 미도리야전기(일본) 2008 2007 Cisco Premier Partner 취득 Cisco Physical Security ATP 취득(진행) 서울시 강남구 도심방범CCTV관제센터
More informationGNU/Linux 1, GNU/Linux MS-DOS LOADLIN DOS-MBR LILO DOS-MBR LILO... 6
GNU/ 1, qkim@pecetrirekr GNU/ 1 1 2 2 3 4 31 MS-DOS 5 32 LOADLIN 5 33 DOS- LILO 6 34 DOS- 6 35 LILO 6 4 7 41 BIOS 7 42 8 43 8 44 8 45 9 46 9 47 2 9 5 X86 GNU/LINUX 10 1 GNU/, GNU/ 2, 3, 1 : V 11, 2001
More informationNo Slide Title
Copyright, 2001 Multimedia Lab., CH 3. COM object (In-process server) Eun-sung Lee twoss@mmlab.net Multimedia Lab. Dept. of Electrical and Computer Eng. University of Seoul Seoul, Korea 0. Contents 1.
More information목 차
Oracle 9i Admim 1. Oracle RDBMS 1.1 (System Global Area:SGA) 1.1.1 (Shared Pool) 1.1.2 (Database Buffer Cache) 1.1.3 (Redo Log Buffer) 1.1.4 Java Pool Large Pool 1.2 Program Global Area (PGA) 1.3 Oracle
More informationTTA Verified : HomeGateway :, : (NEtwork Testing Team)
TTA Verified : HomeGateway :, : (NEtwork Testing Team) : TTA-V-N-05-006-CC11 TTA Verified :2006 6 27 : 01 : 2005 7 18 : 2/15 00 01 2005 7 18 2006 6 27 6 7 9 Ethernet (VLAN, QoS, FTP ) (, ) : TTA-V-N-05-006-CC11
More information/ TV 80 () DAB 2001 2002 2003 2004 2005 2010 Analog/Digital CATV Services EPG TV ( 60 ) TV ( Basic, Tier, Premiums 60 ) VOD Services Movies In Demand ( 20 ) Education N- VOD (24 ) Digital Music
More informationPRO1_04E [읽기 전용]
Siemens AG 1999 All rights reserved File: PRO1_04E1 Information and S7-300 2 S7-400 3 EPROM / 4 5 6 HW Config 7 8 9 CPU 10 CPU : 11 CPU : 12 CPU : 13 CPU : / 14 CPU : 15 CPU : / 16 HW 17 HW PG 18 SIMATIC
More information금오공대 컴퓨터공학전공 강의자료
데이터베이스및설계 Chap 1. 데이터베이스환경 (#2/2) 2013.03.04. 오병우 컴퓨터공학과 Database 용어 " 데이타베이스 용어의기원 1963.6 제 1 차 SDC 심포지움 컴퓨터중심의데이타베이스개발과관리 Development and Management of a Computer-centered Data Base 자기테이프장치에저장된데이터파일을의미
More information1
1 1....6 1.1...6 2. Java Architecture...7 2.1 2SDK(Software Development Kit)...8 2.2 JRE(Java Runtime Environment)...9 2.3 (Java Virtual Machine, JVM)...10 2.4 JVM...11 2.5 (runtime)jvm...12 2.5.1 2.5.2
More informationOracle Database 10g: Self-Managing Database DB TSC
Oracle Database 10g: Self-Managing Database DB TSC Agenda Overview System Resource Application & SQL Storage Space Backup & Recovery ½ Cost ? 6% 12 % 6% 6% 55% : IOUG 2001 DBA Survey ? 6% & 12 % 6% 6%
More informationSena Device Server Serial/IP TM Version
Sena Device Server Serial/IP TM Version 1.0.0 2005. 3. 7. Release Note Revision Date Name Description V1.0.0 2005-03-7 HJ Jeon Serial/IP 4.3.2 ( ) 210 137-130, : (02) 573-5422 : (02) 573-7710 email: support@sena.com
More informationbn2019_2
arp -a Packet Logging/Editing Decode Buffer Capture Driver Logging: permanent storage of packets for offline analysis Decode: packets must be decoded to human readable form. Buffer: packets must temporarily
More information歯이시홍).PDF
cwseo@netsgo.com Si-Hong Lee duckling@sktelecom.com SK Telecom Platform - 1 - 1. Digital AMPS CDMA (IS-95 A/B) CDMA (cdma2000-1x) IMT-2000 (IS-95 C) ( ) ( ) ( ) ( ) - 2 - 2. QoS Market QoS Coverage C/D
More informationKDTÁ¾ÇÕ-1-07/03
CIMON-PLC CIMON-SCADA CIMON-TOUCH CIMON-Xpanel www.kdtsys.com CIMON-PLC Total Solution for Industrial Automation PLC (Program Logic Controller) Sphere 8 Total Solution For Industrial Automation PLC Application
More informationPWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (
PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (http://ddns.hanwha-security.com) Step 1~5. Step, PC, DVR Step 1. Cable Step
More informationTCP.IP.ppt
TCP/IP TCP/IP TCP/IP TCP/IP TCP/IP Internet Protocol _ IP Address Internet Protocol _ Subnet Mask Internet Protocol _ ARP(Address Resolution Protocol) Internet Protocol _ RARP(Reverse Address Resolution
More informationDBPIA-NURIMEDIA
SQLite 이준희 *, 신민철 **, 장용일 ***, 박상현 **** LG. 요약 Abstract SQLite is a popular relational database management system(rdbms) mainly used in local application, embedded device, and smartphone. In order to preserve
More informationWindows 네트워크 사용 설명서
Windows 네트워크 사용 설명서 (Wireless Manager mobile edition 5.5) 그림의 예로 사용된 프로젝터는 PT-FW300NTEA 입니다. 한국어 TQBH0205-5 (K) 목차 소프트웨어 라이센스 계약 3 무선 연결 사용 시 참고 사항 4 보안 관련 참고 사항 6 소프트웨어 요구 사항 12 시스템 요구 사항 12 Wireless
More information[ReadyToCameral]RUF¹öÆÛ(CSTA02-29).hwp
RUF * (A Simple and Efficient Antialiasing Method with the RUF buffer) (, Byung-Uck Kim) (Yonsei Univ. Depth of Computer Science) (, Woo-Chan Park) (Yonsei Univ. Depth of Computer Science) (, Sung-Bong
More informationAGENDA 01 02 03 모바일 산업의 환경변화 모바일 클라우드 서비스의 등장 모바일 클라우드 서비스 융합사례
모바일 클라우드 서비스 융합사례와 시장 전망 및 신 사업전략 2011. 10 AGENDA 01 02 03 모바일 산업의 환경변화 모바일 클라우드 서비스의 등장 모바일 클라우드 서비스 융합사례 AGENDA 01. 모바일 산업의 환경 변화 가치 사슬의 분화/결합 모바일 업계에서도 PC 산업과 유사한 모듈화/분업화 진행 PC 산업 IBM à WinTel 시대 à
More information歯I-3_무선통신기반차세대망-조동호.PDF
KAIST 00-03-03 / #1 1. NGN 2. NGN 3. NGN 4. 5. 00-03-03 / #2 1. NGN 00-03-03 / #3 1.1 NGN, packet,, IP 00-03-03 / #4 Now: separate networks for separate services Low transmission delay Consistent availability
More informationPortal_9iAS.ppt [읽기 전용]
Application Server iplatform Oracle9 A P P L I C A T I O N S E R V E R i Oracle9i Application Server e-business Portal Client Database Server e-business Portals B2C, B2B, B2E, WebsiteX B2Me GUI ID B2C
More informationRemote UI Guide
Remote UI KOR Remote UI Remote UI PDF Adobe Reader/Adobe Acrobat Reader. Adobe Reader/Adobe Acrobat Reader Adobe Systems Incorporated.. Canon. Remote UI GIF Adobe Systems Incorporated Photoshop. ..........................................................
More informationT100MD+
User s Manual 100% ) ( x b a a + 1 RX+ TX+ DTR GND TX+ RX+ DTR GND RX+ TX+ DTR GND DSR RX+ TX+ DTR GND DSR [ DCE TYPE ] [ DCE TYPE ] RS232 Format Baud 1 T100MD+
More information04_오픈지엘API.key
4. API. API. API..,.. 1 ,, ISO/IEC JTC1/SC24, Working Group ISO " (Architecture) " (API, Application Program Interface) " (Metafile and Interface) " (Language Binding) " (Validation Testing and Registration)"
More information인켈(국문)pdf.pdf
M F - 2 5 0 Portable Digital Music Player FM PRESET STEREOMONO FM FM FM FM EQ PC Install Disc MP3/FM Program U S B P C Firmware Upgrade General Repeat Mode FM Band Sleep Time Power Off Time Resume Load
More informationthesis-shk
DPNM Lab, GSIT, POSTECH Email: shk@postech.ac.kr 1 2 (1) Internet World-Wide Web Web traffic Peak periods off-peak periods peak periods off-peak periods 3 (2) off-peak peak Web caching network traffic
More informationMicrosoft PowerPoint - Master-ChiWeon_Yoon.ppt
고속 Row Cycle 동작이가능한 VPM (Virtual Pipelined Memory) 구조에 대한연구 1998. 12. 28. 윤치원 1 발표순서 연구의필요성 관련연구 VCM (Virtual Channel Memory) POPeye : 메모리시스템성능측정기 POPeye를이용한 VCM 분석 VPM (Virtual Pipelined Memory) 결론및추후과제
More information(SW3704) Gingerbread Source Build & Working Guide
(Mango-M32F4) Test Guide http://www.mangoboard.com/ http://cafe.naver.com/embeddedcrazyboys Crazy Embedded Laboratory www.mangoboard.com cafe.naver.com/embeddedcrazyboys CRZ Technology 1 Document History
More informationPowerPoint Presentation
FORENSIC INSIGHT; DIGITAL FORENSICS COMMUNITY IN KOREA SQL Server Forensic AhnLab A-FIRST Rea10ne unused6@gmail.com Choi Jinwon Contents 1. SQL Server Forensic 2. SQL Server Artifacts 3. Database Files
More informationDE1-SoC Board
실습 1 개발환경 DE1-SoC Board Design Tools - Installation Download & Install Quartus Prime Lite Edition http://www.altera.com/ Quartus Prime (includes Nios II EDS) Nios II Embedded Design Suite (EDS) is automatically
More informationchapter4
Basic Netw rk 1. ก ก ก 2. 3. ก ก 4. ก 2 1. 2. 3. 4. ก 5. ก 6. ก ก 7. ก 3 ก ก ก ก (Mainframe) ก ก ก ก (Terminal) ก ก ก ก ก ก ก ก 4 ก (Dumb Terminal) ก ก ก ก Mainframe ก CPU ก ก ก ก 5 ก ก ก ก ก ก ก ก ก ก
More informationContents I. 칼라스 네트워크 플레이어란 1. Pc-Fi를 넘어서 발전한 차세대 음악 플레이어 ---------------- 4 2. 칼라스 네트워크 플레이어의 장점 3. 시스템 기본 구성 ------------------------ 6 -------------
[ CALLAS Network Player ] Owner s Manual ( 주 ) 금 잔 디 음 향 예.술.을.담.는.스.피.커.과.학 Contents I. 칼라스 네트워크 플레이어란 1. Pc-Fi를 넘어서 발전한 차세대 음악 플레이어 ---------------- 4 2. 칼라스 네트워크 플레이어의 장점 3. 시스템 기본 구성 ------------------------
More informationPowerPoint 프레젠테이션
INSTALL LINUX Jo, Heeseung DOWNLOAD PROGRAMS Download VMWare player http://www.vmware.com/products/player/playerproevaluation.html Download Ubuntu iso file http://ubuntu.com - server, 64bit version http://cslab.jbnu.ac.kr/_down/ubuntu-18.04.2-live-serveramd64.iso
More informationPRO1_09E [읽기 전용]
Siemens AG 1999 All rights reserved File: PRO1_09E1 Information and - ( ) 2 3 4 5 Monitor/Modify Variables" 6 7 8 9 10 11 CPU 12 Stop 13 (Forcing) 14 (1) 15 (2) 16 : 17 : Stop 18 : 19 : (Forcing) 20 :
More information°í¼®ÁÖ Ãâ·Â
Performance Optimization of SCTP in Wireless Internet Environments The existing works on Stream Control Transmission Protocol (SCTP) was focused on the fixed network environment. However, the number of
More informationYggdrash White Paper Kr_ver 0.18
White paper (ver 0.18) 1 ,.,.?.,,,???..,,..,.,...,.,., p2p.. Team Yggdrash 2 1. 1.1 Why, Another, Blockchain? (,,?) 1.1.1, (TPS) / (Throughput),?. DApp., DB P2P..,.. DApp.... 2012 2 2018 2, 150GB, 14..
More informationXen으로 배우는 가상화 기술의 이해 - CPU 가상화
Hanbit ebook Realtime 17 Xen으로 배우는 가상화 기술의 이해 CPU 가상화 박은병, 김태훈, 이상철, 문대혁 지음 Xen으로 배우는 가상화 기술의 이해 CPU 가상화 Xen으로 배우는 가상화 기술의 이해 - CPU 가상화 초판발행 2013년 2월 25일 지은이 박은병, 김태훈, 이상철, 문대혁 / 펴낸이 김태헌 펴낸곳 한빛미디어(주) /
More informationJ2EE & Web Services iSeminar
9iAS :, 2002 8 21 OC4J Oracle J2EE (ECperf) JDeveloper : OLTP : Oracle : SMS (Short Message Service) Collaboration Suite Platform Email Developer Suite Portal Java BI XML Forms Reports Collaboration Suite
More informationMicrosoft Word doc
TCP/IP 구조 1. I.P 구조설명 2. ARP 구조설명 3. TCP 구조설명 4. UDT 구조설명 5. RIP 구조설명 6. BOOTP 구조설명 7. TFTP 구조설명 destination addr source addr type data CRC 6 6 2 46-1500 4 type 0X0800 IP datagram 2 46-1500 type 0X0806
More informationIntra_DW_Ch4.PDF
The Intranet Data Warehouse Richard Tanler Ch4 : Online Analytic Processing: From Data To Information 2000. 4. 14 All rights reserved OLAP OLAP OLAP OLAP OLAP OLAP is a label, rather than a technology
More informationCache_cny.ppt [읽기 전용]
Application Server iplatform Oracle9 A P P L I C A T I O N S E R V E R i Improving Performance and Scalability with Oracle9iAS Cache Oracle9i Application Server Cache... Oracle9i Application Server Web
More informationSRC PLUS 제어기 MANUAL
,,,, DE FIN E I N T R E A L L O C E N D SU B E N D S U B M O TIO
More informationthesis
( Design and Implementation of a Generalized Management Information Repository Service for Network and System Management ) ssp@nile nile.postech.ac..ac.kr DPE Lab. 1997 12 16 GMIRS GMIRS GMIRS prototype
More informationStorage advances and Ne over fabric
Ne over Fabric Solution Samstor SX5200 Storage advances and Ne over fabric Traditional data storages Advantages: 서버에서 스토리지 독립 서비스 제공 편리함 용량 재할당 가능 FC/iSCSI SAN Disadvantages: Legacy 패브릭 (FC/iSCSI) Bandwidth
More information<30362E20C6EDC1FD2DB0EDBFB5B4EBB4D420BCF6C1A42E687770>
327 Journal of The Korea Institute of Information Security & Cryptology ISSN 1598-3986(Print) VOL.24, NO.2, Apr. 2014 ISSN 2288-2715(Online) http://dx.doi.org/10.13089/jkiisc.2014.24.2.327 개인정보 DB 암호화
More information