A New Strategy of Storage & Retrieval for Massive Remote Sensing Data

Size: px
Start display at page:

Download "A New Strategy of Storage & Retrieval for Massive Remote Sensing Data"

Transcription

1 A New Strategy of Storage & Retrieval for Massive Remote Sensing Data Based on Embedded Database Files 1,2,3 YUAN Fa-jie, 1,2,3 GAO Wei, 2,3,4* HUANG Xiang-zhi, 1 HUANG Fang, 2,3 YU Tao, 2,3,5 ZHU Yan-na 1 School of Automation Engineering, University of Electronic Science and Technology of China, Chengdu , China 2 State Key Laboratory of Remote Sensing Science, Institute of Remote Sensing Applications Chinese Academy of Sciences, Beijing ,China ; 3 Demonstration Center for Spaceborne Remote Sensing, Beijing , China 4 Zhejiang Provincial Key Lab of GIS, Zhejiang University, Hangzhou , China 5 Geomatics School, Liaoning Technical University, Fuxin , China yuan @163.com, hxz_gis_china@hotmail.com Abstract This paper, referring to technology about storage management systems of massive remote sensing images at home and abroad, proposed a new distributed storage strategy and parallel retrieval mode based on lightweight embedded database files. In the light of demands of storage management systems of massive remote sensing data, the original image data is firstly cut into standard tile data based on the data organization way called Five-layer-Fifteen-level, then tile data is stored in the disk directories of storage nodes by an distributed way, and the metadata of these standard tiles is stored in lightweight embedded database files instead of large-scale relational database in the corresponding storage nodes also by an distributed way. A large number of retrieval efficiency tests were implemented by using this storage program. Retrieval test results indicate that retrieval method based on embedded database files has much higher efficiency than that based on popular large-scale client/server relational database engines or that based on pure file system. The comprehensive program proposed by this paper provides a new strategy for storage and management of remote sensing data facing petabyte level. Key words: Massive Remote Sensing Data, Embedded Database, Distributed Storage, Parallel Retrieval 1. Introduction With the rapid development of satellite observing systems, remote sensing image data has an explosive growth trend. For a remote sensing information processing system of high-resolution satellite, as the operation of the system, the storage order of magnitude of remote sensing raster image data can reach hundreds of TB and PB level. How to more efficiently store and manage massive remote sensing data, form a unified standard, and achieve rapid sharing and distribution of remote sensing information, has become one of the key issues of the spatial information science [1]. Aiming at the study of storage and management for massive images, scholars both at home and abroad have done much work, also have introduced some database management system for massive images. Representative storage and management systems of massive images in the foreign mainly include Google Earth/Maps [1,2] developed by the Google Inc; the geographical science software World Wind [3] and EOS earth observation system [4] released by NASA; Bing Maps, which is an online mapping service platform released by Microsoft [5]; EyeStroNext data management system designed by GeoEye Company[6]. In recent years our country has also begun to study on research and construction of the image data storage and management system, there are Map World, China Centre for Resources Satellite Data and Application (CCRSDA), National Satellite Ocean Application Service (NSOAS), etc. Analysis from the above storage mode, Google Earth / Maps, World Wind, EOS, Geoeye are all based file system management; Bing Maps, TerraServer are based on large-scale relational database International Journal of Advancements in Computing Technology(IJACT) Volume4, Number18,October doi: /ijact.vol4.issue

2 management; The storage structure of Map World, CCRSDA, NSOAS is a hybrid approach based on the file system and large-scale relational databases [1 ~ 7]. This paper, referring to the technologies of above massive remote sensing data storage management system, designed a new storage strategy based on lightweight embedded database files. The basic idea of this scheme is that in the first place original images are cut into a series of standard tiles based on segmentation standard combining with the space characteristics and application requirements of remote sensing images, and then standard tiles are stored in disk file directories of the distributed storage nodes in accordance with the storage specification, meanwhile, tiles attribute information or metadata which has a role of index is stored in corresponding SQLite embedded database files in the same node. This program gives full play to the advantage of embedded database files and the parallel characteristics of the distributed system, achieving low-cost storage and efficient retrieval. 2. Brief introduction of embedded database The name of embedded database comes from its unique mode of operation. Embedded database, without stand-alone database engine, is usually integrated with an embedded operating system and specific applications, and data access operation can be achieved directly by the program by calling the appropriate API [10]. Compared with the common databases, embedded database has a small size, full function, portability, robustness and other characteristics. We use SQLite embedded database files in this research program. SQLite developed by D.RichardHipp by using a small C library is an embedded relational database management system. The architecture of SQLite can be in general divided into eight major subsystems [8], as shown in figure 1. SQLite supports most of SQL92, for example, supporting multiple tables, indices, transactions, triggers, and views, etc. In additional, SQLite is a compact library. With all features enabled, the library size can be less than 350KB, depending on the target platform and compiler optimization settings. Simultaneously, SQLite has also the following features: Zero-configuration-no setup or administration needed; A complete database is stored in a single cross-platform disk file; Don't have external dependence with a strong cross-platform transportability; Support ACID; Faster than popular client/server database engines for most common operations; Supports terabyte-sized databases and gigabyte-sized strings and blobs; Free use for any purpose[8]. Figure 1. Block diagram of SQLite 3. Distributed strategy based on embedded database files A simple distributed prototype system is designed for the purpose of illustrating the principle of this research program, as shown in figure 2. This system is based on the client/server mode, and is designed by the three logically independent layers. The first layer named the presentation layer is composed of a number of clients providing graphical user interface(gui) and mainly used for 399

3 uploading and searching the original data; The second layer is operational level consisted of a central node server and preprocessor, which is mainly used for block preprocessing of original images, data transfer, transaction processing, order monitoring, data flow control, etc; The third layer which is data layer composed of several PC as storage nodes, which is used for management and maintenance of data. The original data, tiles data and attribute information which has the effect of index function is stored in this layer. Figure 2. Distributed strategy based on the embedded database files 4. Storage strategy based on embedded database files 4.1 Data pretreatment on the basis of application requirements The necessity of block preprocessing of original image data At present, providing image publishing services and standardized production is the most important applications direction of remote sensing images. By studying on the data storage and management technologies, it is not difficult to find that using multi-resolution pyramid image block technique is an effective way to realize the real-time zooming display and high-speed service of remote sensing images; According to production, the increasing speed of the current computer memory always falls behind of that of the amount of data. Reading all data to memory and calculating using complex algorithms is difficult to ordinary PC and will cause a slow response system. So it is very necessary to use the image block technology from the point of effectively making use of computer resource Preprocessing method based on block technology According to the characteristic of service demands of remote sensing data, This system adopts a block standard named Five-layer-Fifteen-level[9]. Block standard is as shown in table 1. The basic idea of this method is that cut the original remote sensing data into standard block data or tile data which is organized by pyramid on the basis of grid of longitude and latitude according to the need of resolution, then generate pyramid layers from bottom to top by sampling. Each layer of the pyramid layers has three levels, the ratio of each level is 5:2.5:1, and the ratio of each layer is 10:1, each tile has a size of 1000 pixel * 1000 pixel.finally all tiles are marked with row and column instead of latitude and longitude. Compared with the existing hierarchical segmentation such as World Wind, this present invention does not require projection, the block size of each level is simple limited floating-point numbers, position can be determined by simplified latitude and longitude coordinates, facilitating data organization and management, and can also ensure the seamless splice of multiple images when displaying in the sphere. 400

