Effectively Maintaining Multiple View Consistency in Web Warehouses

Size: px
Start display at page:

Download "Effectively Maintaining Multiple View Consistency in Web Warehouses"

Transcription

1 Effectively Maintaining Multiple View Consistency in Web Warehouses Yan Zhang Center for Information Sciences Peking University, Beijing, China Xiangdong Qin Department of Science and Technology Hebei University, Baoding, China Abstract To make a web warehouse reflect the real web accurately, we should keep timeliness, freshness and consistency for the webviews. This paper fouses on one important part of webview maintenance mutual consistency between webviews, which is formally named as multiple webview consistency (abbreviated as MVC). Although the same problem has been well studied in a traditional data warehouse, however, it has never been considered for a web warehouse. Since data sources in a web warehousing environment do not propagate base data changes to the information consumers, which is different from the case in the traditional data warehouses, it is not feasible to keep complete mutal consistency between the webviews in web warehouses. In this paper we introduce the Interrelated-MVC, a new term based on the features of the web environment. We show that it is enough to keep Interrelated-MVC in web warehouses. After that we present the algorithms which guarantee Interrelated-MVC and are scaleable to the vertiginous real web. 1. Introduction 1.1. Motivation Recently the web has become the widest and most heterogeneous set of information sources, which is accessible by a large spectrum of users, being a computer plus an Internet connection the only prerequisites. However, it is difficult to locate the specified information on the web because of its instability and the lack of any global structure and organization over the data it contains. The deep web [2], 500 times larger than the surface web, makes things worse. Web warehouses [5, 8, 13, 10] solve these problems effectively by using webviews to collect and integrate different information, thereby very helpful for many research areas, especially Online Analytical Processing and Decision Support Systems. People begin to use mediated views to integrate information from heterogeneous sources since Gio Wiederhold proposed the mediated architecture in 1991 [12]. In web warehouses, a webview is a materialized view usually defined by a query (generally a query is related to a specified topic). Webviews enable users interested in specified topics to query a single data structure instead of issuing lots of queries on different structures [13]. Another advantage is, keeping the views materialized can significantly improve query performance [8]. To make the web warehouse reflect the real web more accurately, we should keep the webviews timeliness, freshness and consistency. This paper fouses on one important part of webview maintenance mutual consistency between webviews, which is formally named as multiple webview consistency (abbreviated as MVC) in our research (we borrow this term from [18]). MVC is actually a familiar thing to us. For example, suppose we have a web warehouse, integrating the information for all the electronic products on amazon.com, shopping.com, bustbuy.com, yahoo.com, etc. When we do online shopping, we usually begin to query the related information, such as the maximum price, the minmum price and the average price for a product. After that we choose the best one to go shopping. However, in the case that the warhouse tells us that the maximum price for a given product is 2400RMB and its average price is 2500RMB, we will inevitably be confused. Actually the reason may be very simple: the warehouse does not update the average price together with the maximum price. The following example illustrates the MVC clearly. Suppose a web warehouse system WR is composed of five materialized views: V 1, V 2, V 3, V 4 and V 5. V 1 =R S, V 2 =R U, V 3 =T Q, V 4 =Q, V 5 =U Y, as shown in Figure 1. When we detect that S has changed, we should refresh V 1. At the same time, we should detect whether the base data item R has changed. If so, we should refresh V 2 together with V 1. Otherwise, users who access both V 1 and V 2 will possibly get conflicting information. For the same reason, we probably need to refresh V 5 together with V 1 and V 2. In fact, the base data items R, S, U and Y constitute one group. Any change of any member in this group can lead to all of the derived views refreshing. The simplest solution for MVC is using an integrator pro-

2 Figure 1: The webviews constitute two disjoint groups. Changes of the base data in one group can lead to all derived views refreshing. cess to process all the updates of materialized views in sequence. We know that web warehouse is based on polling pattern, which means that web data sources will not propagate their changes and the warehouse must poll the data sources to get the changing information [4]. Therefore when a change is detected, the web warehouse can find all the correlative views and refresh them one by one. After their refreshing, the integrator process submits a transaction to the web warehouse. When the transaction is committed, the integrator process begins to process the next detected change. This solution surely can guarantee MVC, however, it does not allow any parallelism and is not suitable for the fugitive and vertiginous web environment Our Contributions To solve this MVC problem, we play a tradeoff between data consistency and system parallelism. In a web warehouse as shown in Figure 2, each data source has its monitor/wrapper, which is responsible for detecting data change. When the monitor/wrapper finds a change of base data, it sends the change information to the integrator. The integrator provides each change a number by arrival order and passes the number to the merge process. At the same time, the integrator forwards the change information to relevant view managers. Each view has its own manager, which handles the delta computation or complete re-computation for the view. When a view manager receives change information of base data, it re-computes the changes to the view and then sends a list of actions to a merge process. The merge process collects all of the actions, holds them until all affected views finish their processing. Afterwards the merge process forwards all the actions to the web warehouse in a single transaction. The merge process makes sure that the transactions are committed in sequence. The remainder of this paper is organized as follows. Section 2 gives a brief description of the related work. Section 3 formally introduces the definitions of multiple view consistency and some related terms. Section 4 provides the algo- Figure 2: The architecture of a web warehouse. rithms to keep MVC, followed by the details of MVC maintenance discussed in Section 5. Finally, we conclude our paper and show some future work in Section Related Work There are lots of previous studies about both MVC and SVC (single view consistency, which means the consistency between a view and its base data) in traditional data warehouses. For example, Hull and Zhou presents Squirrel mediators, which support views that integrate data from multiple data sources [9]. They mainly discuss SVC in their system, at the same time, they address that it is possible to achieve MVC by sequencing the propagation of each source update. Zhuge et al. introduce the concept of queuing the view updates at the data warehouse and demonstracte their method Strobe, which commits the updates to the data warehouse only when the unanswered query set is empty [16]. However, the Strobe algorithm suffers the potential threat of infinite waiting, i.e., the data warehouse extent may never get updated. Agrawal et al. use special detection methods for concurrent updates that do not need the global time stamp and require no quiescent state before being able to update the data warehouse [1]. Although most algorithms such as PVM [14], ECA [15], and Strobe [16] are designed for SVC, some of them can be extended to handle MVC [11]. Besides, there are also some studies focused specifically on MVC [6, 7, 17]. For example, Zhuge et al. define multiple views to be consistent with each other as the multiple view consistency problem and present comprehensive discussions about MVC in data warehousing environment [17]. Although previous research has well studied both MVC

