PowerPoint 프레젠테이션

Size: px
Start display at page:

Download "PowerPoint 프레젠테이션"

Transcription

1 Big Data

2 순서 배경 Hadoop 관련프로젝트 활용 주요이슈 전망과과제 2

3 배경 Big Data의물결 Supercomputer BI

4 배경 Big Data Tidal Waves A Tidal Wave of Data 4

5 현상으로서의 Big Data: V 3 C V3 이로인한 C Complexity 5

6 Online 공간에서의 모든행위 (click-stream) Click, ad impression, wall post, friending,... billing event, transaction, server request, network message, fault fast forward, pause,... 분석할데이터 stream 이끊임없이발생 The Power of Big Data Analytics

7 배경 Supercomputer Supercomputer High-throughput computing 주로 Technical-Computing 2가지방향 : 추세 : grid computing = 원격, 분산형대규모컴퓨팅 Clustering (tightly-coupled) & MPP (loosely-coupled) Batch Mission critical & real-time orientation Static search pipelining of intelligent agents Scale-Up vs. Scale-Out 1000 개 CPU 장착된 supercomputer 대신 1,000 개의 single-cpu 또는 250 개의 quad-core 서버를제시. cost-effective compute cluster. 7

8 배경 Supercomputer Big Data 는 HPC 의또다른진화모습 4 개의 Implied Solutions Data Aggregation find a specific group of records that comply with a set of requirements Data Analytics filesystem application computation of common characteristics or key regression characteristics in data aggregated for the analysis Data Visualization HPC + filesystem construct visual representation of a computationally-derieved model of aggregated for analysis HPC + filesystem + visual analysis Interactive Visualization and Simulation command adapative analysis through manipulation and simluation of aggregated data. Insight from human-derived optimization points. HPC + filesystem + visual analytics + design

9 배경 BI BI (Business Intelligence) Survival of the Smartest (H.Mendelson & J.Ziegler, 1999) 조직의지능지수 (Organizational IQ) 란 정보를신속하게처리하여효과적의사결정을하고이를행동에옮길수있는능력 즉, Intelligence ( 의사결정능력 ) + Collaboration/BPM ( 실행능력 ) 조직지능지수를올리는해답이 비즈니스인텔리전스 (BI) 9

10 배경 BI BI 분류 구분내용솔루션비고 전략 Intelligence 분석 Intelligence 확장 Intelligence Intelligence Infra Intelligence 정보전달 경영전략을효과적으로수립하고실행하기위한각종의정보관리 ( 초기 ) 특정이슈의해결목적 ( 추세 ) 전략경영보조 기업내부뿐아니라고객, 공급자등외부이해관계자의데이터 VBM BSC ABC/ABM OLAP Data Mining 전문의사결정분석도구 ERP Intelligence CRM Intelligence SCM Intelligence BI 를제공하기위한플랫폼 ETL Data Warehousing/DM 사용자별 Intelligence 정보를통합제공 Portal 경보솔루션 전략적인측면에초점을맞춤 특정분석가에서일선담당자로확산 ERP/CRM 등의데이터를대상으로함 분석인텔리전스와함께제공 보조적기능으로제공

11 배경 BI OLAP, OLAP 비교 구분 OLTP RDBMS DW/OLAP 주된목적 일상업무 (Operational) 에서의거래사항처리 History 데이터및세부데이터 분석 Access 유형 Read/Write Read-only Read/Write 주된담당자전산전산현업담당자 ( 분석자 ) 주된데이터형태 Application 별관리 거래내역중심 전사 / 전영역의데이터 ( 참고 : Data Mart 는개별주제별데이터 ) 요약 / 총계 (aggregation) 에대한분석중심 데이터구조정규화정규화또는비정규화 Dimension, 계층구조

12 배경 BI Data Warehousing OLAP Cube design Visualization 12

13 Hadoop Hadoop 개요 HDFS MapReduce 설치운영 13