4 4.2 Storage procedure Table 1. Five-layer-Fifteen-level image segmentation standard The system uses a storage method combined with disk directories and the embedded database files, Image data and image attribute information is stored separately, the original images tiles are stored in disk directories, while attribute data of original images and tiles is stored in the embedded databases. Storage of image data and image attribute information is all by distributed structure in this program. The basic steps are as follows: 1. The client uploads original image data to center node server. 2. The center node server sends original data to the disk directory of the storage node of original data, and at the same time,the attribute data of original data is stored in the embedded database files which is stored in the disk directory, meanwhile, the center node will send a message to preprocessor so that preprocessor can download the original data, then original data will be cut into standard tiles according to Five-layer-Fifteen-level image segmentation standard after registration and correction by preprocessor, and then preprocessor will send message to center node server and upload the tiles to center node. 3. Center node server send standard tiles to storage nodes based on the storage rule according to row and column number of each tile. Specific storage rules are as follows: Mod (TileRowNU M TileColumn NUM)%MaxNo de if the number of the storage nodes is n(n<=maxnode),and now the remainder number of each node is N which is between (INT)MaxNode/n and (INT) MaxNode/n+1, and the adjacent remainder number of the same disk directory of each node is n. For example, The maximum number of storage nodes is set to two hundred and fifty-five, but the actual number of storage nodes is eight, and now the assigned remainder number of each node is between thirty-one and thirty-two, the remainder number of the first storage node is assigned to zero, eight, sixteen,..., two hundred and forty-eight, the second is assigned to one, nine, seventeen, two hundred and forty-nine, According to this rule, the remainder number of the eighth storage node should be assigned to seven, fifteen, twenty-three,..., two hundred and forty-seven. 4. On each disk directory of storage nodes there are one or more folders which are named by remainder number called IPMod-directory, in which there is a SQLite embedded database. When tiles data is stored, the attribute information data or metadata of tiles will be stored in embedded database file. The metadata data of each tile in this study mainly includes serial number of the original image, satellite type, sensor type, the date, tiles level, row and column number of tiles, tile types (including four bands, azimuth angle, zenith angle, day, quick view), etc. 401

5 4.3 Storage and naming convention of tiles In order to facilitate the tile data retrieval, the tile storage path and tile naming specification must be associated with metadata information of each tile which is stored in embedded database files. We need establish a mapping between tile storage path, tile name and attribute field information of the data table. Taking HJ-1 satellite data as an example in this study, storage path specification of tiles can be as follows: disk directory \ IPMod-directory \ tiles level\sensor type \year \month\day\ satellite type\ the serial number of original data\tile type, storage tree structure is as shown in figure 3; Tiles naming convention: satellite_ sensor_ time_ product serial number of original data _ tile level _ row number _column number _ tile type. image extension. Figure 3. Tile storage directory 5. Research of retrieval schemes 5.1 Design of retrieval schemes According to the storage structure above, it is not hard to find that all the standard tiles and attribute data are stored in specific computer cluster by distributed mode. In addition, tiles data is stored level by level according to naming convention so that storage address of tiles will have a rule to be followed. Based on all above, this research has discussed two traditional retrieval schemes, and done retrieval efficiency tests with our retrieval scheme based on SQLite embedded database files so that we can prove our retrieval scheme has a much more efficiency,. Scenario 1: Retrieval based on large-scale client/server mode relational database such as Oracle, DB2, Microsoft SQL Server, which are the current mainstream retrieval methods. The basic idea is that retrieval function is achieved by image paths or other metadata which are stored in database tables. You just need organize SQL based on corresponding search condition, all records met the search conditions will be retrieved.take Oracle as an example, which supports distributed structure, however, it is not easy to realize distributed databases in actual project applications due to the complex installation and configuration, maintenance of operating environment and very expensive software. Therefore the current majority of units which adopts this retrieval scheme in most case essentially use the distributed storage only for image data, centralized storage for image attribute data in a database table by stand-alone or single-core. Retrieval test results in this study also adopt the normal centralized storage of metadata. 402

6 Scenario 2: Retrieval completely based on file system. Please refer to the storage structure of Figure 3, and its basic idea is that retrieval starts from the root directory, and then retrieves its subdirectories. If the subdirectories match the search criteria, turn down recursively level by level until file. It is similar to a tree structure traverse, folders are equivalent to tree nodes, and files are equivalent to leaves nodes. In this study, for example, the user inputs retrieval conditions which mainly include retrieval longitude and latitude range, satellite type, sensor type, level of tiles, time, tiles type, etc. Center node server can calculate the row and column numbers of tiles and the IP of storage nodes according to the longitude and latitude, then sends a message to inform the corresponding nodes; storage nodes determine whether each directory name matches retrieval conditions, and traverse to bottom by this way level by level, get the file name at the bottom directory, such as HJ1A_CCD1_ _L _5_241_599-Azimuth.Tif, Then just judge whether row and column numbers of tiles in the search range so that you can determine whether tiles met retrieval requirements. Scenario 3: Distributed multi-machine parallel retrieval based on SQLite embedded database file, which is low-cost and easy to implement compared with distributed large-scale relational databases. As shown in figure 4, retrieval core structure includes a centre node server which is used to receive query requests from users and many backend storage nodes for practical retrieval. This retrieval is implemented by constructing index files for massive tiles data instead of traversing a lot of disk directories. Basic procedures of search process are as follows: 1. The client puts forward inquiry requests and inform center node server. 2. Center node server organizes corresponding SQL statements according to the inquiry condition, then sends messages to inform each storage node and delivers SQL through the TCP/IP protocol. Take a complex SQL statement as an example: SELECT * FROM TABLENAME WHERE (ROW>=TILE1ROWNUM AND ROW<= TILE2ROWNUM) AND (COLUMN>=TILE1COLUMNNUM AND COLUMN<=TILE2COLUMNNUM ) AND (DATE BETWEEN AND ) AND ( SATELLITE= 'HJ1A' ) AND ( SENSOR= 'CCD2' OR SENSOR= 'CCD1') AND ( TYPE= 'BAND1' OR TYPE= 'AZIMUTH' OR TYPE= 'ZENITH') AND (TILELEVEL=5). 3. Storage nodes search their own embedded database files in disk dictionary according to the SQL, and full paths of the images can be parsed out in accordance with the storage specification by the metadata information retrieved. In order to the ignore the impact of communication speed as much as possible, all result records will be returned to center node by paging feedback, the center node server can get the next page data from data set of retrieval results when users put forward the page request. 4. The center node collects all result records of storage nodes and shows to the users by paging. Figure 4. Retrieval framework based on distributed multi-machine parallel method 5.2 Comparative analysis of experimental test results Experimental environment configuration is LAN speed 100 Mbps, we have tested twice, the first time we adopt four storage nodes, and second time we adopt eight storage nodes; a central node server, four clients. All the machines have the same hardware and software configuration, as follows: 403

7 CPU: Intel (R) Core(TM) 2 Quad CPU Physical memory: 4 GB; Hard disc: 500G 7200 RPM; Operating system: Window XP pro Affected by the SQL statement complexity and systematic errors factors, the retrieval test results of several times float within about 3 second, and the following test results are only time of CPU computing and outputting result into cache, do not contain display time, test results are as follows: Table.2 Scenario 1 based on the Oracle database test results Table 3. Test results of a single SQLite database file Table 4. Scenario 3 parallel test results of four storage nodes Table 5. Scenario 3 parallel test results of eight storage nodes Figure 5. Contrast of test Efficiency Figure 6. Single storage nodes contrast of test Efficiency Results analysis Scenario 1 test results are as shown in Table 2. It is obviously that the number of records (ten thousand) and the retrieval time is nearly linear relationship, k 2. Therefore, when the data reaches a 404