3 and SVC, however, these studies do not consider the difference between traditional data warehouses and web warehouses. Traditional data warehouses usually know all the changes of base data, while the data sources in a web environment usually do not propagate their changes to consumers. Therefore, a web warehouse can only use a polling mechanism to detect the changes of base data [4]. This characteristic distinguishs the MVC in web warehouses far away from things in the traditional data warehouses. We believe what is discussed in this paper has not been addressed in previous research. 3. Multiple View Consistency and Related Terms In this section, we first introduce the definition of Complete-MVC. We show that although it works well in a traditional data warehousing environment, however, it is not feasible in a web warehouse. Therefore, we propose the Interrelated-MVC, which is practical and efficient in web warehouses. Definition 1 (Complete-MVC): When there are multiple views in the web warehouse, a warehouse state ws is a vector with one element for the state of each webview. Each warehouse view maintenance transaction updates one or more views. The warehouse state advances after each warehouse transaction. Assume the sequence of warehouse maintenance transactions yields a sequence of warehouse states W W seq = ws 0, ws 1,..., ws n. We say that ws j is complete-multiple-view-consistent with source state ss i, written ws j ss i, if and only if for each view V at the state ws j, its content is the same with V(ss i ). V(ss i ) represents the result of evaluating the expression of V at source state ss i. Definition 1 is similar as the definition of MVC in [17]. Both of them require that all the views in the system should keep consistency. This is reasonable and feasible in a traditional data warehousing environment, because this environment is based on source update propagating and the warehouse ia able to get every change of base data. However, data sources in a web environment have autonomy and independency. Web warehouses can only get the changes of the base data by detecting. A web warehouse is unable to guarantee that the base data do not change even if it has not detected any change, so it has to refresh all the views to make sure each affected view is refreshed [3]. It is impossible in practice to refresh all the views in the whole system just because a minor change of base data. In fact, it is not necessary either. The goal of keeping multiple view consistency is to provide correct and consistent data to the users. So what we need to do is to consistently keep the interrelated views, not all the views. Thus we introduce the term Interrelated-MVC. We believe it is enough for a web warehouse to keep consistency at this level. Definition 2 (Explicit dependence): In a web warehouse, if view V 2 must be updated before the update of view V 1 for consistency, we say that V 1 explicitly depends on V 2. Definition 3 (Dependent set): In a web warehouse, the dependent set VE of a view V contains all the views it explicitly depends on. Usually the dependent set of a view is assigned explicitly at the time when the view is constructed. Definition 4 (Implicit dependence): In a web warehouse, if view V 1 and V 2 share a same base data item, we say that V 1 and V 2 are implicitly interdependent (also called as implicitly dependent). Implicit dependence relation has transferability, which means if V 1 and V 2 are implicitly interdependent, V 2 and V 3 are implicitly interdependent, then V 1 and V 3 are implicitly interdependent. Definition 5 (Interrelated-MVC): When there are multiple views in a web warehouse, a warehouse state ws is a vector with one element for the state of each view. Each warehouse view maintenance transaction updates one or more views. The warehouse state advances after each warehouse transaction. Assuming the sequence of warehouse maintenance transactions produces a sequence of warehouse states W W seq = ws 0, ws 1,..., ws n, we say that ws j is interrelated-multiple-view-consistent with source state ss i, written rs j =ssi, if and only if for each view V at the warehouse state ws j, there is a source state ss k existing before ss i and makes the content of V same as V (ss k ) for each view V explicitly or implicitly dependent on view V. At the same time, there exists at least one k to make k = i. 4. Algorithms for Interrelated-MVC In the system architecture as shown in Figure 2, there are two critical steps for keeping the Interrelated-MVC: (1) How does the integrator determine the relevant-view set and base data update operations after it gets the change of base data; (2) How does the merge process organize the action lists coming from view managers and submit them to the web warehouse to be committed. We now present the algorithms Determining the Relevant View Set and Base Data Update Set The algorithm CRU calculates the relative views and update information, as shown in Table 1. In the algorithm, iteration 1 will stop sooner or later. If most of the views in

4 the web warehouse are constructed from separate base data items, i.e., the base data are not largely shared by views, the iteration can stop quickly and the time complexity is not high. However, when the views in the web warehouse are greatly interrelated, it is very complex to compute REL i. Thus we can reduce the computing complexity by using system partitioning. System partitioning means that the view managers in the system are partitioned into several groups and the action lists generated by the view managers will be submitted group by group. User access is prohibited before all correlative transactions are committed. If only we know the peaks and troughs of user accesses, we can maintain the views smoothly in the troughs (for example, nights or weekends) Organizing and Committing of Action Lists We use algorithm SADV to organize and commit the action lists of the base data changes. There are three points in algorithm SADV (shown in Table 2): (1) All the updates of relevant views must be processed at the same time and must be submitted in a single transaction; (2) If two transactions Table 1: Algorithm CRU. do not share views, their committing orders are independent; (3) If two transactions update the same view(s), they need to be committed in the order that the integrator assigns to Characteristics of Algorithm CRU and SADV Theorem 1 The algorithm CRU+SADV is consistent under Interrelated-MVC. Proof. The algorithm CRU starts to calculate REL i from a base data change C i and all the related explicitly and implicitly dependent webviews are included in the final result of REL i. According to the algorithm SADV, all the update actions to these webviews will be grouped into a transaction by Merge Process and committed to the system. If two transactions update a same webview, they will be committed strictly following the chronicle. Therefore, the algorithm CRU+SADV can guarantee the Interrelated-MVC. Given an initial web warehouse state, which is consistent, if an algorithm can generate a consistent web warehouse state sequence for a specified webview set, this algorithm is completely consistent for this webview set.

5 Table 2: Algorithm SADV. Suppose the Monitor detects that a base data change C i will result in the updates to some webviews, the it Integrator/ Monitor will computes the set U i, which contains all of the base data changes related to C i, to keep the Interrelated- MVC. Let SS=U 1, U 2,..., U f, in which the sequence number is given by the Integrator. The Merge Process commits the warehouse transaction and changes the warehouse state, using the algorithm SADV. One U i determines one transaction, thereby the number of warehouse transactions is f. Assume the commit sequence for these transactions is W=W T i1, W T i2,..., W T if, and the corresponding warehouse state sequence is W seq =ws i0, ws i1, ws i2,..., ws if, in which ws i0 is the initial state. Since the Merge Process may reorder the update actions, the sequence i 1, i 2,... may be different with the sequence 1, 2,.... According to W seq, we can construct the base data change execution sequence S=U i1, U i2,..., U if, and the data sources state S seq =ss i0, ss i1, ss i2,..., ss if, in which ss i0 is the initial state for data sources. Let us prove that S seq is a consistent state sequence. We know S and SS have the same base data chnage sets. For two sets U i and U j which contain the conflicting base data changes, they will change the same base data and update the same webviews. Without loss of generality, let us assume U i is preceding to U j in the sequence SS, then U i is also preceding to U j in the sequence S. The reason lies in the fact that W T j cannot be committed in front of W T i in algorithm SADV. Since in the sequence S and SS, all of the conflicting base data changes keep the same order, they are actually equivalent. Therefore S seq is consistent. Let us define a mapping from W seq to S seq and make m(ws ik )=ss ik, in which 0 k f. According to the assumption, ws i0 =ssi0. Since each view manager is complete and it executes the actions in chronicle order, for any webview V, implicitly or explicitly influenced by U ik, its content is equal to V (ss ik ) at the warehouse state ws ik. Therefore, for any k (0 k f), we have ws ik =ssik. Since all the independent (explicitly or implicitly) webviews will be updated together, so, when ws i < ws j, we actually can have m(ws i ) = ss i < ss j = m(ws j ). Therefore, W seq is consistent under Interrelated-MVC. Theorem 2 The algorithm is prompt, i.e., it will not make any unnecessary delay for any update of the views. Proof. This is straightforward. Non-conflicting transactions are committed in parallel in algorithm SADV. 5. Maintenance of Multiple View Consistency in System Refreshing During system refreshing, we can partition views into some groups according to their dependence in order to keep MVC as well as achieve high parallelism. The refreshing tasks in different groups can use different threads/processes, which can keep the mutual consistency between interrelated views. The algorithms are shown in Table 3 and Table 4.