14 Hadoop 개요 Hadoop ( 대규모데이터처리를위해분산 Clustered 파일시스템을이용하는컴퓨팅환경. ( 역사 ) ( 특징 ) Lucene > Nutch > Hadoop Programming 모델의단순화 선형확장성 (Flat linearity) function-to-data model vs. data-to-function (Locality)

15 Hadoop 의 Building Blocks master/slave architecture (distributed storage(hdfs), distributed computation) NameNode = master of HDFS that directs the slave DataNode daemons to perform the low-level I/O tasks. 파일을 block 단위로분할하는작업, block 별저장현황등의일체사항을관리 memory and I/O intensive user data (x), MapReduce 의처리를하지않음. 단, single point of failure of your Hadoop cluster. Secondary NameNode DataNode slave machine 은 DataNode daemon 을통해분산파일의 read/write 작업을수행. DataNode communicate with other DataNodes to replicate its data blocks for redundancy. NameNode 와끊임없이통신. 15

16 JobTracker computing daemon 들사이의 master/slave architecture: JobTracker = master, TaskTracker = slave node. 응용프로그램과 Hadoop 사이의중간연락을하는 daemon 파일처리를위한실행계획, node 할당, task monitoring 등 master node 가수행 only one JobTracker daemon per Hadoop cluster. TaskTracker JobTracker 가지정하는개별 task 수행. A single TaskTracker/slave node 이지만각 TaskTracker 는여러개 JVM 을통해병렬처리 16

17 Hadoop s components: HDFS (Hadoop Distributed File System) Programming paradigm (MapReduce). Partitioner redirect output from Mapper Combiner local reduce 17

18 HDFS: Data Distribution 데이터적재즉시 HDFS 가파일을 chunk 로나누어서해당 node 에복수로분배 / 복제. 특정 node 장애시 monitoring system 이데이터를 re-replicate. 전략 : Record-oriented (input 파일을 split 하고각 process 가 HDFS 의 locality 에따라할당된 record 만처리 ) Moving computation to the data ( 데이터를컴퓨터에할당하는대신컴퓨터에데이터를보내준다.) Data is distributed across nodes at load time. 18

19 MapReduce: Isolated Processes 프로세스간통신은 only implicitly. Task 는각각의 record 를독립적으로 (in isolation) 처리. Mapper 라는 task 가 record 를처리한후그출력물을 Reducer 로보내서 merge. Mapping and reducing tasks run on nodes where individual records of data are already present. 19

20 HDFS 특징 장점 단점 Block-structured 파일시스템으로서 Node 간중복저장 (replication factor= 3, by default). 별도의 namespace HDFS 는대용량처리 (terabytes or petabytes). 분산배치 / 대용량파일. HDFS는데이터신뢰성강화. 데이터의 HA. 특정 node failure시그곳에국한 HDFS 는 fast, scalable access 구현. Cluster scalability 염두 HDFS 는 Hadoop MapReduce와완벽하게통합 데이터지역성전제. long sequential streaming read를전제로함. Random access는취약. Write once and read many에최적화 Update가빈번한데이터는적합치않음. Local caching 이지원되지않음 simply be re-read from HDFS source. 20

21 DataNode 입력항목은 random 하게 block 단위로나누어배분. DataNodes holding blocks of multiple files (replication factor = 2). NameNode maps the filenames onto the block ids. NameNode Main memory 상에서 metadata 의관리 Client 는 NameNode 에게질의하여특정파일에해당하는 block 의목록을가져오고이후 Client 는 NameNode 의간섭없이병렬로 read 작업수행. 21

22 HDFS 의환경설정 (configuration) Hadoop 설치디렉토리의 conf/hadoop-defaults.xml 파일 (default 값 ) 을 override 하여설정. Configuration 설정은 key-value pairs: <property> <name>property-name</name> <value>property-value</value> </property> key value example fs.default.name protocol://servername:port hdfs://alpha.milkman.org:9000 dfs.data.dir pathname /home/username/hdfs/data dfs.name.dir pathname /home/username/hdfs/name 22

23 HDFS 의운용 HDFS 시작하기 포맷작업 bin/hadoop namenode -format 작업시작 bin/start-dfs.sh master node 에서 NameNode 서버를, slave 기기에서는 DataNode instances 를개시. 원격이용은 ssh 로가능. HDFS 작업 작업을위한 script 의위치 : bin/hadoop. 명령어구조 user@machine:hadoop$ bin/hadoop modulename -cmd args... 2 가지대표적 modules: dfs 와 dfsadmin.. 예 : someone@anynode:hadoop$ bin/hadoop dfs -ls / Found 2 items drwxr-xr-x - hadoop supergroup :40 /hadoop drwxr-xr-x - hadoop supergroup :08 /tmp 23

24 MapReduce 에서의 HDFS 이용 fs.default.name 설정 option 을 NameNode 로지정 Hadoop MapReduce job 은데이터입력 source 는자동으로 HDFS 가된다. FileInputFormat subclass 를이용 자동으로 HDFS 로부터데이터를받고 cluster node 들에게분배. HDFS API 의이용 24

25 HDFS 에서의 Node 퇴출 (decommissioning) Step 1: Cluster configuration. excludes 파일을이용. conf/hadoop-site.xml 파일에 dfs.hosts.exclude 키를추가하고 NameNode 의파일에해당하는경로를지정. Step 2: decommission 할 host 를결정 dfs.hosts.exclude 에해당기기를등록 NameNode 에연결되는것을방지 Step 3: configuration 정보를 reload 시킴 다음명령을수행 bin/hadoop dfsadmin -refreshnodes. Step 4: Shutdown nodes. decommission 작업완료후, decommissioned H/W 는 shutdown 가능. 이때 bin/hadoop dfsadmin -report 명령시현재연결된 node 의목록을볼수있음. Step 5: excludes 파일을재수정. 일단 decommission 되고나면 excludes 파일로부터다시제거한다. 이를위해다음명령을수행. bin/hadoop dfsadmin -refreshnodes 25

26 MapReduce 개념 Functional Programming 작업대상물을나누어서여러기계에배분하는데이때각각의구성인자는데이터를공유하지도않고동기화하지도않는다. MapReduce 에서모든데이터항목은 immutable, 즉, 수정불가능. 수정이되면그사항은 (key, value) pair 의형태로새로산출되고이때만통신을한다. List Processing 이론적으로 MapReduce 프로그램은입력되는데이터 List 를변환하여출력데이터 List 로보낸다. MapReduce 에서이러한작업은 2 개의서로다른 map 과 reduce 에의해 2 번발생.

27 Mapping Lists 입력데이터항목의목록 (list) 을 Mapper 라는함수에하나씩전달. Mapper 는각각을변환하여출력데이터항목 (output data element) 으로전달. Reducing Lists Mapping creates a new output list by applying a function to individual elements of an input list. Reducing 에서는관련되는값들을합친다. reducer 함수는입력리스트로부터입력값의 iterator 를받아서관련되는값들을결합 (combine) 하여하나의출력값을만들어낸다. 통상 Reducing 을통해 " 요약 (summary)" 데이터. Reducing a list iterates over the input values to produce an aggregate value as output. 27

28 MapReduce 의결합 Mapper 수행 + Reducer 수행 Key 와 values: MapReduce 에서모든값 (value) 는반드시관계되는 key 를가진다. 예컨대 : AAA mph, 12:00pm ZZZ mph, 12:02pm CCC mph, 12:15pm... 모든 mapping 및 reducing 함수는반드시 (key, value) pair 의형태로데이터를받으며그출력역시이형태를유지. 유연한 MapReduce 여타 functional mapping /reducing 과달리각단계마다여하한수의값도발생할수있다. Mapper 는하나의입력이존재하여도이를 0, 1, 또는수백개의출력으로 mapping 할수있다. reducer 도하나의입력리스트에대해이를처리한후 0, 1, 또는수십개의출력형태로산출. Keys divide the reduce space: 같은 key 를가지는모든값 (value) 는하나의 reducer 에게제시되며 key 가다른여타의 value list 에대한 reduce 작업과는별개로독립적으로진행된다. Different colors represent different keys. All values with the same key are presented to a single reduce task. 28

29 예제프로그램 : Word Count 가정 : 2 개의파일 foo.txt 의내용 : Sweet, this is the foo file bar.txt 의내용 : This is the bar file 원하는출력형태 로직 sweet 1 this 2 is 2 the 2 foo 1 bar 1 file 2 mapper (filename, file-contents): for each word in file-contents: emit (word, 1) reducer (word, values): sum = 0 for each value in values: sum = sum + value emit (word, sum) 29

30 구현 30

31 31

32 MapReduce 에서의데이터흐름 32

33 MapReduce 에서의데이터흐름 ( 상세모형 ) 33

34 Hadoop Programming 개발도구 Eclipse 를이용 Eclipse Classic + MapReduce plugin 추가 NetBeans 이용 NetBeans + MapReduce plugin 추가 34

35 예제프로그램 35

36 36

37 37

38 Hadoop 설치 권장기기사양 Xeon processors GHz 이상 Hadoop job 은 core 당 1 ~ 2 GB RAM 소모. (Python 등 script 사용시메모리추가소요 ) ( 참고 ) 일정한수의 HDD 를가지는시스템여러대가바람직. (Hadoop 은기본적으로 I/O-bound ). NIC: gigabit Ethernet 권장 설치요건사항 Java 환경 : Sun Java 1.6 이상 운영체제 : MS Windows 도가능하나 (cygwin 설치 ) 가급적 Linux. 다운로드및설치 다운로드 : 에서 Download (2013/3/27 현재 1.0.X - current stable version, 1.0 release) 설치 (hadoop-0.18 기준 ) gunzip hadoop tar.gz tar vxf hadoop tar 디렉토리구조 bin/ Hadoop 실행을위한 script 저장 conf/ cluster 의설정정보 (configuration) 저장 실행 conf/ hadoop-env.sh 를수정 (JAVA_HOME 설정 ) hadoop-site.xml 을수정. ( 환경설정 ) 38

39 Multiple node Hadoop Cluster 의경우 conf/masters 파일 ; SecondaryNameNode 의 hostname ("localhost" 를 FQDN of node to run the SecondaryNameNode service). conf/slaves 파일 : cluster 내에서 TaskTracker 및 DataNode daemon 을수행할 node 의 host 명 slave01 slave02 slave03... 암호설정되지않은 ssh 도 login 할수있도록하려면 : $ ssh-keygen -t dsa -P '' -f ~/.ssh/id_dsa$ cat ~/.ssh/id_dsa.pub >> ~/.ssh/authorized_keys ~/.ssh/id_dsa.pub 및 authorized_keys 파일을 cluster 내의모든기기에복제 복제방법 : 소규모의경우 : rsync or copy 이용 대규모의경우 : configuration 관리시스템 ( 예 : bcfg2, smartfrog, puppet) 이용. ( 주의 ) NFS 는가급적사용하지말것. (bottleneck 이된다.) DataNode 는 block storage 를공유또는 NFS 상에서기타의 high-bandwidth 작업을하지말것. 39

40 주요디렉토리 디렉토리내용 Default 위치권장하는위치 HADOOP_LOG_DIR hadoop.tmp.dir dfs.name.dir dfs.data.dir mapred.system.dir daemon으로부터출력되는 ${HADOOP_HOME}/logs log파일다른 temporary 디렉토리에 /tmp/hadoop-${user.name} 대한 base NameNode metadata 가 ${hadoop.tmp.dir}/dfs/name 저장되는곳 DataNodes가자신의 ${hadoop.tmp.dir}/dfs/data block을저장하는곳공유하는mapreduce 시스템 ${hadoop.tmp.dir}/mapred/system 파일에대한 in-hdfs 경로 /var/log/hadoop /tmp/hadoop /home/hadoop/dfs/name /home/hadoop/dfs/data /hadoop/mapred/system 40

41 Cluster 구성 소규모 Clusters: 2-10 Nodes 최소한 1 대는 NameNode/JobTracke 와 DataNode/TaskTracker 의역할을동시에수행 ; 나머지 1 대는 DataNode/TaskTracker 로동작. 최소규모시 conf/hadoop-site.xml 의예 8-10 node 경우 dfs.replication 을 3 으로설정. 중간규모 Clusters: Nodes ( 생략 ) 41

42 대규모 Clusters: 40 대이상의 Multiple Rack 환경 rack failure 에대비키위해 NameNode 의설정을변경. <property> <name>dfs.block.size</name> <value> </value> </property> Block size 를 64MB 128MB 로증가. 단, 파일당 block 수가감소하므로 parallelism 은저하. 중간규모 cluster 에서 NameNode 는 HDFS metadata 를자신이위치한 rack 내다른기기로 NFS 로기록. 또한그기기를 checkpoint 에이용하고 SecondaryNameNode process 에 compact 시킴. 이때 cluster 가해당 rack 의상태에좌우되므로 NFS-mounted write-through backup 을다른 rack 에도보관. Multiple rack 환경에서 RPC timeout 이빈번해지므로 NameNode 는 DataNode 의상태를수시로감시. 유사한 timeout mechanism 이 JobTracker 의 MapReduce 측면에도존재한다. 예 : <property> <name>dfs.namenode.handler.count</name> <value>40</value> </property> <property> <name>mapred.job.tracker.handler.count</name> <value>40</value> </property> 42

43 대규모 Clusters: 250 대이상의 Multiple Rack 환경 Property 영역설명 io.file.buffer.size io.sort.factor Rack awareness 의문제 multi-rack 에서 block 의 replica 의분산에따른데이터손실이없도록할것. (rack-aware placement 정책 ). DNSToSwitchMapping interface 를이용해서 rack topology 대응에필요한 java 프로그램을작성. 또는사용자지정 script 를각각의 node 에수행하도록 default mapper 를이용. 단, Hadoop 의 version 별로설정항목의변화가있으므로유의한다. SequenceFiles에이용되는 Read/write buffer size (H/W page size의배수로설정 ) shuffling 과정에서의파일정렬시 concurrently merge 되는 stream의수 io.sort.mb 데이터정렬시사용하는메모리 mapred.reduce.parallel.copies tasktracker.http.threads /2 * (cores/node) mapred.tasktracker.map.tasks.maximum ~ 2 * (cores/node) mapred.tasktracker.reduce.tasks.maxim 1/2 * (cores/node) um ~ 2 * (cores/node) mapper에서입력데이터를가져오기위해 reducer가사용하는 concurrent connection의수 TaskTracker가 uses to provide to reducers에 intermediate map output을제공하기위해사용하는 thread의수 각각의기기에설치하는 map task 의수. 각각의기기에설치하는 reduce task 의수 43

44 Hadoop 성능의 Monitoring 도구 Tips Ganglia 분산환경에서의 performance monitoring framework 으로서특히 Hadoop 의운영사항을관리할수있다. ( 세부사항생략 ) Nagios 범용의 cluster health 관리도구로서 large cluster 관리에적합하다. 필요시 Nagios 와 Ganglia 를함께이용할수도있다. "hadoop" 이라는이름의 user 를별도로설정할것. root 로동작하지말것. 만약 Hadoop 이 /home/hadoop/hadoop 에설치되어있다면 /home/hadoop/hadoop 을 /home/hadoop/hadoop 로 link 할것. 44

45 관련프로젝트 Apache 프로젝트 주요업체의전략 45

46 Hadoop-related projects Apache Avro 데이터 serialization Cassandra 와 HBase 데이터베이스 Chukwa monitoring system Hive 데이터의 aggregation 및 summarization 을위한 ad hoc SQL-like queries Mahout Machine learning library Pig 와 Pig Latin Pig = 대규모 data set 에대한분석플랫폼 Pig Latin = Hadoop 에서데이터변환을위한고급언어. Parallel computation 을위한 data-flow 및실행 framework ZooKeeper 분산 application 에대한 coordination 서비스 And more 46

47 Big Data 의활용 경영 자연과학 기타 47

48 Big Data 활용 전영역에활용 Urban Planning Urban Planning & Simulation (Traffic Planning) Improved Security (Scary guys) 48

49 Big Data 활용 대표적활용예 : IT Log Analytics Fraud Detection Pattern Social Media Pattern Call Center Mantra: "This Call may be recorded for QA purposes" Risk: Patterns for Modeling and Management Big Data and the Energy Sector Video Recommendation

50 Application Requirements

51 과거의 Fraud Detection

52 Big Data 를활용한 Fraud Detection

53 Cancer Tumor Genomics Vision: Personalized Therapy " years from now, each cancer patient is going to want to get a genomic analysis of their cancer and will expect customized therapy Director, The Cancer Genome Atlas, Time Magazine, 2011 진행 : UCSF cancer researchers + UCSC cancer genetic database + UC Berkeley Sequencing costs (1/150), big data 가속화 TCGA 의경우 : 5PB = 20 cancers x 1000 genomes

54 주요이슈 Big Data 와 Cloud Computing Big Data 와스토리지 과제 주요업체동향 54

55 Cloud Computing 과 Big Data Amazon AWS (Amazon Web Services) Amazon EC2 (Elastic Compute Cloud)

56 Big Data 와 Storage Current Storage Hierarchies don't support emerging requirements for Big Data File system block interface breaks object model Based on 1960's technologies and techniques Data and storage differentiated User access is shell + ls User metadata is lost Intelligence in storage systems needed!

57 Big Data 와 Storage New Approach to Storage Hierarchy: Flexibility and Intelligence Built In Applications define objects Storage of objects is abstracted Access transformed from shell + ls --> python Enables Lustre ecosystem Eables analytics

58 Cloudera Hadoop 상용화의원조 Cloudera Enterprise RTQ (Real-Time Query) provides Management and 8x5 support for Impala. available as an add-on to Cloudera Enterprise Core ( 유료서비스 ) CONFIDENTIAL - RESTRICTED 58

59 UC Berkeley 의 Big Data Architecture Framework

60 Berkeley Data Analysis System A new open source software stack to: effectively manage cluster resources efficiently extract value out of big data continuously optimize cost, time and answer quality

61 Big Data 와 Intel Cray 의 HPC interconnect 사업부문합병 (2012.9) Fabric Switch (Gemini/Aries interconnect) 를 Xeon processor 에통합 Xeon E7 (2013 주력 ) H/W-level security 내장 McAfee's Deep Defender & DeepSafe 통합 Intel MIC (Many Integrated Core) architecture for Big Data

62 Big Data Landscape 62

63 전망 데이터폭주가속화 Massive: FacebooK: 200~400TB/day, 83 million pictures Google: >25 TB/day processed data 끝없는데이터폭주 더많은기기 (cell phones, Sensors & RFIDs), 더많은사람 (3 rd world) Dirty & Unpredictable Diverse, No schema, Unstructured, Semantic Big Inconsistent syntax data 일상생활깊숙이 Smart TV, Smart Car, Smart Grid, Smart??? Analytics의시대 Other data Business Analytics, Technology Analytics,??? 데이터융합 Big Data 와여타의데이터가결합될때더큰 value 를거둔다. Create a synergy effect 63

64 과제 Data Cleansing & Filtering 의문제 Visualization 의문제 Security & Privacy 의문제 64

65 감사합니다

김기남_ATDC2016_160620_[키노트].key

김기남_ATDC2016_160620_[키노트].key metatron Enterprise Big Data SKT Metatron/Big Data Big Data Big Data... metatron Ready to Enterprise Big Data Big Data Big Data Big Data?? Data Raw. CRM SCM MES TCO Data & Store & Processing Computational

More information

DW 개요.PDF

DW 개요.PDF Data Warehouse Hammersoftkorea BI Group / DW / 1960 1970 1980 1990 2000 Automating Informating Source : Kelly, The Data Warehousing : The Route to Mass Customization, 1996. -,, Data .,.., /. ...,.,,,.

More information

Intra_DW_Ch4.PDF

Intra_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 information

PCServerMgmt7

PCServerMgmt7 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

ecorp-프로젝트제안서작성실무(양식3)

ecorp-프로젝트제안서작성실무(양식3) (BSC: Balanced ScoreCard) ( ) (Value Chain) (Firm Infrastructure) (Support Activities) (Human Resource Management) (Technology Development) (Primary Activities) (Procurement) (Inbound (Outbound (Marketing

More information

ETL_project_best_practice1.ppt

ETL_project_best_practice1.ppt ETL ETL Data,., Data Warehouse DataData Warehouse ETL tool/system: ETL, ETL Process Data Warehouse Platform Database, Access Method Data Source Data Operational Data Near Real-Time Data Modeling Refresh/Replication

More information

Integ

Integ 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 information

Oracle9i Real Application Clusters

Oracle9i 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 information

AGENDA 01 02 03 모바일 산업의 환경변화 모바일 클라우드 서비스의 등장 모바일 클라우드 서비스 융합사례

AGENDA 01 02 03 모바일 산업의 환경변화 모바일 클라우드 서비스의 등장 모바일 클라우드 서비스 융합사례 모바일 클라우드 서비스 융합사례와 시장 전망 및 신 사업전략 2011. 10 AGENDA 01 02 03 모바일 산업의 환경변화 모바일 클라우드 서비스의 등장 모바일 클라우드 서비스 융합사례 AGENDA 01. 모바일 산업의 환경 변화 가치 사슬의 분화/결합 모바일 업계에서도 PC 산업과 유사한 모듈화/분업화 진행 PC 산업 IBM à WinTel 시대 à

More information

리뉴얼 xtremI 최종 softcopy

리뉴얼 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 information

CRM Fair 2004

CRM Fair 2004 easycrm Workbench ( ) 2004.04.02 I. CRM 1. CRM 2. CRM 3. II. easybi(business Intelligence) Framework 1. 2. - easydataflow Workbench - easycampaign Workbench - easypivot Reporter. 1. CRM 1.?! 1.. a. & b.

More information

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2

FMX 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 information

Portal_9iAS.ppt [읽기 전용]

Portal_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 information

solution map_....

solution 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 information

슬라이드 1

슬라이드 1 [ CRM Fair 2004 ] CRM 1. CRM Trend 2. Customer Single View 3. Marketing Automation 4. ROI Management 5. Conclusion 1. CRM Trend 1. CRM Trend Operational CRM Analytical CRM Sales Mgt. &Prcs. Legacy System

More information

Web Application Hosting in the AWS Cloud Contents 개요 가용성과 확장성이 높은 웹 호스팅은 복잡하고 비용이 많이 드는 사업이 될 수 있습니다. 전통적인 웹 확장 아키텍처는 높은 수준의 안정성을 보장하기 위해 복잡한 솔루션으로 구현

Web 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 information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Hadoop 애플리케이션 테스트하기 클라우다인대표김병곤 fharenheit@gmail.com 2 주제 Hadoop 의기본 MapReduce 의특징과테스트의어려운점 MRUnit 을이용한단위테스트기법 통합테스트를위한 Mini Cluster 성능테스트 3 V Model Requirement Acceptance Test Analysis System Test Design

More information

슬라이드 1

슬라이드 1 Hadoop Tutorial - 설치및실행 2008. 7. 17 한재선 (NexR 대표이사 ) jshan0000@gmail.com http://www.web2hub.com H.P: 016-405-5469 Brief History Hadoop 소개 2005년 Doug Cutting(Lucene & Nutch 개발자 ) 에의해시작 Nutch 오픈소스검색엔진의분산확장이슈에서출발

More information

Model Investor MANDO Portal Site People Customer BIS Supplier C R M PLM ERP MES HRIS S C M KMS Web -Based

Model Investor MANDO Portal Site People Customer BIS Supplier C R M PLM ERP MES HRIS S C M KMS Web -Based e- Business Web Site 2002. 04.26 Model Investor MANDO Portal Site People Customer BIS Supplier C R M PLM ERP MES HRIS S C M KMS Web -Based Approach High E-Business Functionality Web Web --based based KMS/BIS

More information

1217 WebTrafMon II

1217 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 information

OZ-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 information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 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 information

분산처리 프레임워크를 활용한대용량 영상 고속분석 시스템

분산처리 프레임워크를 활용한대용량 영상 고속분석 시스템 분산처리프레임워크를활용한 대용량영상고속분석시스템 2015.07.16 SK C&C 융합기술본부오상문 (sangmoon.oh@sk.com) 목차 I. 영상분석서비스 II. Apache Storm III.JNI (Java Native Interface) IV. Image Processing Libraries 2 1.1. 배경및필요성 I. 영상분석서비스 현재대부분의영상관리시스템에서영상분석은

More information

Service-Oriented Architecture Copyright Tmax Soft 2005

Service-Oriented Architecture Copyright Tmax Soft 2005 Service-Oriented Architecture Copyright Tmax Soft 2005 Service-Oriented Architecture Copyright Tmax Soft 2005 Monolithic Architecture Reusable Services New Service Service Consumer Wrapped Service Composite

More information

歯목차45호.PDF

歯목차45호.PDF CRM CRM (CRM : Customer Relationship Management ). CRM,,.,,.. IMF.,.,. (CRM: Customer Relationship Management, CRM )., CRM,.,., 57 45 (2001 )., CRM...,, CRM, CRM.. CRM 1., CRM,. CRM,.,.,. (Volume),,,,,,,,,,

More information

Open Cloud Engine Open Source Big Data Platform Flamingo Project Open Cloud Engine Flamingo Project Leader 김병곤

Open Cloud Engine Open Source Big Data Platform Flamingo Project Open Cloud Engine Flamingo Project Leader 김병곤 Open Cloud Engine Open Source Big Data Platform Flamingo Project Open Cloud Engine Flamingo Project Leader 김병곤 (byounggon.kim@opence.org) 빅데이터분석및서비스플랫폼 모바일 Browser 인포메이션카탈로그 Search 인포메이션유형 보안등급 생성주기 형식

More information

PowerPoint Presentation

PowerPoint 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

thesis

thesis CORBA TMN Surveillance System DPNM Lab, GSIT, POSTECH Email: mnd@postech.ac.kr Contents Motivation & Goal Related Work CORBA TMN Surveillance System Implementation Conclusion & Future Work 2 Motivation

More information

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770>

<C0CCBCBCBFB52DC1A4B4EBBFF82DBCAEBBE7B3EDB9AE2D313939392D382E687770> i ii iii iv v vi 1 2 3 4 가상대학 시스템의 국내외 현황 조사 가상대학 플랫폼 개발 이상적인 가상대학시스템의 미래상 제안 5 웹-기반 가상대학 시스템 전통적인 교수 방법 시간/공간 제약을 극복한 학습동기 부여 교수의 일방적인 내용전달 교수와 학생간의 상호작용 동료 학생들 간의 상호작용 가상대학 운영 공지사항,강의록 자료실, 메모 질의응답,

More information

APOGEE Insight_KR_Base_3P11

APOGEE 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 information

Microsoft Word - zfs-storage-family_ko.doc

Microsoft Word - zfs-storage-family_ko.doc 데이터 관리 용이성과 스토리지 효율성을 하나로 결합 주요 기능 및 이점 획기적인 가격 대비 성능과 혁신적인 단순성을 하나로 결합 특징 문제를 손쉽게 발견 및 수정하고 성능을 최적화할 수 있는 탁월한 관리 툴 포괄적이고 통합된 데이터 서비스 및 프로토콜 액티브-액티브 클러스터 옵션 데이터 압축 및 인라인 중복 제거 지속적인 데이터 증가로 인해 오늘날 IT 인프라는

More information

Microsoft PowerPoint - 알고리즘_5주차_1차시.pptx

Microsoft 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 information

untitled

untitled Agenda - PLM on Sun - PLM System Architecture - Sun s Solutions 1 PLM on Sun 2 Hardware, Infrastructure software, architecture and network computing expertise PLM software and services including systems

More information

Backup Exec

Backup 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 information

SchoolNet튜토리얼.PDF

SchoolNet튜토리얼.PDF Interoperability :,, Reusability: : Manageability : Accessibility :, LMS Durability : (Specifications), AICC (Aviation Industry CBT Committee) : 1988, /, LMS IMS : 1997EduCom NLII,,,,, ARIADNE (Alliance

More information

Oracle Apps Day_SEM

Oracle Apps Day_SEM Senior Consultant Application Sales Consulting Oracle Korea - 1. S = (P + R) x E S= P= R= E= Source : Strategy Execution, By Daniel M. Beall 2001 1. Strategy Formulation Sound Flawed Missed Opportunity

More information

<4D6963726F736F667420576F7264202D205B4354BDC9C3FEB8AEC6F7C6AE5D3131C8A35FC5ACB6F3BFECB5E520C4C4C7BBC6C320B1E2BCFA20B5BFC7E2>

<4D6963726F736F667420576F7264202D205B4354BDC9C3FEB8AEC6F7C6AE5D3131C8A35FC5ACB6F3BFECB5E520C4C4C7BBC6C320B1E2BCFA20B5BFC7E2> 목차(Table of Content) 1. 클라우드 컴퓨팅 서비스 개요... 2 1.1 클라우드 컴퓨팅의 정의... 2 1.2 미래 핵심 IT 서비스로 주목받는 클라우드 컴퓨팅... 3 (1) 기업 내 협업 환경 구축 및 비용 절감 기대... 3 (2) N-스크린 구현에 따른 클라우드 컴퓨팅 기술 기대 증폭... 4 1.3 퍼스널 클라우드와 미디어 콘텐츠 서비스의

More information

Intro to Servlet, EJB, JSP, WS

Intro to Servlet, EJB, JSP, WS ! Introduction to J2EE (2) - EJB, Web Services J2EE iseminar.. 1544-3355 ( ) iseminar Chat. 1 Who Are We? Business Solutions Consultant Oracle Application Server 10g Business Solutions Consultant Oracle10g

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 In-memory 클러스터컴퓨팅프레임워크 Hadoop MapReduce 대비 Machine Learning 등반복작업에특화 2009년, UC Berkeley AMPLab에서 Mesos 어플리케이션으로시작 2010년 Spark 논문발표, 2012년 RDD 논문발표 2013년에 Apache 프로젝트로전환후, 2014년 Apache op-level Project

More information

CONTENTS Volume.174 2013 09+10 06 테마 즐겨찾기 빅데이터의 현주소 진일보하는 공개 기술, 빅데이터 새 시대를 열다 12 테마 활동 빅데이터 플랫폼 기술의 현황 빅데이터, 하둡 품고 병렬처리 가속화 16 테마 더하기 국내 빅데이터 산 학 연 관

CONTENTS Volume.174 2013 09+10 06 테마 즐겨찾기 빅데이터의 현주소 진일보하는 공개 기술, 빅데이터 새 시대를 열다 12 테마 활동 빅데이터 플랫폼 기술의 현황 빅데이터, 하둡 품고 병렬처리 가속화 16 테마 더하기 국내 빅데이터 산 학 연 관 방송 통신 전파 KOREA COMMUNICATIONS AGENCY MAGAZINE 2013 VOL.174 09+10 CONTENTS Volume.174 2013 09+10 06 테마 즐겨찾기 빅데이터의 현주소 진일보하는 공개 기술, 빅데이터 새 시대를 열다 12 테마 활동 빅데이터 플랫폼 기술의 현황 빅데이터, 하둡 품고 병렬처리 가속화 16 테마 더하기 국내

More information

The Self-Managing Database : Automatic Health Monitoring and Alerting

The 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 information

vm-웨어-01장

vm-웨어-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 information

NoSQL

NoSQL MongoDB Daum Communications NoSQL Using Java Java VM, GC Low Scalability Using C Write speed Auto Sharding High Scalability Using Erlang Read/Update MapReduce R/U MR Cassandra Good Very Good MongoDB Good

More information

PRO1_04E [읽기 전용]

PRO1_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

Domino Designer Portal Development tools Rational Application Developer WebSphere Portlet Factory Workplace Designer Workplace Forms Designer

Domino Designer Portal Development tools Rational Application Developer WebSphere Portlet Factory Workplace Designer Workplace Forms Designer Domino, Portal & Workplace WPLC FTSS Domino Designer Portal Development tools Rational Application Developer WebSphere Portlet Factory Workplace Designer Workplace Forms Designer ? Lotus Notes Clients

More information

Special Theme _ 모바일웹과 스마트폰 본 고에서는 모바일웹에서의 단말 API인 W3C DAP (Device API and Policy) 의 표준 개발 현황에 대해서 살펴보고 관 련하여 개발 중인 사례를 통하여 이해를 돕고자 한다. 2. 웹 애플리케이션과 네이

Special Theme _ 모바일웹과 스마트폰 본 고에서는 모바일웹에서의 단말 API인 W3C DAP (Device API and Policy) 의 표준 개발 현황에 대해서 살펴보고 관 련하여 개발 중인 사례를 통하여 이해를 돕고자 한다. 2. 웹 애플리케이션과 네이 모바일웹 플랫폼과 Device API 표준 이강찬 TTA 유비쿼터스 웹 응용 실무반(WG6052)의장, ETRI 선임연구원 1. 머리말 현재 소개되어 이용되는 모바일 플랫폼은 아이폰, 윈 도 모바일, 안드로이드, 심비안, 모조, 리모, 팜 WebOS, 바다 등이 있으며, 플랫폼별로 버전을 고려하면 그 수 를 열거하기 힘들 정도로 다양하게 이용되고 있다. 이

More information

Microsoft PowerPoint - eSlim SV5-2410 [20080402]

Microsoft 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 information

歯CRM개괄_허순영.PDF

歯CRM개괄_허순영.PDF CRM 2000. 8. KAIST CRM CRM CRM CRM :,, KAIST : 50%-60%, 20% 60%-80%. AMR Research 10.. CRM. 5. Harvard Business review 60%, 13%. Michaelson & Associates KAIST CRM? ( ),,, -,,, CRM needs,,, dynamically

More information

Microsoft PowerPoint - eSlim SV5-2510 [080116]

Microsoft 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 information

untitled

untitled 3 IBM WebSphere User Conference ESB (e-mail : ljm@kr.ibm.com) Infrastructure Solution, IGS 2005. 9.13 ESB 를통한어플리케이션통합구축 2 IT 40%. IT,,.,, (Real Time Enterprise), End to End Access Processes bounded by

More information

untitled

untitled 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 information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 CRM Data Quality Management 2003 2003. 11. 11 (SK ) hskim226@skcorp.com Why Quality Management? Prologue,,. Water Source Management 2 Low Quality Water 1) : High Quality Water 2) : ( ) Water Quality Management

More information

歯I-3_무선통신기반차세대망-조동호.PDF

歯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 information

2

2 2013 Devsisters Corp. 2 3 4 5 6 7 8 >>> import boto >>> import time >>> s3 = boto.connect_s3() # Create a new bucket. Buckets must have a globally unique name >>> bucket = s3.create_bucket('kgc-demo')

More information

Oracle Database 10g: Self-Managing Database DB TSC

Oracle 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 information

Voice Portal using Oracle 9i AS Wireless

Voice 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 information

디지털포렌식학회 논문양식

디지털포렌식학회 논문양식 ISSN : 1976-5304 http://www.kdfs.or.kr Virtual Online Game(VOG) 환경에서의 디지털 증거수집 방법 연구 이 흥 복, 정 관 모, 김 선 영 * 대전지방경찰청 Evidence Collection Process According to the Way VOG Configuration Heung-Bok Lee, Kwan-Mo

More information

OPCTalk 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 information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 How Hadoop Works 박영택 컴퓨터학부 HDFS Basic Concepts HDFS 는 Java 로작성된파일시스템 Google 의 GFS 기반 기존파일시스템의상위에서동작 ext3, ext4 or xfs HDFS 의 file 저장방식 File 은 block 단위로분할 각 block 은기본적으로 64MB 또는 128MB 크기 데이터가로드될때여러 machine

More information

강의10

강의10 Computer Programming gdb and awk 12 th Lecture 김현철컴퓨터공학부서울대학교 순서 C Compiler and Linker 보충 Static vs Shared Libraries ( 계속 ) gdb awk Q&A Shared vs Static Libraries ( 계속 ) Advantage of Using Libraries Reduced

More information

초보자를 위한 분산 캐시 활용 전략

초보자를 위한 분산 캐시 활용 전략 초보자를위한분산캐시활용전략 강대명 charsyam@naver.com 우리가꿈꾸는서비스 우리가꿈꾸는서비스 우리가꿈꾸는서비스 우리가꿈꾸는서비스 그러나현실은? 서비스에필요한것은? 서비스에필요한것은? 핵심적인기능 서비스에필요한것은? 핵심적인기능 서비스에필요한것은? 핵심적인기능 서비스에필요한것은? 적절한기능 서비스안정성 트위터에매일고래만보이면? 트위터에매일고래만보이면?

More information

Simplify your Job Automatic Storage Management DB TSC

Simplify your Job Automatic Storage Management DB TSC Simplify your Job Automatic Storage Management DB TSC 1. DBA Challenges 2. ASM Disk group 3. Mirroring/Striping/Rebalancing 4. Traditional vs. ASM 5. ASM administration 6. ASM Summary Capacity in Terabytes

More information

CONTENTS CONTENTS CONTENT 1. SSD & HDD 비교 2. SSD 서버 & HDD 서버 비교 3. LSD SSD 서버 & HDD 서버 비교 4. LSD SSD 서버 & 글로벌 SSD 서버 비교 2

CONTENTS 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 information

SW¹é¼Ł-³¯°³Æ÷ÇÔÇ¥Áö2013

SW¹é¼Ł-³¯°³Æ÷ÇÔÇ¥Áö2013 SOFTWARE ENGINEERING WHITE BOOK : KOREA 2013 SOFTWARE ENGINEERING WHITE BOOK : KOREA 2013 SOFTWARE ENGINEERING WHITE BOOK : KOREA 2013 SOFTWARE ENGINEERING WHITE BOOK : KOREA 2013 SOFTWARE ENGINEERING

More information

LXR 설치 및 사용법.doc

LXR 설치 및 사용법.doc Installation of LXR (Linux Cross-Reference) for Source Code Reference Code Reference LXR : 2002512( ), : 1/1 1 3 2 LXR 3 21 LXR 3 22 LXR 221 LXR 3 222 LXR 3 3 23 LXR lxrconf 4 24 241 httpdconf 6 242 htaccess

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

<목 차 > 제 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 information

비식별화 기술 활용 안내서-최종수정.indd

비식별화 기술 활용 안내서-최종수정.indd 빅데이터 활용을 위한 빅데이터 담당자들이 실무에 활용 할 수 있도록 비식별화 기술과 활용방법, 실무 사례 및 예제, 분야별 참고 법령 및 활용 Q&A 등 안내 개인정보 비식별화 기술 활용 안내서 Ver 1.0 작성 및 문의 미래창조과학부 : 양현철 사무관 / 김자영 주무관 한국정보화진흥원 : 김진철 수석 / 김배현 수석 / 신신애 부장 문의 : cckim@nia.or.kr

More information

Analyst Briefing

Analyst Briefing . Improve your Outlook on Email and File Management iseminar.. 1544(or 6677)-3355 800x600. iseminar Chat... Improve your Outlook on Email and File Management :, 2003 1 29.. Collaboration Suite - Key Messages

More information

MAX+plus II Getting Started - 무작정따라하기

MAX+plus II Getting Started - 무작정따라하기 무작정 따라하기 2001 10 4 / Version 20-2 0 MAX+plus II Digital, Schematic Capture MAX+plus II, IC, CPLD FPGA (Logic) ALTERA PLD FLEX10K Series EPF10K10QC208-4 MAX+plus II Project, Schematic, Design Compilation,

More information

08SW

08SW www.mke.go.kr + www.keit.re.kr Part.08 654 662 709 731 753 778 01 654 Korea EvaluationInstitute of industrial Technology IT R&D www.mke.go.kr www.keit.re.kr 02 Ministry of Knowledge Economy 655 Domain-Specific

More information

빅데이터_DAY key

빅데이터_DAY key Big Data Near You 2016. 06. 16 Prof. Sehyug Kwon Dept. of Statistics 4V s of Big Data Volume Variety Velocity Veracity Value 대용량 다양한 유형 실시간 정보 (불)확실성 가치 tera(1,0004) - peta -exazetta(10007) bytes in 2020

More information

RED HAT JBoss Data Grid (JDG)? KANGWUK HEO Middleware Solu6on Architect Service Team, Red Hat Korea 1

RED HAT JBoss Data Grid (JDG)? KANGWUK HEO Middleware Solu6on Architect Service Team, Red Hat Korea 1 RED HAT JBoss Data Grid (JDG)? KANGWUK HEO Middleware Solu6on Architect Service Team, Red Hat Korea 1 Agenda TITLE SLIDE: HEADLINE 1.? 2. Presenter Infinispan JDG 3. Title JBoss Data Grid? 4. Date JBoss

More information

MS-SQL SERVER 대비 기능

MS-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

15_3oracle

15_3oracle Principal Consultant Corporate Management Team ( Oracle HRMS ) Agenda 1. Oracle Overview 2. HR Transformation 3. Oracle HRMS Initiatives 4. Oracle HRMS Model 5. Oracle HRMS System 6. Business Benefit 7.

More information

이제는 쓸모없는 질문들 1. 스마트폰 열기가 과연 계속될까? 2. 언제 스마트폰이 일반 휴대폰을 앞지를까? (2010년 10%, 2012년 33% 예상) 3. 삼성의 스마트폰 OS 바다는 과연 성공할 수 있을까? 지금부터 기업들이 관심 가져야 할 질문들 1. 스마트폰은

이제는 쓸모없는 질문들 1. 스마트폰 열기가 과연 계속될까? 2. 언제 스마트폰이 일반 휴대폰을 앞지를까? (2010년 10%, 2012년 33% 예상) 3. 삼성의 스마트폰 OS 바다는 과연 성공할 수 있을까? 지금부터 기업들이 관심 가져야 할 질문들 1. 스마트폰은 Enterprise Mobility 경영혁신 스마트폰, 웹2.0 그리고 소셜라이프의 전략적 활용에 대하여 Enterpise2.0 Blog : www.kslee.info 1 이경상 모바일생산성추진단 단장/경영공학박사 이제는 쓸모없는 질문들 1. 스마트폰 열기가 과연 계속될까? 2. 언제 스마트폰이 일반 휴대폰을 앞지를까? (2010년 10%, 2012년 33%

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 information

歯부장

歯부장 00-10-31 1 (1030) 2/26 (end-to-end) Infrastructure,, AMR. e-business e-business Domain e-business B2B Domain / R&D, B2B B2E B2C e-business IT Framework e-business Platform Clearance/Security * e-business

More information

SK IoT IoT SK IoT onem2m OIC IoT onem2m LG IoT SK IoT KAIST NCSoft Yo Studio tidev kr 5 SK IoT DMB SK IoT A M LG SDS 6 OS API 7 ios API API BaaS Backend as a Service IoT IoT ThingPlug SK IoT SK M2M M2M

More information

Microsoft Word - 조병호

Microsoft Word - 조병호 포커스 클라우드 컴퓨팅 서비스 기술 및 표준화 추진 동향 조병호* 2006년에 클라우딩 컴퓨팅이란 용어가 처음 생겨난 이래 글로벌 IT 기업 CEO들이 잇달아 차 기 핵심 기술로 클라우드 컴퓨팅을 지목하면서 전세계적으로 클라우드 컴퓨팅이라는 새로운 파 라다임에 관심이 고조되고 있다. 클라우드 컴퓨팅 기술을 이용하면 효율적인 IT 자원을 운용할 수 있으며 비용절감

More information

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서 PowerChute Personal Edition v3.1.0 990-3772D-019 4/2019 Schneider Electric IT Corporation Schneider Electric IT Corporation.. Schneider Electric IT Corporation,,,.,. Schneider Electric IT Corporation..

More information

J2EE & Web Services iSeminar

J2EE & 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 information

Social Network

Social Network Social Network Service, Social Network Service Social Network Social Network Service from Digital Marketing Internet Media : SNS Market report A social network service is a social software specially focused

More information

E-BI Day Presentation

E-BI Day Presentation E-Business Intelligence Agenda Issue E-BI Architecture ORACLE E-BI Solutions ORACLE E-BI ORACLE E-BI I. Issue? KPI. (KPI ). Jeff Henley, CFO, Oracle Corporation I. Issue? I. Issue Many Sources, Users,and

More information

0125_ 워크샵 발표자료_완성.key

0125_ 워크샵 발표자료_완성.key WordPress is a free and open-source content management system (CMS) based on PHP and MySQL. WordPress is installed on a web server, which either is part of an Internet hosting service or is a network host

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 (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 information

Amazon EBS (Elastic Block Storage) Amazon EC2 Local Instance Store (Ephemeral Volumes) Amazon S3 (Simple Storage Service) / Glacier Elastic File Syste (EFS) Storage Gateway AWS Import/Export 1 Instance

More information

Microsoft PowerPoint 자동설치시스템검증-V05-Baul.pptx

Microsoft PowerPoint 자동설치시스템검증-V05-Baul.pptx DMSLAB 자동설치시스템의 HW 정보 및사용자설정기반설치 신뢰성에대한정형검증 건국대학교컴퓨터 정보통신공학과 김바울 1 Motivation Problem: 대규모서버시스템구축 Installation ti Server 2 Introduction 1) 사용자가원하는 이종분산플랫폼구성 대로 2) 전체시스템 들의성능을반영 3) 이종분산플랫폼을지능적으로자동구축 24

More information

1.장인석-ITIL 소개.ppt

1.장인석-ITIL 소개.ppt HP 2005 6 IT ITIL Framework IT IT Framework Synchronized Business and IT Business Information technology Delivers: Simplicity, Agility, Value IT Complexity Cost Scale IT Technology IT Infrastructure IT

More information

? Search Search Search Search Long-Tail Long-Tail Long-Tail Long-Tail Media Media Media Media Web2.0 Web2.0 Web2.0 Web2.0 Communication Advertisement

? Search Search Search Search Long-Tail Long-Tail Long-Tail Long-Tail Media Media Media Media Web2.0 Web2.0 Web2.0 Web2.0 Communication Advertisement Daum Communications CRM 2007. 3. 14. ? Search Search Search Search Long-Tail Long-Tail Long-Tail Long-Tail Media Media Media Media Web2.0 Web2.0 Web2.0 Web2.0 Communication Advertisement Communication

More information

スライド タイトルなし

スライド タイトルなし 2 3 회사 소개 60%출자 40%출자 주식회사 NTT데이타 아이테크 NTT DATA의 영업협력이나 첨단기술제공, 인재육성등 여러가지 지원을 통해서 SII 그룹을 대상으로 고도의 정보 서비스를 제공 함과 동시에 NTT DATA ITEC 가 보유하고 있는 높은 업무 노하우 와 SCM을 비롯한 ERP분야의 기술력을 살려서 조립가공계 및 제조업 등 새로운 시장에

More information

휠세미나3 ver0.4

휠세미나3 ver0.4 andromeda@sparcs:/$ ls -al dev/sda* brw-rw---- 1 root disk 8, 0 2014-06-09 18:43 dev/sda brw-rw---- 1 root disk 8, 1 2014-06-09 18:43 dev/sda1 brw-rw---- 1 root disk 8, 2 2014-06-09 18:43 dev/sda2 andromeda@sparcs:/$

More information

I. - II. DW ETT Best Practice

I. - II. DW ETT Best Practice IBM Business Intelligence Solution Seminar 2005 - IBM Business Consulting Service (cslee@kr.ibm.com) I. - II. DW ETT Best Practice (DW)., (EDW). Time 1980 ~1990 1995 2000 2005 * 1980 IBM Information Warehouse

More information

기타자료.PDF

기타자료.PDF < > 1 1 2 1 21 1 22 2 221 2 222 3 223 4 3 5 31 5 311 (netting)5 312 (matching) 5 313 (leading) (lagging)6 314 6 32 6 321 7 322 8 323 13 324 19 325 20 326 20 327 20 33 21 331 (ALM)21 332 VaR(Value at Risk)

More information

Storage advances and Ne over fabric

Storage 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

Manufacturing6

Manufacturing6 σ6 Six Sigma, it makes Better & Competitive - - 200138 : KOREA SiGMA MANAGEMENT C G Page 2 Function Method Measurement ( / Input Input : Man / Machine Man Machine Machine Man / Measurement Man Measurement

More information

클라우드컴퓨팅확산에따른국내경제시사점 클라우드컴퓨팅확산에따른국내경제시사점 * 1) IT,,,, Salesforce.com SaaS (, ), PaaS ( ), IaaS (, IT ), IT, SW ICT, ICT IT ICT,, ICT, *, (TEL)

클라우드컴퓨팅확산에따른국내경제시사점 클라우드컴퓨팅확산에따른국내경제시사점 * 1) IT,,,, Salesforce.com SaaS (, ), PaaS ( ), IaaS (, IT ), IT, SW ICT, ICT IT ICT,, ICT, *, (TEL) 클라우드컴퓨팅확산에따른국내경제시사점 클라우드컴퓨팅확산에따른국내경제시사점 * 1) IT,,,, Salesforce.com SaaS (, ), PaaS ( ), IaaS (, IT ), IT, SW ICT, ICT IT ICT,, ICT, *, (TEL) 02-570-4352 (e-mail) jjoon75@kisdi.re.kr 1 The Monthly Focus.

More information

Microsoft PowerPoint - 발표_090513_IBM세미나_IPTV_디디오넷_완료.ppt

Microsoft PowerPoint - 발표_090513_IBM세미나_IPTV_디디오넷_완료.ppt 신후랑 팀장, 디디오넷 (010-8752-4952, hrshin@dideonet.com) 05/20/2009 BIZ in a box - Solution for Enterprise IPTV 2 UNIX vs. x86 Non-x86 UNIX 2008 2007 0% Y/Y Total x86 2008 2007-25.3% Y/Y 0 200 400 600 800 3 Why

More information

vm-웨어-앞부속

vm-웨어-앞부속 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 information

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r Jakarta is a Project of the Apache

More information

dbms_snu.PDF

dbms_snu.PDF DBMS : Past, Present, and the Future hjk@oopsla.snu.ac.kr 1 Table of Contents 2 DBMS? 3 DBMS Architecture naive users naive users programmers application casual users casual users administrator database

More information