8 certain level, data retrieval efficiency may become a bottleneck, in this case, if we want to improve the speed of database retrieval, the database must deploy a lot of indices and upgrade hardware configuration greatly, which will cause the rising cost of equipment, obviously, the retrieval system based stand-alone or single-core can't reach the requirement of high efficiency retrieval for millions or even billion records. Operation of scenario 2 is simple, which do not need database support, and system based on this scenario is very cheap, the efficiency is high for the precise retrieval conditions including file names, but with the increase of the retrieval data files,retrieval efficiency will be increasingly slow, especially for fuzzy retrieval, sometimes the processor must traverse all subdirectories space, as shown in figure 3, if each disk directory only has one IPMod-directory, it will be nearly a million times traversing all directories, which will spend much time. Tests show that when the amount of retrieval data of each storage node reaches one hundred thousand records, the retrieval time will cost several minutes, the retrieval efficiency of which is not satisfying. Test results of scenario 3 are shown in table 4 and 5, figure 5 shows that the test efficiency is higher than the former two solutions when retrieving a large quantity of data by test comparison, and is raised from minute level to second grade, and the overall efficiency of searching with parallel increase with the increase of the number of node. Due to the limit of objective conditions, it is difficult to reach design index of the massive data test, we can only do efficiency test to a certain extent. Figure 6 is the comparison of retrieval efficiency of single SQLite file and retrieval efficiency of each node by adopting multi-node parallel test. Doing this test is only for theoretical analysis. Each node is assigned only one IPMod-directory, namely each node has one SQLite database file, it can be found that the retrieval time is very close when the number of retrieval records of each storage node is equal to the number of retrieval records of single SQLite database file. Accordingly, we can infer the retrieval efficiency of each node by adopting multi-node parallel test is approximately equal to retrieval efficiency of single SQLite file when each storage node has only one SQLite database file (ignoring influence of system error). It can be inferred from above analysis that if two hundred million tile records are stored in this system, the average number of each embedded database file records assigned is eight hundred thousand because the Mods of tiles are continuous according to the above distributed architecture which has two hundred and fifty-five storage nodes. Test results of table 3 shows it will take about 20 seconds when eight hundred thousand records are all retrieved, while it will take a few minutes or even hours by scheme1 in spite of memory overflow when two hundred million tile records are retrieved. The experiment test and theoretical analysis shows that the retrieval framework of plan 3 is better than plan 2, and the retrieval efficiency of scenario 3 is much higher than that of scenario 1 and scenario Conclusion According to the characteristics of massive remote sensing image data and image management needs, this paper,on the basis of the previous work, put forward a kind of distributed storage architecture based on embedded database files and retrieval scheme based on multi-machine parallel mode. Through application testing of this prototype system, the result shows that the storage of massive remote sensing image data based on distributed lightweight embedded database files instead of large-scale relational database is feasible. In an actual project application, expansion and optimization for this strategy may be needed, such as increasing the number of central servers and storage nodes, changing the distributed strategy, increasing data redundancy, for the purpose of optimization for storage and retrieval of the system. The main contribution of this study is as follows: 1It is the first time to introduce embedded database into the storage and management system of massive remote sensing data, and a distributed structure using simple principle is designed for preliminary study 2the retrieval scenario based on the embedded database file has a much higher efficiency than that based on large-scale client/server relational database or that based on pure file system3this scenario based on SQLite file, breaking away from large-scale relational database, reduces the cost of the system to a large extent. Therefore, the result of this research has important commercial value4the comprehensive scenario presented provides a new technical support for the storage and management of massive remote sensing data. The 405

9 next step we will do further research and testing for the security, stability, data recovery capabilities of the scenario, as well as large-user concurrent access ability. 7. Acknowledgements This work is supported by the Civil Aerospace Twelfth Five-Year Project (Grant no. Y1K00200KJ), the National Nature Science Foundation of China (Grant no ), and the integrated geo-spatial information technology and its application to resource and environmental management towards the GEOSS (Grant no. FP ). I would also offer my deep appreciation to Professor Gu Xing-fa, my tutor, for the precious guidance to my academic life. 8. References [1] LÜ Xuefeng, CHENG Chengqi, Review of data storage and management technologies for massive remote sensing data, Science China Technological Sciences, Science China Press, vol. 54, no. 12, pp , [2] GIBIN M, Singleton A, An exploratory cartographic visualization of London through the Google Maps API, Appl Spat AnalPol, vol. 1, no. 2, pp , [3] BellD G, Kuehnel F, Maxwell C, NASA World Wind: open source GIS for mission operations, In Proceedings of IEEE Aerospace Conference, pp. 1 9, [4] ESFANDIARI M, Ramapriyan H, Earth Observing System (EOS) Data and Information System (EOSDIS) Evolution Update and Future, In Proceedings of IEEE International Geoscience and Remote Sensing Symposium (IGARSS 2007). Barcelona: IEEE, pp , [5]MICHAEL Levin, Certain Finite Dimensional Maps and Their Application To Hyperspaces,Israel Journal of Mathematics, Hebrew University Magnes Press, vol. 105, no. 1, pp , [6] YU Haiyang, CHENG Gang, Object Oriented Land Cover Classification Using ALS and GeoEye Imagery over Mining Area,Transactions of Nonferrous Metals Society of China, Science Press, vol. 21, pp. s733-s737, [7] MITHCHELL A, Ramapriyan H, Evolution of Web services in EOSDIS-search and order metadata registry (ECHO), In Proceedings of IEEE International Geoscience and Remote Sensing Symposium (IGARSS 2009), pp , [8] SQLite home page, [9] Gu Xingfa, YU Tao, Xie Donghai, a hierarchically organized method based on the latitude and longitude grid data: In Chinese, publication Number is CN [10] Wei-Chih Hsu, Tsan-Ying Yu, " Spam Filtering Based on Support Vector Machines with Taguchi Method for Parameter Selection", JCIT, vol. 5, no. 8, pp. 78 ~ 88, [11] Shifei Ding, Li Xu, Hong Zhu, Liwen Zhang, Research and Progress of Cluster Algorithms based on Granular Computing, JDCTA: International Journal of Digital Content Technology and its Applications, vol.4, no.5, pp ,2010. [12] Ding Shifei, Qian Jun, Xu Li, Zhao Xiangwei, Jin Fengxiang, "A Clustering Algorithm Based on Information Visualization ", JDCTA: International Journal of Digital Content Technology and its Applications, Vol. 5, No. 1, pp. 26 ~ 31,

Remote Sensitive Image Stations and Grid Services

Remote Sensitive Image Stations and Grid Services International Journal of Grid and Distributed Computing 23 Remote Sensing Images Data Integration Based on the Agent Service Binge Cui, Chuanmin Wang, Qiang Wang College of Information Science and Engineering,

More information

Scaling Objectivity Database Performance with Panasas Scale-Out NAS Storage

Scaling Objectivity Database Performance with Panasas Scale-Out NAS Storage White Paper Scaling Objectivity Database Performance with Panasas Scale-Out NAS Storage A Benchmark Report August 211 Background Objectivity/DB uses a powerful distributed processing architecture to manage