6 Table 4: Algorithm WWP. Table 3: Algorithm FRV. For the step 2 in algorithm FRV (Table 3), the iteration can stop sooner or later: the algorithm at most processes all the views in the web warehouse. The result of algorithm WWP (Table 4) is many REL(V ) partitions. We can regard a REL(V ) partition as a V-BD (View-BaseData) hypergraph. The nodes are the views and the edges connecting the nodes are the base data items. Maybe there are many edges between two nodes. Each partition is inter-connected internally. In fact, the partitioning of a web warehouse is to find the maximized V-BD sub-graphs. As shown in Figure 3, we obtain k partitions of the web warehouse system. Each partition has some view managers and they share one merge process. When the system refreshes the webviews, the influence is strictly limited inside the partition. Views in different partitions do not affect each other. Thus we can get two maintenance methods to guarantee MVC. The first method is to process each update inside the partition sequentially according to the number that the integrator assigns to. At the same time, the updates in different partitions should be processed in parallel. Here an update means some a change to the base data and the correlative operations. This method is easy and it can achieve some parallelism. The second method is to process the views inside a partition according to the algorithm CRU/SADV instead of processing them simply in sequence. This method works for the large and complex partitions. The computing complexity is not very high since the views that need to be processed are limited inside one partition, not the whole warehouse. When refreshing a view V i, checks only need to be applied inside the partition which contains V i. No need to do it outside the partition. We can get the view set that need to be refreshed by checking the V-BD graph of the partition: start Figure 3: Web warehouse partitioning. from V i, check its edges and purge those are not affected; then check the nodes connected to it by the same way. Each node will be checked only once. After checking all the connected nodes, we get the exact view set that need to be refreshed along with V i. When adding a view into the warehouse, we consider the relations between the existing partitions and the new view. When a partition implicitly or explicitly depends on the view, it should be added to the partition. When two partitions depend on it, they should merge together. If the view has no relation with all existing partitions, it becomes a new partition. When purging a view from the warehouse, we should process the partition which contains the view over again using Algorithm WRP. Generally we will get some new partitions, however, the original partition sometimes will remain as a whole.

7 6. Conclusion In this paper we introduce how to keep mutual consistency between views in a web warehouse. Since it is far different from the case in the traditional data warehousing environment, we introduce a new term Interrelated-MVC and demonstrate that it is more feasible to keep this consistency in a web warehouse. After that, we present some corresponding algorithms to guarantee it. Furthermore, we discuss how to achieve more parallelism at the same time. The algorithms presented in this paper have been validated in our prototype system, which focuses on the E-commerce. We expect to examine the performance of our algorithms in a large-scale and practical web integrated environment in the near future. References [1] D. Agrawal, A. E. Abbadi, A. Singh, and T. Yurek. Efficient view maintenance at data warehouses. In Proceedings of the ACM SIGMOD International Conference on Management of Data, pages , [2] M. K. Bergman. The deep web: surfacing hidden value. Journal of Electronic Publishing, 7(1), [3] J. Cho and H. Garcia-Molina. Synchronizing a database to improve freshness. In SIGMOD 00: Proceedings of the 2000 ACM SIGMOD international conference on Management of data, pages , New York, NY, USA, ACM Press. [4] J. Cho and H. Garcia-Molina. Estimating frequency of change. ACM Trans. Inter. Tech., 3(3): , [5] S. Cluet, P. Veltri, and D. Vodislav. Views in a large scale xml repository. In Proceedings of VLDB 01, [6] L. S. Colby, A. Kawaguchi, D. F. Lieuwen, I. S. Mumick, and K. A. Ross. Supporting multiple view maintenance policies. SIGMOD Record, 26(2): , [7] L. S. Colby and I. S. Mumick. Staggered maintenance of multiple views. In In workshop on materialized views, pages , [8] J. Hirai, S. Raghavan, H. Garcia-Molina, and A. Paepcke. Webbase: A repository of web pages. In Proceedings of 9th International World Wide Web Conference, pages , [9] R. Hull and G. Zhou. A framework for supporting data integration using the materialized and virtual approaches. In SIGMOD 96: Proceedings of the 1996 ACM SIGMOD international conference on Management of data, pages , New York, NY, USA, ACM Press. [10] K.C.-C.Chang, B.He, and Z.Zhang. Metaquerier over the deep web: Shallow integration across holistic sources. In Proceedings of VLDB-IIWeb 04, August [11] W. J. Labio, R. Yerneni, and H. Garcia-Molina. Shrinking the warehouse update window. In SIGMOD 99: Proceedings of the 1999 ACM SIGMOD international conference on Management of data, pages , New York, NY, USA, ACM Press. [12] G. Wiederhold. Mediators in the architecture of future information systems. IEEE Computer, 25(3):38 49, [13] L. Xyleme. A dynamic warehouse for xml data of the web. In IEEE Data Engineering Bulletin, [14] X. Zhang, L. Ding, and E. A. Rundensteiner. Parallel multisource view maintenance. The VLDB Journal, 13(1):22 48, [15] Y. Zhuge, H. Garcia-Molina, J. Hammer, and J. Widom. View maintenance in a warehousing environment. SIGMOD Rec., 24(2): , [16] Y. Zhuge, H. Garcia-Molina, and J. L. Wiener. The strobe algorithms for multi-source warehouse consistency. In In International Conference on Parallel and Distributed Information Systems, pages , [17] Y. Zhuge, H. Garcia-Molina, and J. L. Wiener. Multiple view consistency for data warehousing. In ICDE 97: Proceedings of the Thirteenth International Conference on Data Engineering, pages , Washington, DC, USA, IEEE Computer Society. [18] Y. Zhuge, H. Garcia-Molina, and J. L. Wiener. Consistency algorithms for multi-source warehouse view maintenance. Distrib. Parallel Databases, 6(1):7 40, 1998.

Data Warehousing Alternatives for Mobile Environments

Data Warehousing Alternatives for Mobile Environments Data Warehousing Alternatives for Mobile Environments I. Stanoi D. Agrawal A. El Abbadi Department of Computer Science University of California Santa Barbara, CA 93106 S. H. Phatak B. R. Badrinath Department

More information

References. 6. Conclusions

References. 6. Conclusions insert((1, 2), R 1 ). Suppose further two local updates insert((2, 5), R 2 ) and delete((5, 6), R 3 ) occurred before the maintenance sub-queries for insert((1, 2), R 1 ) are evaluated by S 2 and S 3,

More information

Managing Changes to Schema of Data Sources in a Data Warehouse

Managing Changes to Schema of Data Sources in a Data Warehouse Association for Information Systems AIS Electronic Library (AISeL) AMCIS 2001 Proceedings Americas Conference on Information Systems (AMCIS) December 2001 Managing Changes to Schema of Data Sources in

More information

A Data warehouse within a Federated database architecture

A Data warehouse within a Federated database architecture Association for Information Systems AIS Electronic Library (AISeL) AMCIS 1997 Proceedings Americas Conference on Information Systems (AMCIS) 8-15-1997 A Data warehouse within a Federated database architecture

More information

Joint Entity Resolution

Joint Entity Resolution Joint Entity Resolution Steven Euijong Whang, Hector Garcia-Molina Computer Science Department, Stanford University 353 Serra Mall, Stanford, CA 94305, USA {swhang, hector}@cs.stanford.edu No Institute

More information

Symmetrically Exploiting XML

Symmetrically Exploiting XML Symmetrically Exploiting XML Shuohao Zhang and Curtis Dyreson School of E.E. and Computer Science Washington State University Pullman, Washington, USA The 15 th International World Wide Web Conference

More information

Lazy Database Replication with Freshness Guarantees

Lazy Database Replication with Freshness Guarantees Lazy Database Replication with Freshness Guarantees Khuzaima Daudjee School of Computer Science University of Waterloo Waterloo, Ontario, Canada kdaudjee@uwaterloo.ca Kenneth Salem School of Computer Science

More information

Web Database Integration

Web Database Integration In Proceedings of the Ph.D Workshop in conjunction with VLDB 06 (VLDB-PhD2006), Seoul, Korea, September 11, 2006 Web Database Integration Wei Liu School of Information Renmin University of China Beijing,

More information

Hybrid Approach for the Maintenance of Materialized Webviews

Hybrid Approach for the Maintenance of Materialized Webviews Association for Information Systems AIS Electronic Library (AISeL) AMCIS 2010 Proceedings Americas Conference on Information Systems (AMCIS) 8-2010 Hybrid Approach for the Maintenance of Materialized Webviews

More information

Achieving Robustness in Distributed Database Systems

Achieving Robustness in Distributed Database Systems Achieving Robustness in Distributed Database Systems DEREK L. EAGER AND KENNETH C. SEVCIK University of Toronto The problem of concurrency control in distributed database systems in which site and communication

More information

Novel Materialized View Selection in a Multidimensional Database

Novel Materialized View Selection in a Multidimensional Database Graphic Era University From the SelectedWorks of vijay singh Winter February 10, 2009 Novel Materialized View Selection in a Multidimensional Database vijay singh Available at: https://works.bepress.com/vijaysingh/5/

More information

Deep Web Content Mining

Deep Web Content Mining Deep Web Content Mining Shohreh Ajoudanian, and Mohammad Davarpanah Jazi Abstract The rapid expansion of the web is causing the constant growth of information, leading to several problems such as increased

More information

Parallel Maintenance of Materialized Views on Personal Computer Clusters

Parallel Maintenance of Materialized Views on Personal Computer Clusters Parallel Maintenance of Materialized Views on Personal Computer Clusters Weifa Liang Department of Computer Science Australian National University Canberra, ACT 0200, Australia email: wliang@cs.anu.edu.au

More information

turning data into dollars

turning data into dollars turning data into dollars Tom s Ten Data Tips December 2008 ETL ETL stands for Extract, Transform, Load. This process merges and integrates information from source systems in the data warehouse (DWH).

More information

Oracle Streams. An Oracle White Paper October 2002

Oracle Streams. An Oracle White Paper October 2002 Oracle Streams An Oracle White Paper October 2002 Oracle Streams Executive Overview... 3 Introduction... 3 Oracle Streams Overview... 4... 5 Staging... 5 Propagation... 6 Transformations... 6 Consumption...

More information

Information Discovery, Extraction and Integration for the Hidden Web

Information Discovery, Extraction and Integration for the Hidden Web Information Discovery, Extraction and Integration for the Hidden Web Jiying Wang Department of Computer Science University of Science and Technology Clear Water Bay, Kowloon Hong Kong cswangjy@cs.ust.hk

More information

Web Service Usage Mining: Mining For Executable Sequences

Web Service Usage Mining: Mining For Executable Sequences 7th WSEAS International Conference on APPLIED COMPUTER SCIENCE, Venice, Italy, November 21-23, 2007 266 Web Service Usage Mining: Mining For Executable Sequences MOHSEN JAFARI ASBAGH, HASSAN ABOLHASSANI

More information

Parallel Multi-Source View Maintenance

Parallel Multi-Source View Maintenance The VLDB Journal manuscript No. (will be inserted by the editor) Parallel Multi-Source View Maintenance Xin Zhang, Lingli Ding, Elke A. Rundensteiner Department of Computer Science, Worcester Polytechnic

More information

A MODEL FOR ADVANCED QUERY CAPABILITY DESCRIPTION IN MEDIATOR SYSTEMS

A MODEL FOR ADVANCED QUERY CAPABILITY DESCRIPTION IN MEDIATOR SYSTEMS A MODEL FOR ADVANCED QUERY CAPABILITY DESCRIPTION IN MEDIATOR SYSTEMS Alberto Pan, Paula Montoto and Anastasio Molano Denodo Technologies, Almirante Fco. Moreno 5 B, 28040 Madrid, Spain Email: apan@denodo.com,

More information

Leveraging Transitive Relations for Crowdsourced Joins*

Leveraging Transitive Relations for Crowdsourced Joins* Leveraging Transitive Relations for Crowdsourced Joins* Jiannan Wang #, Guoliang Li #, Tim Kraska, Michael J. Franklin, Jianhua Feng # # Department of Computer Science, Tsinghua University, Brown University,

More information

Byzantine Consensus in Directed Graphs

Byzantine Consensus in Directed Graphs Byzantine Consensus in Directed Graphs Lewis Tseng 1,3, and Nitin Vaidya 2,3 1 Department of Computer Science, 2 Department of Electrical and Computer Engineering, and 3 Coordinated Science Laboratory

More information

Scaling Optimistic Concurrency Control by Approximately Partitioning the Certifier and Log

Scaling Optimistic Concurrency Control by Approximately Partitioning the Certifier and Log Scaling Optimistic Concurrency Control by Approximately Partitioning the Certifier and Log Philip A. Bernstein Microsoft Research Redmond, WA, USA phil.bernstein@microsoft.com Sudipto Das Microsoft Research

More information

SA-IFIM: Incrementally Mining Frequent Itemsets in Update Distorted Databases

SA-IFIM: Incrementally Mining Frequent Itemsets in Update Distorted Databases SA-IFIM: Incrementally Mining Frequent Itemsets in Update Distorted Databases Jinlong Wang, Congfu Xu, Hongwei Dan, and Yunhe Pan Institute of Artificial Intelligence, Zhejiang University Hangzhou, 310027,

More information

Semantic Preservation in Real-time Collaborative Graphics Designing Systems