More information

UPS battery remote monitoring system in cloud computing

UPS battery remote monitoring system in cloud computing , pp.11-15 http://dx.doi.org/10.14257/astl.2014.53.03 UPS battery remote monitoring system in cloud computing Shiwei Li, Haiying Wang, Qi Fan School of Automation, Harbin University of Science and Technology

More information

Mobile Storage and Search Engine of Information Oriented to Food Cloud

Mobile Storage and Search Engine of Information Oriented to Food Cloud Advance Journal of Food Science and Technology 5(10): 1331-1336, 2013 ISSN: 2042-4868; e-issn: 2042-4876 Maxwell Scientific Organization, 2013 Submitted: May 29, 2013 Accepted: July 04, 2013 Published:

More information

Questions to be responded to by the firm submitting the application

Questions to be responded to by the firm submitting the application Questions to be responded to by the firm submitting the application Why do you think this project should receive an award? How does it demonstrate: innovation, quality, and professional excellence transparency

More information

A FRAMEWORK OF WEB-BASED SERVICE SYSTEM FOR SATELLITE IMAGES AUTOMATIC ORTHORECTIFICATION

A FRAMEWORK OF WEB-BASED SERVICE SYSTEM FOR SATELLITE IMAGES AUTOMATIC ORTHORECTIFICATION A FRAMEWORK OF WEB-BASED SERVICE SYSTEM FOR SATELLITE IMAGES AUTOMATIC ORTHORECTIFICATION Jiaojiao Tian, Xinming Tang, Huabin Wang Key Laboratory of Geo-informatics of State Bureau of Surveying and Mapping,

More information

http://www.paper.edu.cn

http://www.paper.edu.cn 5 10 15 20 25 30 35 A platform for massive railway information data storage # SHAN Xu 1, WANG Genying 1, LIU Lin 2** (1. Key Laboratory of Communication and Information Systems, Beijing Municipal Commission

More information

Research on Aggregation Service-oriented Spatial Subdivision Data

Research on Aggregation Service-oriented Spatial Subdivision Data Research on Aggregation Service-oriented Spatial Subdivision Data Storage Scheduling Model 1 Du Gen-yuan, 2 Qiu Ying-yu, 3 Miao Fang 1 International School of Education, Xuchang University, China, xcdgy1974@126.com

More information

Figure 1: Architecture of a cloud services model for a digital education resource management system.

Figure 1: Architecture of a cloud services model for a digital education resource management system. World Transactions on Engineering and Technology Education Vol.13, No.3, 2015 2015 WIETE Cloud service model for the management and sharing of massive amounts of digital education resources Binwen Huang

More information

Remote sensing information cloud service: research and practice

Remote sensing information cloud service: research and practice Remote sensing information cloud service: research and practice Yang Banghui Dr., Ren Fuhu Prof. and Wang jinnian Prof. yangbh@radi.ac.cn +8613810963452 Content 1 Background 2 Studying and Designing 3

More information

Planning the Installation and Installing SQL Server

Planning the Installation and Installing SQL Server Chapter 2 Planning the Installation and Installing SQL Server In This Chapter c SQL Server Editions c Planning Phase c Installing SQL Server 22 Microsoft SQL Server 2012: A Beginner s Guide This chapter

More information

Base One's Rich Client Architecture

Base One's Rich Client Architecture Base One's Rich Client Architecture Base One provides a unique approach for developing Internet-enabled applications, combining both efficiency and ease of programming through its "Rich Client" architecture.

More information

Modeling for Web-based Image Processing and JImaging System Implemented Using Medium Model

Modeling for Web-based Image Processing and JImaging System Implemented Using Medium Model Send Orders for Reprints to reprints@benthamscience.ae 142 The Open Cybernetics & Systemics Journal, 2015, 9, 142-147 Open Access Modeling for Web-based Image Processing and JImaging System Implemented

More information

Understanding the Benefits of IBM SPSS Statistics Server

Understanding the Benefits of IBM SPSS Statistics Server IBM SPSS Statistics Server Understanding the Benefits of IBM SPSS Statistics Server Contents: 1 Introduction 2 Performance 101: Understanding the drivers of better performance 3 Why performance is faster

More information

Chapter 7. Using Hadoop Cluster and MapReduce

Chapter 7. Using Hadoop Cluster and MapReduce Chapter 7 Using Hadoop Cluster and MapReduce Modeling and Prototyping of RMS for QoS Oriented Grid Page 152 7. Using Hadoop Cluster and MapReduce for Big Data Problems The size of the databases used in

More information

Visualization Method of Trajectory Data Based on GML, KML

Visualization Method of Trajectory Data Based on GML, KML Visualization Method of Trajectory Data Based on GML, KML Junhuai Li, Jinqin Wang, Lei Yu, Rui Qi, and Jing Zhang School of Computer Science & Engineering, Xi'an University of Technology, Xi'an 710048,

More information

Research on massive data storage in virtual roaming system based on RAID5 RAN Feipeng, DAI Huayang, XING Wujie, WANG Xiang, Li Xuesong

Research on massive data storage in virtual roaming system based on RAID5 RAN Feipeng, DAI Huayang, XING Wujie, WANG Xiang, Li Xuesong International Conference on Advances in Mechanical Engineering and Industrial Informatics (AMEII 2015) Research on massive data storage in virtual roaming system based on RAID5 RAN Feipeng, DAI Huayang,

More information

How to Design and Create Your Own Custom Ext Rep

How to Design and Create Your Own Custom Ext Rep Combinatorial Block Designs 2009-04-15 Outline Project Intro External Representation Design Database System Deployment System Overview Conclusions 1. Since the project is a specific application in Combinatorial

More information

Scala Storage Scale-Out Clustered Storage White Paper

Scala Storage Scale-Out Clustered Storage White Paper White Paper Scala Storage Scale-Out Clustered Storage White Paper Chapter 1 Introduction... 3 Capacity - Explosive Growth of Unstructured Data... 3 Performance - Cluster Computing... 3 Chapter 2 Current

More information

Optimization of Distributed Crawler under Hadoop

Optimization of Distributed Crawler under Hadoop MATEC Web of Conferences 22, 0202 9 ( 2015) DOI: 10.1051/ matecconf/ 2015220202 9 C Owned by the authors, published by EDP Sciences, 2015 Optimization of Distributed Crawler under Hadoop Xiaochen Zhang*

More information

CONCEPTUAL MODEL OF MULTI-AGENT BUSINESS COLLABORATION BASED ON CLOUD WORKFLOW

CONCEPTUAL MODEL OF MULTI-AGENT BUSINESS COLLABORATION BASED ON CLOUD WORKFLOW CONCEPTUAL MODEL OF MULTI-AGENT BUSINESS COLLABORATION BASED ON CLOUD WORKFLOW 1 XINQIN GAO, 2 MINGSHUN YANG, 3 YONG LIU, 4 XIAOLI HOU School of Mechanical and Precision Instrument Engineering, Xi'an University

More information

POWER ALL GLOBAL FILE SYSTEM (PGFS)

POWER ALL GLOBAL FILE SYSTEM (PGFS) POWER ALL GLOBAL FILE SYSTEM (PGFS) Defining next generation of global storage grid Power All Networks Ltd. Technical Whitepaper April 2008, version 1.01 Table of Content 1. Introduction.. 3 2. Paradigm