Semantic Preservation in Real-time Collaborative Graphics Designing Systems Semantic Preservation in Real-time Collaborative Graphics Designing Systems Xueyi Wang, Jiajun Bu, and Chun Chen College of Computer Science, Zhejiang University Hangzhou, Zhejiang, 310013 China xueyiwang@yahoo.com,

More information

Designing Views to Answer Queries under Set, Bag,and BagSet Semantics

Designing Views to Answer Queries under Set, Bag,and BagSet Semantics Designing Views to Answer Queries under Set, Bag,and BagSet Semantics Rada Chirkova Department of Computer Science, North Carolina State University Raleigh, NC 27695-7535 chirkova@csc.ncsu.edu Foto Afrati

More information

Incompatibility Dimensions and Integration of Atomic Commit Protocols

Incompatibility Dimensions and Integration of Atomic Commit Protocols The International Arab Journal of Information Technology, Vol. 5, No. 4, October 2008 381 Incompatibility Dimensions and Integration of Atomic Commit Protocols Yousef Al-Houmaily Department of Computer

More information

Keywords Data alignment, Data annotation, Web database, Search Result Record

Keywords Data alignment, Data annotation, Web database, Search Result Record Volume 5, Issue 8, August 2015 ISSN: 2277 128X International Journal of Advanced Research in Computer Science and Software Engineering Research Paper Available online at: www.ijarcsse.com Annotating Web

More information

Advanced Algorithms Class Notes for Monday, October 23, 2012 Min Ye, Mingfu Shao, and Bernard Moret

Advanced Algorithms Class Notes for Monday, October 23, 2012 Min Ye, Mingfu Shao, and Bernard Moret Advanced Algorithms Class Notes for Monday, October 23, 2012 Min Ye, Mingfu Shao, and Bernard Moret Greedy Algorithms (continued) The best known application where the greedy algorithm is optimal is surely

More information

Topology and Topological Spaces

Topology and Topological Spaces Topology and Topological Spaces Mathematical spaces such as vector spaces, normed vector spaces (Banach spaces), and metric spaces are generalizations of ideas that are familiar in R or in R n. For example,

More information

SQL OPTIMIZATION IN A PARALLEL PROCESSING DATABASE SYSTEM

SQL OPTIMIZATION IN A PARALLEL PROCESSING DATABASE SYSTEM 2013 26th IEEE Canadian Conference Of Electrical And Computer Engineering (CCECE) SQL OPTIMIZATION IN A PARALLEL PROCESSING DATABASE SYSTEM Nayem Rahman Intel Corporation, Email: nayem.rahman@intel.com

More information

Compression of the Stream Array Data Structure

Compression of the Stream Array Data Structure Compression of the Stream Array Data Structure Radim Bača and Martin Pawlas Department of Computer Science, Technical University of Ostrava Czech Republic {radim.baca,martin.pawlas}@vsb.cz Abstract. In

More information

International Journal of Multidisciplinary Approach and Studies

International Journal of Multidisciplinary Approach and Studies Novel Algorithms for Materialized View Selection and Preservation in Data Warehousing Environment Mr.Gaurav P. Ambatkar *, Prof. Pratyoosh Rai**and Dr. Tripti Arjariya *** * M. Tech Scholar, Department

More information

Event Object Boundaries in RDF Streams A Position Paper

Event Object Boundaries in RDF Streams A Position Paper Event Object Boundaries in RDF Streams A Position Paper Robin Keskisärkkä and Eva Blomqvist Department of Computer and Information Science Linköping University, Sweden {robin.keskisarkka eva.blomqvist}@liu.se

More information

Correctness Criteria Beyond Serializability

Correctness Criteria Beyond Serializability Correctness Criteria Beyond Serializability Mourad Ouzzani Cyber Center, Purdue University http://www.cs.purdue.edu/homes/mourad/ Brahim Medjahed Department of Computer & Information Science, The University

More information

Parallel Query Optimisation

Parallel Query Optimisation Parallel Query Optimisation Contents Objectives of parallel query optimisation Parallel query optimisation Two-Phase optimisation One-Phase optimisation Inter-operator parallelism oriented optimisation

More information

Category Theory in Ontology Research: Concrete Gain from an Abstract Approach

Category Theory in Ontology Research: Concrete Gain from an Abstract Approach Category Theory in Ontology Research: Concrete Gain from an Abstract Approach Markus Krötzsch Pascal Hitzler Marc Ehrig York Sure Institute AIFB, University of Karlsruhe, Germany; {mak,hitzler,ehrig,sure}@aifb.uni-karlsruhe.de

More information

Global Journal of Computer Science and Technology: C Software & Data Engineering

Global Journal of Computer Science and Technology: C Software & Data Engineering Global Journal of omputer Science and Technology: Software & Data Engineering Volume 18 Issue 3 Version 1.0 Type: Double Blind Peer Reviewed International Research Journal Publisher: Global Journals Online

More information

Interrogation System Architecture of Heterogeneous Data for Decision Making

Interrogation System Architecture of Heterogeneous Data for Decision Making Interrogation System Architecture of Heterogeneous Data for Decision Making Cécile Nicolle, Youssef Amghar, Jean-Marie Pinon Laboratoire d'ingénierie des Systèmes d'information INSA de Lyon Abstract Decision

More information

Querying transformed XML documents: Determining a sufficient fragment of the original document