More information

Design of Electric Energy Acquisition System on Hadoop

Design of Electric Energy Acquisition System on Hadoop , pp.47-54 http://dx.doi.org/10.14257/ijgdc.2015.8.5.04 Design of Electric Energy Acquisition System on Hadoop Yi Wu 1 and Jianjun Zhou 2 1 School of Information Science and Technology, Heilongjiang University

More information

Hardware/Software Guidelines

Hardware/Software Guidelines There are many things to consider when preparing for a TRAVERSE v11 installation. The number of users, application modules and transactional volume are only a few. Reliable performance of the system is

More information

Memory Database Application in the Processing of Huge Amounts of Data Daqiang Xiao 1, Qi Qian 2, Jianhua Yang 3, Guang Chen 4

Memory Database Application in the Processing of Huge Amounts of Data Daqiang Xiao 1, Qi Qian 2, Jianhua Yang 3, Guang Chen 4 5th International Conference on Advanced Materials and Computer Science (ICAMCS 2016) Memory Database Application in the Processing of Huge Amounts of Data Daqiang Xiao 1, Qi Qian 2, Jianhua Yang 3, Guang

More information

The Sierra Clustered Database Engine, the technology at the heart of

The Sierra Clustered Database Engine, the technology at the heart of A New Approach: Clustrix Sierra Database Engine The Sierra Clustered Database Engine, the technology at the heart of the Clustrix solution, is a shared-nothing environment that includes the Sierra Parallel

More information

Study on Redundant Strategies in Peer to Peer Cloud Storage Systems

Study on Redundant Strategies in Peer to Peer Cloud Storage Systems Applied Mathematics & Information Sciences An International Journal 2011 NSP 5 (2) (2011), 235S-242S Study on Redundant Strategies in Peer to Peer Cloud Storage Systems Wu Ji-yi 1, Zhang Jian-lin 1, Wang

More information

Make search become the internal function of Internet