Querying transformed XML documents: Determining a sufficient fragment of the original document Querying transformed XML documents: Determining a sufficient fragment of the original document Sven Groppe, Stefan Böttcher University of Paderborn Faculty 5 (Computer Science, Electrical Engineering &

More information

Big Data Management and NoSQL Databases

Big Data Management and NoSQL Databases NDBI040 Big Data Management and NoSQL Databases Lecture 11. Advanced Aspects of Big Data Management Doc. RNDr. Irena Holubova, Ph.D. holubova@ksi.mff.cuni.cz http://www.ksi.mff.cuni.cz/~holubova/ndbi040/

More information

A Mechanism for Sequential Consistency in a Distributed Objects System

A Mechanism for Sequential Consistency in a Distributed Objects System A Mechanism for Sequential Consistency in a Distributed Objects System Cristian Ţăpuş, Aleksey Nogin, Jason Hickey, and Jerome White California Institute of Technology Computer Science Department MC 256-80,

More information

Research Article A Two-Level Cache for Distributed Information Retrieval in Search Engines

Research Article A Two-Level Cache for Distributed Information Retrieval in Search Engines The Scientific World Journal Volume 2013, Article ID 596724, 6 pages http://dx.doi.org/10.1155/2013/596724 Research Article A Two-Level Cache for Distributed Information Retrieval in Search Engines Weizhe

More information

Improving Resource Management And Solving Scheduling Problem In Dataware House Using OLAP AND OLTP Authors Seenu Kohar 1, Surender Singh 2

Improving Resource Management And Solving Scheduling Problem In Dataware House Using OLAP AND OLTP Authors Seenu Kohar 1, Surender Singh 2 Improving Resource Management And Solving Scheduling Problem In Dataware House Using OLAP AND OLTP Authors Seenu Kohar 1, Surender Singh 2 1 M.tech Computer Engineering OITM Hissar, GJU Univesity Hissar

More information

Ontology Construction -An Iterative and Dynamic Task

Ontology Construction -An Iterative and Dynamic Task From: FLAIRS-02 Proceedings. Copyright 2002, AAAI (www.aaai.org). All rights reserved. Ontology Construction -An Iterative and Dynamic Task Holger Wache, Ubbo Visser & Thorsten Scholz Center for Computing

More information

Wrapper 2 Wrapper 3. Information Source 2

Wrapper 2 Wrapper 3. Information Source 2 Integration of Semistructured Data Using Outer Joins Koichi Munakata Industrial Electronics & Systems Laboratory Mitsubishi Electric Corporation 8-1-1, Tsukaguchi Hon-machi, Amagasaki, Hyogo, 661, Japan

More information

Programming Views for Mobile Database Clients. University of Pittsburgh, Pittsburgh, PA particular view, the view specication can be seen as a

Programming Views for Mobile Database Clients. University of Pittsburgh, Pittsburgh, PA particular view, the view specication can be seen as a Programming Views for Mobile base Clients Susan Weissman Lauzac, Panos K. Chrysanthis Department of Computer Science University of Pittsburgh, Pittsburgh, PA 15260 Abstract Within a database mobile environment,

More information

FlowBack: Providing Backward Recovery for Workflow Management Systems

FlowBack: Providing Backward Recovery for Workflow Management Systems FlowBack: Providing Backward Recovery for Workflow Management Systems Bartek Kiepuszewski, Ralf Muhlberger, Maria E. Orlowska Distributed Systems Technology Centre Distributed Databases Unit ABSTRACT The

More information

. The problem: ynamic ata Warehouse esign Ws are dynamic entities that evolve continuously over time. As time passes, new queries need to be answered

. The problem: ynamic ata Warehouse esign Ws are dynamic entities that evolve continuously over time. As time passes, new queries need to be answered ynamic ata Warehouse esign? imitri Theodoratos Timos Sellis epartment of Electrical and Computer Engineering Computer Science ivision National Technical University of Athens Zographou 57 73, Athens, Greece

More information

Hierarchical Online Mining for Associative Rules

Hierarchical Online Mining for Associative Rules Hierarchical Online Mining for Associative Rules Naresh Jotwani Dhirubhai Ambani Institute of Information & Communication Technology Gandhinagar 382009 INDIA naresh_jotwani@da-iict.org Abstract Mining

More information

Open Access Apriori Algorithm Research Based on Map-Reduce in Cloud Computing Environments

Open Access Apriori Algorithm Research Based on Map-Reduce in Cloud Computing Environments Send Orders for Reprints to reprints@benthamscience.ae 368 The Open Automation and Control Systems Journal, 2014, 6, 368-373 Open Access Apriori Algorithm Research Based on Map-Reduce in Cloud Computing

More information

Archiving and Maintaining Curated Databases

Archiving and Maintaining Curated Databases Archiving and Maintaining Curated Databases Heiko Müller University of Edinburgh, UK hmueller@inf.ed.ac.uk Abstract Curated databases represent a substantial amount of effort by a dedicated group of people

More information

Monotone Paths in Geometric Triangulations

Monotone Paths in Geometric Triangulations Monotone Paths in Geometric Triangulations Adrian Dumitrescu Ritankar Mandal Csaba D. Tóth November 19, 2017 Abstract (I) We prove that the (maximum) number of monotone paths in a geometric triangulation

More information

The Geometry of Carpentry and Joinery

The Geometry of Carpentry and Joinery The Geometry of Carpentry and Joinery Pat Morin and Jason Morrison School of Computer Science, Carleton University, 115 Colonel By Drive Ottawa, Ontario, CANADA K1S 5B6 Abstract In this paper we propose

More information

An Optimized Search Mechanism for Large Distributed Systems

An Optimized Search Mechanism for Large Distributed Systems An Optimized Search Mechanism for Large Distributed Systems Herwig Unger 1, Thomas Böhme, Markus Wulff 1, Gilbert Babin 3, and Peter Kropf 1 Fachbereich Informatik Universität Rostock D-1051 Rostock, Germany

More information

Implementation Techniques

Implementation Techniques V Implementation Techniques 34 Efficient Evaluation of the Valid-Time Natural Join 35 Efficient Differential Timeslice Computation 36 R-Tree Based Indexing of Now-Relative Bitemporal Data 37 Light-Weight

More information

Searching the Web What is this Page Known for? Luis De Alba

Searching the Web What is this Page Known for? Luis De Alba Searching the Web What is this Page Known for? Luis De Alba ldealbar@cc.hut.fi Searching the Web Arasu, Cho, Garcia-Molina, Paepcke, Raghavan August, 2001. Stanford University Introduction People browse

More information

Incompatibility Dimensions and Integration of Atomic Commit Protocols

Incompatibility Dimensions and Integration of Atomic Commit Protocols Preprint Incompatibility Dimensions and Integration of Atomic Protocols, Yousef J. Al-Houmaily, International Arab Journal of Information Technology, Vol. 5, No. 4, pp. 381-392, October 2008. Incompatibility

More information

HYBRIDIZED MODEL FOR EFFICIENT MATCHING AND DATA PREDICTION IN INFORMATION RETRIEVAL

HYBRIDIZED MODEL FOR EFFICIENT MATCHING AND DATA PREDICTION IN INFORMATION RETRIEVAL International Journal of Mechanical Engineering & Computer Sciences, Vol.1, Issue 1, Jan-Jun, 2017, pp 12-17 HYBRIDIZED MODEL FOR EFFICIENT MATCHING AND DATA PREDICTION IN INFORMATION RETRIEVAL BOMA P.

More information

Mobile and Heterogeneous databases Distributed Database System Transaction Management. A.R. Hurson Computer Science Missouri Science & Technology

Mobile and Heterogeneous databases Distributed Database System Transaction Management. A.R. Hurson Computer Science Missouri Science & Technology Mobile and Heterogeneous databases Distributed Database System Transaction Management A.R. Hurson Computer Science Missouri Science & Technology 1 Distributed Database System Note, this unit will be covered

More information

Cache-Oblivious Traversals of an Array s Pairs

Cache-Oblivious Traversals of an Array s Pairs Cache-Oblivious Traversals of an Array s Pairs Tobias Johnson May 7, 2007 Abstract Cache-obliviousness is a concept first introduced by Frigo et al. in [1]. We follow their model and develop a cache-oblivious

More information

Mining Frequent Itemsets for data streams over Weighted Sliding Windows

Mining Frequent Itemsets for data streams over Weighted Sliding Windows Mining Frequent Itemsets for data streams over Weighted Sliding Windows Pauray S.M. Tsai Yao-Ming Chen Department of Computer Science and Information Engineering Minghsin University of Science and Technology

More information

Decoupled Software Pipelining in LLVM

Decoupled Software Pipelining in LLVM Decoupled Software Pipelining in LLVM 15-745 Final Project Fuyao Zhao, Mark Hahnenberg fuyaoz@cs.cmu.edu, mhahnenb@andrew.cmu.edu 1 Introduction 1.1 Problem Decoupled software pipelining [5] presents an

More information

Cost Reduction of Replicated Data in Distributed Database System

Cost Reduction of Replicated Data in Distributed Database System Cost Reduction of Replicated Data in Distributed Database System 1 Divya Bhaskar, 2 Meenu Department of computer science and engineering Madan Mohan Malviya University of Technology Gorakhpur 273010, India

More information

Fine-grained Software Version Control Based on a Program s Abstract Syntax Tree

Fine-grained Software Version Control Based on a Program s Abstract Syntax Tree Master Thesis Description and Schedule Fine-grained Software Version Control Based on a Program s Abstract Syntax Tree Martin Otth Supervisors: Prof. Dr. Peter Müller Dimitar Asenov Chair of Programming

More information

P Is Not Equal to NP. ScholarlyCommons. University of Pennsylvania. Jon Freeman University of Pennsylvania. October 1989

P Is Not Equal to NP. ScholarlyCommons. University of Pennsylvania. Jon Freeman University of Pennsylvania. October 1989 University of Pennsylvania ScholarlyCommons Technical Reports (CIS) Department of Computer & Information Science October 1989 P Is Not Equal to NP Jon Freeman University of Pennsylvania Follow this and

More information

Parallel Crawlers. 1 Introduction. Junghoo Cho, Hector Garcia-Molina Stanford University {cho,

Parallel Crawlers. 1 Introduction. Junghoo Cho, Hector Garcia-Molina Stanford University {cho, Parallel Crawlers Junghoo Cho, Hector Garcia-Molina Stanford University {cho, hector}@cs.stanford.edu Abstract In this paper we study how we can design an effective parallel crawler. As the size of the

More information

Integer Programming ISE 418. Lecture 7. Dr. Ted Ralphs

Integer Programming ISE 418. Lecture 7. Dr. Ted Ralphs Integer Programming ISE 418 Lecture 7 Dr. Ted Ralphs ISE 418 Lecture 7 1 Reading for This Lecture Nemhauser and Wolsey Sections II.3.1, II.3.6, II.4.1, II.4.2, II.5.4 Wolsey Chapter 7 CCZ Chapter 1 Constraint

More information

Answering Aggregate Queries Over Large RDF Graphs

Answering Aggregate Queries Over Large RDF Graphs 1 Answering Aggregate Queries Over Large RDF Graphs Lei Zou, Peking University Ruizhe Huang, Peking University Lei Chen, Hong Kong University of Science and Technology M. Tamer Özsu, University of Waterloo

More information

9.5 Equivalence Relations

9.5 Equivalence Relations 9.5 Equivalence Relations You know from your early study of fractions that each fraction has many equivalent forms. For example, 2, 2 4, 3 6, 2, 3 6, 5 30,... are all different ways to represent the same

More information

Image retrieval based on bag of images

Image retrieval based on bag of images University of Wollongong Research Online Faculty of Informatics - Papers (Archive) Faculty of Engineering and Information Sciences 2009 Image retrieval based on bag of images Jun Zhang University of Wollongong

More information

Query Rewriting Using Views in the Presence of Inclusion Dependencies

Query Rewriting Using Views in the Presence of Inclusion Dependencies Query Rewriting Using Views in the Presence of Inclusion Dependencies Qingyuan Bai Jun Hong Michael F. McTear School of Computing and Mathematics, University of Ulster at Jordanstown, Newtownabbey, Co.

More information

Just-In-Time Hypermedia

Just-In-Time Hypermedia A Journal of Software Engineering and Applications, 2013, 6, 32-36 doi:10.4236/jsea.2013.65b007 Published Online May 2013 (http://www.scirp.org/journal/jsea) Zong Chen 1, Li Zhang 2 1 School of Computer

More information

IN5050: Programming heterogeneous multi-core processors Thinking Parallel

IN5050: Programming heterogeneous multi-core processors Thinking Parallel IN5050: Programming heterogeneous multi-core processors Thinking Parallel 28/8-2018 Designing and Building Parallel Programs Ian Foster s framework proposal develop intuition as to what constitutes a good

More information

Mining Recent Frequent Itemsets in Data Streams with Optimistic Pruning

Mining Recent Frequent Itemsets in Data Streams with Optimistic Pruning Mining Recent Frequent Itemsets in Data Streams with Optimistic Pruning Kun Li 1,2, Yongyan Wang 1, Manzoor Elahi 1,2, Xin Li 3, and Hongan Wang 1 1 Institute of Software, Chinese Academy of Sciences,

More information

Web Data mining-a Research area in Web usage mining

Web Data mining-a Research area in Web usage mining IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 13, Issue 1 (Jul. - Aug. 2013), PP 22-26 Web Data mining-a Research area in Web usage mining 1 V.S.Thiyagarajan,

More information

Report to Brewer s original presentation of his CAP Theorem at the Symposium on Principles of Distributed Computing (PODC) 2000

Report to Brewer s original presentation of his CAP Theorem at the Symposium on Principles of Distributed Computing (PODC) 2000 Brewer s CAP Theorem Report to Brewer s original presentation of his CAP Theorem at the Symposium on Principles of Distributed Computing (PODC) 2000 Written by Table of Contents Introduction... 2 The CAP-Theorem...

More information

Reducing the cost of accessing relations in incremental view maintenance

Reducing the cost of accessing relations in incremental view maintenance Decision Support Systems 43 (2007) 512 526 www.elsevier.com/locate/dss Reducing the cost of accessing relations in incremental view maintenance Ki Yong Lee a,, Jin Hyun Son b, Myoung Ho Kim a a Department

More information

An Overview of Cost-based Optimization of Queries with Aggregates

An Overview of Cost-based Optimization of Queries with Aggregates An Overview of Cost-based Optimization of Queries with Aggregates Surajit Chaudhuri Hewlett-Packard Laboratories 1501 Page Mill Road Palo Alto, CA 94304 chaudhuri@hpl.hp.com Kyuseok Shim IBM Almaden Research

More information

AXIOMS FOR THE INTEGERS

AXIOMS FOR THE INTEGERS AXIOMS FOR THE INTEGERS BRIAN OSSERMAN We describe the set of axioms for the integers which we will use in the class. The axioms are almost the same as what is presented in Appendix A of the textbook,

More information

Real-time Optimistic Concurrency Control based on Transaction Finish Degree

Real-time Optimistic Concurrency Control based on Transaction Finish Degree Journal of Computer Science 1 (4): 471-476, 2005 ISSN 1549-3636 Science Publications, 2005 Real-time Optimistic Concurrency Control based on Transaction Finish Degree 1 Han Qilong, 1,2 Hao Zhongxiao 1

More information

Architecting Object Applications for High Performance with Relational Databases

Architecting Object Applications for High Performance with Relational Databases Architecting Object Applications for High Performance with Relational Databases Shailesh Agarwal 1 Christopher Keene 2 Arthur M. Keller 3 1.0 Abstract This paper presents an approach for architecting OO

More information

Model-Driven Iterative Development of 3D Web-Applications Using SSIML, X3D and JavaScript

Model-Driven Iterative Development of 3D Web-Applications Using SSIML, X3D and JavaScript Freiberg University of Mining and Technology The University of Resources. Since 1765. WEB3D 2012-17th International Conference on 3D Web Technology Model-Driven Iterative Development of 3D Web-Applications

More information

CIRS: A State-Conscious Concurrency Control Protocol for Replicated Real-Time Databases

CIRS: A State-Conscious Concurrency Control Protocol for Replicated Real-Time Databases CIRS: A State-Conscious Concurrency Control Protocol for Replicated Real-Time Databases Vishal Pathak Ajay Pratap Rabin Kr. Singh Abhishek Kr. Singh Abstract Replication [5] is the technique of using multiple

More information

Concurrent View Maintenance Scheme for Soft Real-Time Data Warehouse Systems

Concurrent View Maintenance Scheme for Soft Real-Time Data Warehouse Systems JOURNAL OF INFORMATION SCIENCE AND ENGINEERING 23, 723-739 (2007) Concurrent View Maintenance Scheme for Soft Real-Time Data Warehouse Systems NAMGYU KIM AND SONGCHUN MOON * Department of Business Information

More information

A Concurrency Control for Transactional Mobile Agents

A Concurrency Control for Transactional Mobile Agents A Concurrency Control for Transactional Mobile Agents Jeong-Joon Yoo and Dong-Ik Lee Department of Information and Communications, Kwang-Ju Institute of Science and Technology (K-JIST) Puk-Gu Oryong-Dong

More information

Test Cases Generation from UML Activity Diagrams

Test Cases Generation from UML Activity Diagrams Eighth ACIS International Conference on Software Engineering, Artificial Intelligence, Networking, and Parallel/Distributed Computing Test Cases Generation from UML Activity Diagrams Hyungchoul Kim, Sungwon

More information

Multi-Modal Data Fusion: A Description

Multi-Modal Data Fusion: A Description Multi-Modal Data Fusion: A Description Sarah Coppock and Lawrence J. Mazlack ECECS Department University of Cincinnati Cincinnati, Ohio 45221-0030 USA {coppocs,mazlack}@uc.edu Abstract. Clustering groups

More information

arxiv: v2 [cs.ds] 22 Jun 2016

arxiv: v2 [cs.ds] 22 Jun 2016 Federated Scheduling Admits No Constant Speedup Factors for Constrained-Deadline DAG Task Systems Jian-Jia Chen Department of Informatics, TU Dortmund University, Germany arxiv:1510.07254v2 [cs.ds] 22

More information

Correctness Criteria Beyond Serializability

Correctness Criteria Beyond Serializability Comp. by: CsenthilkumaranGalleys0000875825 Date:3/11/08 Time:13:18:10 Stage:First Proof C Correctness Criteria Beyond Serializability MOURAD OUZZANI 1,BRAHIM MEDJAHED 2,AHMED Au1 K. ELMAGARMID 3 1 Cyber

More information

Semantic Web Mining and its application in Human Resource Management

Semantic Web Mining and its application in Human Resource Management International Journal of Computer Science & Management Studies, Vol. 11, Issue 02, August 2011 60 Semantic Web Mining and its application in Human Resource Management Ridhika Malik 1, Kunjana Vasudev 2

More information

Introduction to the Course

Introduction to the Course Outline Introduction to the Course Introduction Distributed DBMS Architecture Distributed Database Design Query Processing Transaction Management Issues in Distributed Databases and an Example Objectives

More information

EFFICIENT ATTRIBUTE REDUCTION ALGORITHM

EFFICIENT ATTRIBUTE REDUCTION ALGORITHM EFFICIENT ATTRIBUTE REDUCTION ALGORITHM Zhongzhi Shi, Shaohui Liu, Zheng Zheng Institute Of Computing Technology,Chinese Academy of Sciences, Beijing, China Abstract: Key words: Efficiency of algorithms

More information

ACCELERATING SELECT WHERE AND SELECT JOIN QUERIES ON A GPU

ACCELERATING SELECT WHERE AND SELECT JOIN QUERIES ON A GPU Computer Science 14 (2) 2013 http://dx.doi.org/10.7494/csci.2013.14.2.243 Marcin Pietroń Pawe l Russek Kazimierz Wiatr ACCELERATING SELECT WHERE AND SELECT JOIN QUERIES ON A GPU Abstract This paper presents

More information

Fast Discovery of Sequential Patterns Using Materialized Data Mining Views

Fast Discovery of Sequential Patterns Using Materialized Data Mining Views Fast Discovery of Sequential Patterns Using Materialized Data Mining Views Tadeusz Morzy, Marek Wojciechowski, Maciej Zakrzewicz Poznan University of Technology Institute of Computing Science ul. Piotrowo

More information

Web Page Fragmentation for Personalized Portal Construction

Web Page Fragmentation for Personalized Portal Construction Web Page Fragmentation for Personalized Portal Construction Bouras Christos Kapoulas Vaggelis Misedakis Ioannis Research Academic Computer Technology Institute, 6 Riga Feraiou Str., 2622 Patras, Greece

More information

Overview of the Integration Wizard Project for Querying and Managing Semistructured Data in Heterogeneous Sources

Overview of the Integration Wizard Project for Querying and Managing Semistructured Data in Heterogeneous Sources In Proceedings of the Fifth National Computer Science and Engineering Conference (NSEC 2001), Chiang Mai University, Chiang Mai, Thailand, November 2001. Overview of the Integration Wizard Project for

More information

Matching Algorithms. Proof. If a bipartite graph has a perfect matching, then it is easy to see that the right hand side is a necessary condition.

Matching Algorithms. Proof. If a bipartite graph has a perfect matching, then it is easy to see that the right hand side is a necessary condition. 18.433 Combinatorial Optimization Matching Algorithms September 9,14,16 Lecturer: Santosh Vempala Given a graph G = (V, E), a matching M is a set of edges with the property that no two of the edges have

More information

Rule Enforcement with Third Parties in Secure Cooperative Data Access

Rule Enforcement with Third Parties in Secure Cooperative Data Access Rule Enforcement with Third Parties in Secure Cooperative Data Access Meixing Le, Krishna Kant, and Sushil Jajodia George Mason University, Fairfax, VA 22030 {mlep,kkant,jajodia}@gmu.edu Abstract. In this

More information

A Context-sensitive Access Control Model and Prototype Implementation

A Context-sensitive Access Control Model and Prototype Implementation A Context-sensitive Access Control Model and Prototype Implementation Damian G. Cholewka 1, Reinhardt A. Botha 2, Jan H.P. Eloff 1 1 Rand Afrikaans University, Johannesburg, South Africa 2 Port Elizabeth

More information

Incremental View Maintenance: An Algorithmic Approach

Incremental View Maintenance: An Algorithmic Approach International Journal of Electrical & Computer Sciences IJECS-IJENS Vol:10 No:03 12 Incremental View Maintenance: An Algorithmic Approach 1 Abdulaziz S. Almazyad, 2 Mohammad Khubeb Siddiqui 1 College of

More information