Make search become the internal function of Internet Make search become the internal function of Internet Wang Liang 1, Guo Yi-Ping 2, Fang Ming 3 1, 3 (Department of Control Science and Control Engineer, Huazhong University of Science and Technology, WuHan,

More information

On Cloud Computing Technology in the Construction of Digital Campus

On Cloud Computing Technology in the Construction of Digital Campus 2012 International Conference on Innovation and Information Management (ICIIM 2012) IPCSIT vol. 36 (2012) (2012) IACSIT Press, Singapore On Cloud Computing Technology in the Construction of Digital Campus

More information

Chapter 11 Map-Reduce, Hadoop, HDFS, Hbase, MongoDB, Apache HIVE, and Related

Chapter 11 Map-Reduce, Hadoop, HDFS, Hbase, MongoDB, Apache HIVE, and Related Chapter 11 Map-Reduce, Hadoop, HDFS, Hbase, MongoDB, Apache HIVE, and Related Summary Xiangzhe Li Nowadays, there are more and more data everyday about everything. For instance, here are some of the astonishing

More information

Design of the Database of Library Information

Design of the Database of Library Information Design of the Database of Library Information XueLian Feng and HaiYan Liu Baotou railway vocational technical college,baotou,inner Mongolia, 014040,China snow_snowflake@sina.com.cn, liuhaiyanliuhaiyan@live.cn

More information

Research on Operation Management under the Environment of Cloud Computing Data Center

Research on Operation Management under the Environment of Cloud Computing Data Center , pp.185-192 http://dx.doi.org/10.14257/ijdta.2015.8.2.17 Research on Operation Management under the Environment of Cloud Computing Data Center Wei Bai and Wenli Geng Computer and information engineering

More information

Wireless Sensor Networks Database: Data Management and Implementation

Wireless Sensor Networks Database: Data Management and Implementation Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Wireless Sensor Networks Database: Data Management and Implementation Ping Liu Computer and Information Engineering Institute,

More information

RiMONITOR. Monitoring Software. for RIEGL VZ-Line Laser Scanners. Ri Software. visit our website www.riegl.com. Preliminary Data Sheet

RiMONITOR. Monitoring Software. for RIEGL VZ-Line Laser Scanners. Ri Software. visit our website www.riegl.com. Preliminary Data Sheet Monitoring Software RiMONITOR for RIEGL VZ-Line Laser Scanners for stand-alone monitoring applications by autonomous operation of all RIEGL VZ-Line Laser Scanners adaptable configuration of data acquisition

More information

PARALLEL & CLUSTER COMPUTING CS 6260 PROFESSOR: ELISE DE DONCKER BY: LINA HUSSEIN

PARALLEL & CLUSTER COMPUTING CS 6260 PROFESSOR: ELISE DE DONCKER BY: LINA HUSSEIN 1 PARALLEL & CLUSTER COMPUTING CS 6260 PROFESSOR: ELISE DE DONCKER BY: LINA HUSSEIN Introduction What is cluster computing? Classification of Cluster Computing Technologies: Beowulf cluster Construction

More information

A Network Simulation Experiment of WAN Based on OPNET

A Network Simulation Experiment of WAN Based on OPNET A Network Simulation Experiment of WAN Based on OPNET 1 Yao Lin, 2 Zhang Bo, 3 Liu Puyu 1, Modern Education Technology Center, Liaoning Medical University, Jinzhou, Liaoning, China,yaolin111@sina.com *2

More information

CLOUDDMSS: CLOUD-BASED DISTRIBUTED MULTIMEDIA STREAMING SERVICE SYSTEM FOR HETEROGENEOUS DEVICES

CLOUDDMSS: CLOUD-BASED DISTRIBUTED MULTIMEDIA STREAMING SERVICE SYSTEM FOR HETEROGENEOUS DEVICES CLOUDDMSS: CLOUD-BASED DISTRIBUTED MULTIMEDIA STREAMING SERVICE SYSTEM FOR HETEROGENEOUS DEVICES 1 MYOUNGJIN KIM, 2 CUI YUN, 3 SEUNGHO HAN, 4 HANKU LEE 1,2,3,4 Department of Internet & Multimedia Engineering,

More information

Cisco UCS and Fusion- io take Big Data workloads to extreme performance in a small footprint: A case study with Oracle NoSQL database

Cisco UCS and Fusion- io take Big Data workloads to extreme performance in a small footprint: A case study with Oracle NoSQL database Cisco UCS and Fusion- io take Big Data workloads to extreme performance in a small footprint: A case study with Oracle NoSQL database Built up on Cisco s big data common platform architecture (CPA), a

More information

Binary search tree with SIMD bandwidth optimization using SSE

Binary search tree with SIMD bandwidth optimization using SSE Binary search tree with SIMD bandwidth optimization using SSE Bowen Zhang, Xinwei Li 1.ABSTRACT In-memory tree structured index search is a fundamental database operation. Modern processors provide tremendous

More information

Developing Fleet and Asset Tracking Solutions with Web Maps

Developing Fleet and Asset Tracking Solutions with Web Maps Developing Fleet and Asset Tracking Solutions with Web Maps Introduction Many organizations have mobile field staff that perform business processes away from the office which include sales, service, maintenance,

More information

Terminal Server Software and Hardware Requirements. Terminal Server. Software and Hardware Requirements. Datacolor Match Pigment Datacolor Tools

Terminal Server Software and Hardware Requirements. Terminal Server. Software and Hardware Requirements. Datacolor Match Pigment Datacolor Tools Terminal Server Software and Hardware Requirements Datacolor Match Pigment Datacolor Tools January 21, 2011 Page 1 of 8 Introduction This document will provide preliminary information about the both the

More information

Oracle Big Data SQL Technical Update

Oracle Big Data SQL Technical Update Oracle Big Data SQL Technical Update Jean-Pierre Dijcks Oracle Redwood City, CA, USA Keywords: Big Data, Hadoop, NoSQL Databases, Relational Databases, SQL, Security, Performance Introduction This technical

More information

Tandberg Data AccuVault RDX

Tandberg Data AccuVault RDX Tandberg Data AccuVault RDX Binary Testing conducts an independent evaluation and performance test of Tandberg Data s latest small business backup appliance. Data backup is essential to their survival

More information

System Requirements - Table of Contents

System Requirements - Table of Contents Page 1 of 12 System Requirements - Table of Contents CommNet Server CommNet Agent CommNet Browser CommNet Browser as a Stand-Alone Application CommNet Browser as a Remote Web-Based Application CommNet

More information

Research on IT Architecture of Heterogeneous Big Data

Research on IT Architecture of Heterogeneous Big Data Journal of Applied Science and Engineering, Vol. 18, No. 2, pp. 135 142 (2015) DOI: 10.6180/jase.2015.18.2.05 Research on IT Architecture of Heterogeneous Big Data Yun Liu*, Qi Wang and Hai-Qiang Chen

More information

One Map Database and Its Importance

One Map Database and Its Importance Send Orders for Reprints to reprints@benthamscience.ae The Open Cybernetics & Systemics Journal, 2015, 9, 105-109 105 Open Access Study on One Map Organizational Model for Land Resources Data Used in Supervision

More information

Cisco IP Communicator (Softphone) Compatibility

Cisco IP Communicator (Softphone) Compatibility Cisco IP Communicator (Softphone) Compatibility Cisco IP Communicator is Windows based and works on both XP and Vista The minimum PC requirements for use with Microsoft Windows XP are: Microsoft Windows

More information

Network Attack Platform

Network Attack Platform Design and Implementation of a Network Attack Platform Based on Plug-in Technology Li Gen, Wang Bailing *, Liu Yang, Bai Xuefeng and Yuan Xinling Department of Computer Science & Technology Harbin Institute

More information

Deploying a distributed data storage system on the UK National Grid Service using federated SRB

Deploying a distributed data storage system on the UK National Grid Service using federated SRB Deploying a distributed data storage system on the UK National Grid Service using federated SRB Manandhar A.S., Kleese K., Berrisford P., Brown G.D. CCLRC e-science Center Abstract As Grid enabled applications

More information

SQL Server 2005 Features Comparison

SQL Server 2005 Features Comparison Page 1 of 10 Quick Links Home Worldwide Search Microsoft.com for: Go : Home Product Information How to Buy Editions Learning Downloads Support Partners Technologies Solutions Community Previous Versions

More information

Parallel Data Selection Based on Neurodynamic Optimization in the Era of Big Data

Parallel Data Selection Based on Neurodynamic Optimization in the Era of Big Data Parallel Data Selection Based on Neurodynamic Optimization in the Era of Big Data Jun Wang Department of Mechanical and Automation Engineering The Chinese University of Hong Kong Shatin, New Territories,

More information

Managing Large Imagery Databases via the Web

Managing Large Imagery Databases via the Web 'Photogrammetric Week 01' D. Fritsch & R. Spiller, Eds. Wichmann Verlag, Heidelberg 2001. Meyer 309 Managing Large Imagery Databases via the Web UWE MEYER, Dortmund ABSTRACT The terramapserver system is

More information

Study on Architecture and Implementation of Port Logistics Information Service Platform Based on Cloud Computing 1

Study on Architecture and Implementation of Port Logistics Information Service Platform Based on Cloud Computing 1 , pp. 331-342 http://dx.doi.org/10.14257/ijfgcn.2015.8.2.27 Study on Architecture and Implementation of Port Logistics Information Service Platform Based on Cloud Computing 1 Changming Li, Jie Shen and

More information

A Scheme for Implementing Load Balancing of Web Server

A Scheme for Implementing Load Balancing of Web Server Journal of Information & Computational Science 7: 3 (2010) 759 765 Available at http://www.joics.com A Scheme for Implementing Load Balancing of Web Server Jianwu Wu School of Politics and Law and Public

More information

So today we shall continue our discussion on the search engines and web crawlers. (Refer Slide Time: 01:02)

So today we shall continue our discussion on the search engines and web crawlers. (Refer Slide Time: 01:02) Internet Technology Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No #39 Search Engines and Web Crawler :: Part 2 So today we

More information

PERSONALIZED WEB MAP CUSTOMIZED SERVICE

PERSONALIZED WEB MAP CUSTOMIZED SERVICE CO-436 PERSONALIZED WEB MAP CUSTOMIZED SERVICE CHEN Y.(1), WU Z.(1), YE H.(2) (1) Zhengzhou Institute of Surveying and Mapping, ZHENGZHOU, CHINA ; (2) North China Institute of Water Conservancy and Hydroelectric

More information

Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications

Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications Comparing Microsoft SQL Server 2005 Replication and DataXtend Remote Edition for Mobile and Distributed Applications White Paper Table of Contents Overview...3 Replication Types Supported...3 Set-up &

More information

A Study on Architecture of Private Cloud Based on Virtual Technology

A Study on Architecture of Private Cloud Based on Virtual Technology A Study on Architecture of Private Cloud Based on Virtual Technology Zhao Huaming National Science Library, Chinese Academy of Sciences Beijing, China Abstract with the cloud service platform of National

More information

A Load Balancing Algorithm based on the Variation Trend of Entropy in Homogeneous Cluster

A Load Balancing Algorithm based on the Variation Trend of Entropy in Homogeneous Cluster , pp.11-20 http://dx.doi.org/10.14257/ ijgdc.2014.7.2.02 A Load Balancing Algorithm based on the Variation Trend of Entropy in Homogeneous Cluster Kehe Wu 1, Long Chen 2, Shichao Ye 2 and Yi Li 2 1 Beijing

More information

An Oracle White Paper June 2012. High Performance Connectors for Load and Access of Data from Hadoop to Oracle Database

An Oracle White Paper June 2012. High Performance Connectors for Load and Access of Data from Hadoop to Oracle Database An Oracle White Paper June 2012 High Performance Connectors for Load and Access of Data from Hadoop to Oracle Database Executive Overview... 1 Introduction... 1 Oracle Loader for Hadoop... 2 Oracle Direct

More information

Recognization of Satellite Images of Large Scale Data Based On Map- Reduce Framework

Recognization of Satellite Images of Large Scale Data Based On Map- Reduce Framework Recognization of Satellite Images of Large Scale Data Based On Map- Reduce Framework Vidya Dhondiba Jadhav, Harshada Jayant Nazirkar, Sneha Manik Idekar Dept. of Information Technology, JSPM s BSIOTR (W),

More information

Parallel Visualization for GIS Applications

Parallel Visualization for GIS Applications Parallel Visualization for GIS Applications Alexandre Sorokine, Jamison Daniel, Cheng Liu Oak Ridge National Laboratory, Geographic Information Science & Technology, PO Box 2008 MS 6017, Oak Ridge National

More information

Oracle8i Spatial: Experiences with Extensible Databases

Oracle8i Spatial: Experiences with Extensible Databases Oracle8i Spatial: Experiences with Extensible Databases Siva Ravada and Jayant Sharma Spatial Products Division Oracle Corporation One Oracle Drive Nashua NH-03062 {sravada,jsharma}@us.oracle.com 1 Introduction

More information

A Web Site Protection Oriented Remote Backup and Recovery Method

A Web Site Protection Oriented Remote Backup and Recovery Method 2013 8th International Conference on Communications and Networking in China (CHINACOM) A Web Site Protection Oriented Remote Backup and Recovery Method He Qian 1,2, Guo Yafeng 1, Wang Yong 1, Qiang Baohua

More information

System Requirements - CommNet Server

System Requirements - CommNet Server System Requirements - CommNet Page 1 of 11 System Requirements - CommNet The following requirements are for the CommNet : Operating System Processors Microsoft with Service Pack 4 Microsoft Advanced with

More information

APPLICATIONS OF LINUX-BASED QT-CUDA PARALLEL ARCHITECTURE

APPLICATIONS OF LINUX-BASED QT-CUDA PARALLEL ARCHITECTURE APPLICATIONS OF LINUX-BASED QT-CUDA PARALLEL ARCHITECTURE Tuyou Peng 1, Jun Peng 2 1 Electronics and information Technology Department Jiangmen Polytechnic, Jiangmen, Guangdong, China, typeng2001@yahoo.com

More information

CONFIGURATION GUIDELINES: EMC STORAGE FOR PHYSICAL SECURITY

CONFIGURATION GUIDELINES: EMC STORAGE FOR PHYSICAL SECURITY White Paper CONFIGURATION GUIDELINES: EMC STORAGE FOR PHYSICAL SECURITY DVTel Latitude NVMS performance using EMC Isilon storage arrays Correct sizing for storage in a DVTel Latitude physical security

More information

The road. - cases of. Wu Xiao. of China Beijing, China. Project of China. Culture. shares and resources to bridge. to the digital resources sharing

The road. - cases of. Wu Xiao. of China Beijing, China. Project of China. Culture. shares and resources to bridge. to the digital resources sharing http://conference.ifla.org/ifla78 Date submitted: 08 May 2012 The road to the digital resources sharing - cases of the Cultural Information Resources Sharing Project of China Wu Xiao National Cultural

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Big Data and Market Surveillance. April 28, 2014

Big Data and Market Surveillance. April 28, 2014 Big Data and Market Surveillance April 28, 2014 Copyright 2014 Scila AB. All rights reserved. Scila AB reserves the right to make changes to the information contained herein without prior notice. No part

More information

XTM Web 2.0 Enterprise Architecture Hardware Implementation Guidelines. A.Zydroń 18 April 2009. Page 1 of 12

XTM Web 2.0 Enterprise Architecture Hardware Implementation Guidelines. A.Zydroń 18 April 2009. Page 1 of 12 XTM Web 2.0 Enterprise Architecture Hardware Implementation Guidelines A.Zydroń 18 April 2009 Page 1 of 12 1. Introduction...3 2. XTM Database...4 3. JVM and Tomcat considerations...5 4. XTM Engine...5

More information

CASE STUDY: Oracle TimesTen In-Memory Database and Shared Disk HA Implementation at Instance level. -ORACLE TIMESTEN 11gR1

CASE STUDY: Oracle TimesTen In-Memory Database and Shared Disk HA Implementation at Instance level. -ORACLE TIMESTEN 11gR1 CASE STUDY: Oracle TimesTen In-Memory Database and Shared Disk HA Implementation at Instance level -ORACLE TIMESTEN 11gR1 CASE STUDY Oracle TimesTen In-Memory Database and Shared Disk HA Implementation

More information

Object Storage: A Growing Opportunity for Service Providers. White Paper. Prepared for: 2012 Neovise, LLC. All Rights Reserved.

Object Storage: A Growing Opportunity for Service Providers. White Paper. Prepared for: 2012 Neovise, LLC. All Rights Reserved. Object Storage: A Growing Opportunity for Service Providers Prepared for: White Paper 2012 Neovise, LLC. All Rights Reserved. Introduction For service providers, the rise of cloud computing is both a threat

More information

A Cloud-based System Framework for Storage and Analysis on Big Data of Massive BIMs

A Cloud-based System Framework for Storage and Analysis on Big Data of Massive BIMs A Cloud-based System Framework for Storage and Analysis on Big Data of Massive BIMs Hung-Ming Chen a, and Kai-Chuan Chang a a Department of Civil and Construction Engineering, National Taiwan University

More information

Keystone Image Management System

Keystone Image Management System Image management solutions for satellite and airborne sensors Overview The Keystone Image Management System offers solutions that archive, catalogue, process and deliver digital images from a vast number

More information

Big Data Storage Architecture Design in Cloud Computing

Big Data Storage Architecture Design in Cloud Computing Big Data Storage Architecture Design in Cloud Computing Xuebin Chen 1, Shi Wang 1( ), Yanyan Dong 1, and Xu Wang 2 1 College of Science, North China University of Science and Technology, Tangshan, Hebei,

More information

The Application and Development of Software Testing in Cloud Computing Environment

The Application and Development of Software Testing in Cloud Computing Environment 2012 International Conference on Computer Science and Service System The Application and Development of Software Testing in Cloud Computing Environment Peng Zhenlong Ou Yang Zhonghui School of Business

More information

The Complete Performance Solution for Microsoft SQL Server

The Complete Performance Solution for Microsoft SQL Server The Complete Performance Solution for Microsoft SQL Server Powerful SSAS Performance Dashboard Innovative Workload and Bottleneck Profiling Capture of all Heavy MDX, XMLA and DMX Aggregation, Partition,

More information

Silviu Panica, Marian Neagul, Daniela Zaharie and Dana Petcu (Romania)

Silviu Panica, Marian Neagul, Daniela Zaharie and Dana Petcu (Romania) Silviu Panica, Marian Neagul, Daniela Zaharie and Dana Petcu (Romania) Outline Introduction EO challenges; EO and classical/cloud computing; EO Services The computing platform Cluster -> Grid -> Cloud

More information

Bitemporal Extensions to Non-temporal RDBMS in Distributed Environment

Bitemporal Extensions to Non-temporal RDBMS in Distributed Environment The 8 th International Conference on Computer Supported Cooperative Work in Design Procceedings Bitemporal Extensions to Non-temporal RDBMS in Distributed Environment Yong Tang, Lu Liang, Rushou Huang,

More information

Research of Railway Wagon Flow Forecast System Based on Hadoop-Hazelcast

Research of Railway Wagon Flow Forecast System Based on Hadoop-Hazelcast International Conference on Civil, Transportation and Environment (ICCTE 2016) Research of Railway Wagon Flow Forecast System Based on Hadoop-Hazelcast Xiaodong Zhang1, a, Baotian Dong1, b, Weijia Zhang2,

More information

A KML-BASED APPROACH FOR DISTRIBUTED COLLABORATIVE INTERPRETATION OF REMOTE SENSING IMAGES IN THE GEO-BROWSER

A KML-BASED APPROACH FOR DISTRIBUTED COLLABORATIVE INTERPRETATION OF REMOTE SENSING IMAGES IN THE GEO-BROWSER A KML-BASED APPROACH FOR DISTRIBUTED COLLABORATIVE INTERPRETATION OF REMOTE SENSING IMAGES IN THE GEO-BROWSER Liang Huang a,*, Xinyan Zhu a, Wei Guo a, Longgang Xiang a, Xu Chen b, Yifang Mei a State Key

More information

GLOBAL DATA SPATIALLY INTERRELATE SYSTEM FOR SCIENTIFIC BIG DATA SPATIAL-SEAMLESS SHARING

GLOBAL DATA SPATIALLY INTERRELATE SYSTEM FOR SCIENTIFIC BIG DATA SPATIAL-SEAMLESS SHARING GLOBAL DATA SPATIALLY INTERRELATE SYSTEM FOR SCIENTIFIC BIG DATA SPATIAL-SEAMLESS SHARING Jieqing Yu a, Lixin WU b, a, c*, Yizhou Yang c, Xie Lei d, Wang He d a School of Environment Science and Spatial

More information

Installation Guide v1.11 and Higher

Installation Guide v1.11 and Higher Progeny Imaging Installation Guide v1.11 and Higher 00-02-1604 Rev. D ECN P3483 Revision Date: 6/2/2015 0120 Contents 1. About This Manual... 3 Text Conventions... 3 2. Welcome to Progeny Imaging... 4

More information

GIS Databases With focused on ArcSDE

GIS Databases With focused on ArcSDE Linköpings universitet / IDA / Div. for human-centered systems GIS Databases With focused on ArcSDE Imad Abugessaisa g-imaab@ida.liu.se 20071004 1 GIS and SDBMS Geographical data is spatial data whose

More information

PRODUCT OVERVIEW SUITE DEALS. Combine our award-winning products for complete performance monitoring and optimization, and cost effective solutions.

PRODUCT OVERVIEW SUITE DEALS. Combine our award-winning products for complete performance monitoring and optimization, and cost effective solutions. Creating innovative software to optimize computing performance PRODUCT OVERVIEW Performance Monitoring and Tuning Server Job Schedule and Alert Management SQL Query Optimization Made Easy SQL Server Index

More information

Design of Electronic Medical Record System Based on Cloud Computing Technology

Design of Electronic Medical Record System Based on Cloud Computing Technology TELKOMNIKA Indonesian Journal of Electrical Engineering Vol.12, No.5, May 2014, pp. 4010 ~ 4017 DOI: http://dx.doi.org/10.11591/telkomnika.v12i5.4392 4010 Design of Electronic Medical Record System Based

More information

A Survey on Availability and Scalability Requirements in Middleware Service Platform

A Survey on Availability and Scalability Requirements in Middleware Service Platform International Journal of Computer Sciences and Engineering Open Access Survey Paper Volume-4, Issue-4 E-ISSN: 2347-2693 A Survey on Availability and Scalability Requirements in Middleware Service Platform

More information

Research on Applying Web3D Technology to College Library Instruction of Online Book Navigation System. Wang Shuo, Mu Dawei, Zhao Jinlong, Hu Xiaoli

Research on Applying Web3D Technology to College Library Instruction of Online Book Navigation System. Wang Shuo, Mu Dawei, Zhao Jinlong, Hu Xiaoli RESEARCH ON APPLYING WEB3D TECHNOLOGY TO COLLEGE LIBRARY INSTRUCTION OF ONLINE 3D BOOK NAVIGATION SYSTEM Wang Shuo, Mu Dawei, Zhao Jinlong, Hu Xiaoli (Library of Capital Normal University, Beijing, China,

More information

QLIKVIEW ARCHITECTURE AND SYSTEM RESOURCE USAGE

QLIKVIEW ARCHITECTURE AND SYSTEM RESOURCE USAGE QLIKVIEW ARCHITECTURE AND SYSTEM RESOURCE USAGE QlikView Technical Brief April 2011 www.qlikview.com Introduction This technical brief covers an overview of the QlikView product components and architecture

More information

ORACLE DATABASE 10G ENTERPRISE EDITION

ORACLE DATABASE 10G ENTERPRISE EDITION ORACLE DATABASE 10G ENTERPRISE EDITION OVERVIEW Oracle Database 10g Enterprise Edition is ideal for enterprises that ENTERPRISE EDITION For enterprises of any size For databases up to 8 Exabytes in size.

More information

Development of information management system of dams in China based on. WebGIS

Development of information management system of dams in China based on. WebGIS Development of information management system of dams in China based on WebGIS ZHU Xing-ming 1, GENG Qing-zhai 1,2 (1.China Institute of Water Resources and Hydropower Research, Beijing 100044, China, zhuxm@iwhr.com;

More information

Big Data and Analytics: A Conceptual Overview. Mike Park Erik Hoel

Big Data and Analytics: A Conceptual Overview. Mike Park Erik Hoel Big Data and Analytics: A Conceptual Overview Mike Park Erik Hoel In this technical workshop This presentation is for anyone that uses ArcGIS and is interested in analyzing large amounts of data We will

More information

Cloud Computing for Agent-based Traffic Management Systems

Cloud Computing for Agent-based Traffic Management Systems Cloud Computing for Agent-based Traffic Management Systems Manoj A Patil Asst.Prof. IT Dept. Khyamling A Parane Asst.Prof. CSE Dept. D. Rajesh Asst.Prof. IT Dept. ABSTRACT Increased traffic congestion

More information

An Esri White Paper June 2010 Tracking Server 10

An Esri White Paper June 2010 Tracking Server 10 An Esri White Paper June 2010 Tracking Server 10 Esri 380 New York St., Redlands, CA 92373-8100 USA TEL 909-793-2853 FAX 909-793-5953 E-MAIL info@esri.com WEB www.esri.com Copyright 2010 Esri All rights

More information

REGULATIONS FOR THE DEGREE OF MASTER OF SCIENCE IN COMPUTER SCIENCE (MSc[CompSc])

REGULATIONS FOR THE DEGREE OF MASTER OF SCIENCE IN COMPUTER SCIENCE (MSc[CompSc]) 305 REGULATIONS FOR THE DEGREE OF MASTER OF SCIENCE IN COMPUTER SCIENCE (MSc[CompSc]) (See also General Regulations) Any publication based on work approved for a higher degree should contain a reference

More information

Applied research on data mining platform for weather forecast based on cloud storage

Applied research on data mining platform for weather forecast based on cloud storage Applied research on data mining platform for weather forecast based on cloud storage Haiyan Song¹, Leixiao Li 2* and Yuhong Fan 3* 1 Department of Software Engineering t, Inner Mongolia Electronic Information

More information

4.1 Introduction 4.2 Explain the purpose of an operating system 4.2.1 Describe characteristics of modern operating systems Control Hardware Access

4.1 Introduction 4.2 Explain the purpose of an operating system 4.2.1 Describe characteristics of modern operating systems Control Hardware Access 4.1 Introduction The operating system (OS) controls almost all functions on a computer. In this lecture, you will learn about the components, functions, and terminology related to the Windows 2000, Windows

More information

Tier Architectures. Kathleen Durant CS 3200

Tier Architectures. Kathleen Durant CS 3200 Tier Architectures Kathleen Durant CS 3200 1 Supporting Architectures for DBMS Over the years there have been many different hardware configurations to support database systems Some are outdated others

More information

Development and Application Study of Marine Data Managing and Sharing Platform

Development and Application Study of Marine Data Managing and Sharing Platform Development and Application Study of Marine Data Managing and Sharing Platform Abstract North China Sea Marine Technical Support Center, State Oceanic Administration, China 266033 Corresponding author

More information