Constraint tuning and management for web applications

2 downloads 100610 Views 2MB Size Report
Integrity Constraints, Web Application, Tuning. 1. INTRODUCTION. Integrity constraints (ICs) play a fundamental role in the design of modern information ...
Constraint tuning and management for web applications Marco Brambilla

Jordi Cabot

Politecnico di Milano Dipartimento di Elettronica e Informazione Piazza L. Da Vinci, 32. I20133 Milano, Italy +39 02 2399 7621

Universitat Oberta de Catalunya Estudis d'Informàtica i Multimèdia Av. Tibidabo, 39-43. E08305 Barcelona, Spain +34 933 263 717

[email protected]

[email protected]

ABSTRACT Since the Web is becoming a platform for implementing complex B2C and B2B applications instead of simple content publishing sites, the need arises of imposing constraints on the navigation and on the managed information. Web conceptual modeling languages allow to a small extent to specify constraints on the application, by means of some extensions to their basic primitives; however these approaches do not provide a comprehensive framework for efficient and effective constraint management. The goal of this paper is to present a general framework to facilitate the integration of efficient integrity checking methods in Web applications. Our main contribution is the study of a set of parameters that can be inferred from high level Web application modeling, for allowing the tuning of the constraint optimization techniques for each specific Web application. From these parameters we derive the optimal enforcement techniques to be implemented.

Categories and Subject Descriptors D.2.2 [Software Engineering]: Design tools and techniques

General Terms Performance, Design, Verification.

Keywords Integrity Constraints, Web Application, Tuning.

1. INTRODUCTION Integrity constraints (ICs) play a fundamental role in the design of modern information systems, which are more and more oriented to cover complex enterprise-wide requirements, thus involving several users and applications, typically distributed on multiple sites and implemented independently. This reflects in the increase of ICs violation risks, and therefore need of defining constraints as part of the high level specification of the applications. In particular, the conceptual schemas of information systems must be enriched with ICs definitions [11]. An integrity constraint defines a condition that must be satisfied in each state of the information base (commonly implemented as a relational database) underlying the information system. This means that the information system must guarantee that Permission to make digital or hard copies of all or part of this work for personal or classroom use is granted without fee provided that copies are not made or distributed for profit or commercial advantage and that copies bear this notice and the full citation on the first page. To copy otherwise, or republish, to post on servers or to redistribute to lists, requires prior specific permission and/or a fee. ICWE’06, July, 12-14, 2006, Stanford, USA. Copyright 2006 ACM 1-59593-108-2/06/0004…$5.00.

the state of the information base is always consistent with the set of ICs imposed in the conceptual schema. This process is known as integrity checking. Despite the importance of ICs in conceptual modeling, current web development methods pay little attention to the problem of integrity checking. Among the conceptual modeling languages for the Web, some of them (e.g., W2000 [1]) provide constraint checking only at the metamodel level, thus constraining the way models should be designed, but not enforcing consistent states at runtime; others (e.g., WebML [3], [4]) use ECA rules (which is one of the typical IC implementation techniques), but for different purposes, such as exception handling and adaptivity rules definition. Most of the approaches (including the cited ones, OOH [9], OO-HDM [16], OO-Method [8], Strudel [7] and others) exploit rule-based approaches for personalization and dynamic page rendering. However, none of them currently address generic IC management for the information base, and in particular no efficient and flexible IC management implementation techniques are provided. On the other hand, well-known efficient integrity checking methods in the deductive and relational database field exist since the beginning of the nineties (see [10] for a survey). These methods (also known as incremental methods) exploit available information about the structural events applied over the information base to consider as few entities of the information base as possible during the verification of ICs. A structural event is an elementary change in the population of an entity type (i.e. a class) or relationship type (i.e. an association) such as: create object, update attribute, create relationship link, etc. Structural events are a way to define the effect of the operations appearing in the conceptual schemas. These methods could be integrated with web development approaches to guarantee and efficient integrity checking of the ICs defined in the conceptual schema. In particular, code-generation methods of web development approaches could be enhanced with incremental techniques so that the generated implementation of the ICs is able to verify efficiently the consistency of the information base. Although the wide variety and the complexity of requirements of web applications and of the scenarios where they are used ask for such integration, we believe that these complexity factor themselves slow down the adoption of IC management; indeed, they make impossible for a single incremental strategy to fit all kinds of requirements of any web applications. For instance, some web applications may be interested in checking the ICs after each single event issued by the user, while others may prefer to provide a more flexible user experience and to defer the integrity checking until the end of the transaction. Furthermore, some web applications require the quickest response time to the user requests, even if, afterwards, it takes longer to verify the ICs at commit time,

while others may accept a little overhead in the processing of single events in order to minimize the total transaction time. Finally, some applications may desire to postpone the integrity checking until certain periods of the day when they estimate a more reduced load on their servers. Moreover, existing incremental methods do not take into account the dynamic models (i.e., hypertext applications in the web context) of applications. When processing the ICs for an efficient integrity checking, they always assume the worst scenario, which is that all kinds of structural events can apply over the information base. On the contrary, often, web applications offer limited data-management possibilities (i.e. not all data in the information base can be modified through the web application). In such a case, some of the structures created in the information base to ensure an efficient verification may become useless and could be removed to improve the run-time efficiency of the applications. Obviously, there is a strong assumption: the optimization approach must be aware of all the applications that are going to work on the considered information base, and optimize the constraint management considering the conceptual models of all these applications. In the following discussion, we assume to have one single web application working on the information base, although the generalization can be easily inferred. The main goal of this paper is to present a general framework to facilitate the integration of efficient integrity checking methods in web applications. This framework can be parameterized with the characteristics of a specific web application, at the purpose of offering the optimal set of techniques for implementing the verification of the imposed ICs. Figure 1.1 shows the general architecture of the framework. The designer specifies the conceptual schema and the ICs, possibly using a CASE tool for web application design. The framework consists in three steps: 1.

Given the set of ICs, the framework first analyses each IC to determine which kind of changes (i.e. which kind of structural events) to the information base may violate the IC [2]. We call this set of events the Potentially-violating Structural Events (PSEs) for the IC.

2.

Given the conceptual model of the hypertext, the framework removes all PSEs related to events not appearing in the hypertext model/s, thus applying a pruning on the set of PSEs extracted by step 1.

3.

In the third step, the framework takes into account the requirements and necessities of the web application (which are provided by the analyst as parameters) to recommend an implementation technique for each IC. Different ICs may require different implementation techniques. These recommendations may be sent back to the web design tool to guide the generation process of the code-generation module, or may be provided directly to the developer, as a roadmap for IC implementation.

Notice that the framework exploits two techniques (first the pruning of the PSEs; second the recommendation of the optimal implementation technique for each IC), which can be applied independently, each providing some optimization. Even the application of just one of the two can bring some efficiency advantages: it is possible to prune the PSEs and implement them in

a standard way; or it is possible to implement the whole set of PSEs, but choosing the best implementation for each of them. The rest of the paper is structured as follows: we will use the running example introduced in Section 2 to better explain the approach throughout the paper; Section 3 describes steps 1 and 2 of the framework, consisting in PSEs extraction and pruning; Section 4 describes the algorithm for computation of the best solution with respect to the specific needs of the application; Section 5 sketches some details about the framework implementation; finally, we present our conclusions and point out future work in Section 6.

Figure 1.1 – Framework architecture

2. RUNNING EXAMPLE To illustrate the different techniques of our framework we will use as a running example the information base described by the conceptual schema of Figure 2.1, meant to (partially) model a simple e-commerce application. The conceptual schema is specified using a UML class diagram compatible notation [14]. It contains information about the orders (Order entity type) and the products (Product entity type) they contain. The relationship type OrderLine registers the quantity of products of the same type included in a given order. Instances of the Payment entity type register the information of paid orders (a single payment may cover several orders). Additionally, the conceptual schema includes three textual ICs expressed in OCL [13]. The first one (CorrectProduct) states that the product price must be a positive value. ValidPayment forces the amount of a payment to cover, at least, the sum of amounts of related orders. MaxPendingOrders ensures that the information system never holds more than a thousand unpaid orders. Order

Payment Pays

OID: Natural creditCard: String 0..1 amount: Money

OID : Natural 1..* date: Date amount: Money

Product *

1..* OID : Natural name: String price: Money description: String OrderLine

quantity: Natural context Product inv CorrectProduct: self.price>0 context Payment inv ValidPayment: self.amount>=self.order.amount->sum() context Order inv MaxPendingOrders: Order.allInstances()->select(o| o.payment->isEmpty())->size() = (SELECT nvl(sum(amount),0) FROM order o WHERE o.payment=p.oid));

Figure 4.2 – View for the ValidPayment IC Note that the integrity checking process using these views is highly inefficient since to verify each IC we examine all tuples of the corresponding table and not only the ones that may violate the IC.

For instance, after executing a transaction that simply modifies the amount of payment p1, the ValidPayment view examines all payments to verify the IC, instead of checking just p1. Besides, since we do not register the events executed during the transaction, we do not have any way to know at the end of the transaction which ICs have to be verified, and thus, we are forced to verify all of them.

Figure 4.2 except for the table appearing in the from clause (now it is the uPaymentAmount table). This ensures the view only verifies the payments updated during the transaction. Note that for transactions not including any update event, the uPaymentAmount table is empty, and thus, the uValidPayment view does not check any payment. To completely verify ValidPayment we should create additional views (and event tables and triggers) for the other PSEs.

4.2.2 Trigger Mechanism

These views can become even more efficient if the triggers updating the event tables take into account the net effect of the transaction [5]. As an example, assume a transaction updating twice the amount of the same payment. Then, the previous trigger would insert a different tuple in uPaymentAmount for each update event, and thus, the same payment will be checked twice when querying the view uValidPayment. When the IC is complex (for instance, it includes aggregator operators) it may be interesting to avoid this situation by requiring the triggers to check that the tuple (i.e. the payment) is not already registered in the event table before inserting the new tuple.

ECA-Rules (implemented as triggers in a database) were initially proposed for integrity checking in [5]. The basic idea is to create a trigger for each event appearing in the list of PSEs for an IC. The body of the trigger is in charge of verifying that the modified tuple does not violate the IC. During a transaction, the DBMS fires the appropriate trigger immediately after the PSEs is issued. Since these triggers do not modify the state of the database, neither termination nor confluence problems occur. Figure 4.3 shows the trigger verifying ValidPayment after the event UpdateAttribute(amount,Payment). Note that the trigger just checks the updated payment and not all payments (as in the previous case). However, if we want to completely cover the ValidPayment IC, we should create additional triggers for its other PSEs. CREATE TRIGGER tuPayment AFTER UPDATE OF Amount ON Payment FOR each row DECLARE v_Sum NUMBER; EInvalidPayment Exception; BEGIN SELECT sum(o.amount) into v_Sum FROM Order o WHERE o.payment=:new.oid; IF not (:new.amount>=v_Sum) THEN raise EInvalidPayment; END IF; END;

Figure 4.3 – Trigger for Payment update events

4.2.3 Efficient Views The rationale of most of the efficient (incremental) methods developed for deductive databases (see [10] for a survey) is to transform each ICs in a set of database views (one for each PSE) over the tuples modified during the transaction (instead of defining the views over the whole table population as in section 4.2.1). We refer to these views as efficient views to distinguish them from the inefficient views of section 4.2.1. Implementation of these methods in current DBMS implies the creation of auxiliary tables to reflect the changes done by the structural events over the database tables. We call this tables event tables. Insertion and removal of tuples in event tables should be done automatically and transparently to the user. In relational databases this automatic update can be addressed by means of triggers monitoring the changes over the database tables. Since these triggers only modify the state of the event tables and no triggers are defined on them, no termination nor confluence problems appear. Moreover, event tables must be empty at the beginning of each transaction. We obtain automatically this behavior if we define them as temporary tables (part of the SQL:1999 standard [12]). As an example, Figure 4.4 shows the efficient view in charge of verifying the ValidPayment IC after the update of payments. The table uPaymentAmount represents the event table for the UpdateAttribute(amount,Payment) event. The trigger tuPayment updates the uPaymentAmount table. Note that the SELECT expression of the view uValidPayment is exactly the same as in

CREATE GLOBAL TEMPORARY TABLE uPaymentAmount (OID Integer, amount Integer) ON COMMIT DELETE ROWS; CREATE TRIGGER tuPayment AFTER UPDATE OF amount ON Payment FOR EACH ROW BEGIN INSERT INTO uPaymentAmount VALUES (:new.oid,:new.amount); END; CREATE VIEW uValidPayment AS SELECT * FROM uPaymentAmount p WHERE not (p.amount >= (SELECT nvl(sum(amount),0) FROM order o WHERE o.payment=p.oid));

Figure 4.4 – Efficient view for the ValidPayment IC

4.2.4 Semi-efficient approach We propose this technique as an intermediate technique between the direct verification and the efficient view techniques. The aim of this technique is to register enough information to avoid the verification of ICs not affected by the events executed during the transaction but, for those ICs that need to be verified, the technique examines all the table population. With this approach we create a statement-level trigger for each PSE. In contrast with the previous row-level triggers, statementlevel triggers fire only one time per statement regardless the number of tuples modified. These triggers simply register in the event table the execution of the event and not the modified instance (see Figure 4.5). Now, the event table can be as simple as a table with a single attribute. The existence of at least one tuple in the event table means that the corresponding PSE has been issued, and thus, it is necessary to check the IC. Then, the IC can be checked using the views of section 4.2.1. The difference is that now we know the exact views we need to query, and thus, we avoid verifying all ICs. CREATE GLOBAL TEMPORARY TABLE uPaymentAmount (Event Char(1)) ON COMMIT DELETE ROWS; CREATE TRIGGER tuPayment AFTER UPDATE OF amount ON Payment FOR EACH STATEMENT BEGIN INSERT INTO uPaymentAmount VALUES ('1'); END;

Figure 4.5 – Efficient view for the ValidPayment IC

4.3 Recommended Techniques Given the web application performance tuning parameters (Section 4.1) and the complexity of each IC (beginning of Section 4) we recommend in this section the optimal technique/s (among the ones presented in Section 4.2) to implement the IC. We organize the discussion taking as a basis the value of the checking time parameter since is the one influencing the most the technique to select. This value is combined with the possible values of the other parameters to get the optimal technique. A simplified version of this discussion is summarized in Table 4.1 (for the sake of simplicity assuming a high populated database and the use of the constraint management features of the DBMS when possible).

4.3.1 Checking time: Immediate For immediate checking, the best alternative is always the trigger technique (section 4.2.2). It makes no sense to register the event in an event table and then immediately query the corresponding view to check if the event violates the IC; the efficiency would be reduced. The value of the run-time efficiency parameter is irrelevant since we are forced to verify the IC just after the event execution. If the designer wants to use the DBMS capabilities for constraint definition, Intra-instance ICs should be defined as checks. Likewise with unique constraints. In fact, we recommend this option. Although we could use the triggers to manage this kind of constraints efficiently, it is reasonable to assume that the DBMS will be even more efficient in managing them. For type-level ICs, due to their complexity, an immediate verification impairs the run-time efficiency of the application. If possible, their verification should be deferred until the end of the transaction. As an example, imagine that we want to verify ValidPayment after each event. A transaction updating the amount of several orders would verify the constraint after each update, even if before finishing the transaction the user also updates the corresponding payment to reflect the changes in the order amounts.

4.3.2 Checking time: Deferred The best technique depends on the run-time efficiency parameter: (i) Individual efficiency: no overhead in the processing of the events is permitted. Thus, the only possible solution is a direct verification of the ICs using inefficient views (Section 4.2.1). When reusing the capabilities of the DBMS, the checks and unique constraints must be defined as deferred to avoid its verification until the end of the transaction. Nevertheless, the individual parameter value is only recommended for low populated tables, otherwise the total transaction time may become unacceptable. (ii) Overall efficiency: the optimal technique is the efficient views technique (Section 4.2.3) for intra and Inter-instance constraints. For these kinds of ICs, knowing the relevant instances (the ones modified by the structural events) heavily reduces the time required for the integrity checking. For type-level constraints, since we need to examine all the tuples of the table restricted by the constraint, it is a waste of time to register the exact instances modified during the transaction. However, it is still a key issue to know whether the IC must be verified. Therefore, the most appropriate technique for these ICs is the semi-efficient approach (Section 4.2.4). Depending on the value of the use of DBMS support parameter, Intra-instances ICs can be defined as checks with the deferred clause. Again, we recommend this option. For low populated tables, the semi-efficient approach technique can also be an acceptable solution for all ICs.

(iii) Average efficiency: the recommended technique is the semiefficient approach for all kinds of ICs. This way we get the best trade-off between the low overhead for each single event (the triggers are statement-level and do not compute the net effect of the transaction) and a semi-efficient verification at the end of the transaction (we know which views to query). Intra-instance constraints can be defined as checks with the deferred clause. For highly populated databases, we should consider also the application of the efficient view technique, if necessary without applying the net effect improvement to fasten the trigger execution.

4.3.3 Checking time: Postponed The main characteristic of this alternative is that ICs are not verified during the transaction but at some point after the transaction has committed. Unfortunately, DBMSs do not support this feature at all. Therefore, we cannot count on any support from the DBMS. The only possibility is to disable the constraints and enable them just before starting the integrity checking. However in such a case the user (or application) starting the process must connect to the database with administrator privileges. Besides, the verification would be inefficient because when enabling the ICs, all tuples would be verified. Additionally, when proposing the optimal techniques for this alternative, we must have in mind that the number of unverified structural events (events belonging to transactions committed after the last integrity checking) may be huge. Depending on the run-time efficiency parameter, the proposed techniques are the following: (i) Individual efficiency: again, the only possible technique is the use of inefficient views. However, in this case, the alternative is acceptable even in not so low-populated tables since the (probably) huge number of modified (and unverified) tuples reduces the difference between an efficient verification and a direct verification. (ii) Overall efficiency: the recommended technique for high populated databases is still the efficient view technique. Despite the number of tuples unverified, for high populated databases the difference between an efficient and a direct verification is still relevant, especially for Inter-instance ICs including aggregator operators. Otherwise, the overhead on the single events may not be worthwhile and we could move to the semi-efficient approach. On the other hand, the event tables registering the modified tuples cannot be temporary since we need to keep their information beyond commit time (in particular, until the integrity checking takes place). Afterwards, their data must be truncated, but with this approach, the DBMS cannot do this process automatically and the application is in charge of it. For type-level constraints we still can apply the semi-efficient approach even though, with so many unverified structural events, most ICs will need to be verified. (iii) Average efficiency: in the postponed context, this alternative is practically useless and the designer should opt for one of the previous two. As we have just commented, when starting the integrity checking there exist many pending transactions to be verified. Considering that each transaction may be composed by several structural events, it is quite probable that each IC finds that at least one of these events appear in its list of PSEs, and thus, that it needs to be verified. Therefore, it is difficult to justify the advantage of registering the events to decide which ICs need verification. It depends on the number of committed transactions

pending to verify, on their number of events and on the diversity of those events (when most of the transactions are composed by a repetitive set of events, we may still find that several ICs should not be verified, and thus, it is relevant to know which ones). The situation where this alternative becomes worthwhile is when some ICs are extremely complex to verify. For those ICs a small overhead for registering their PSEs is acceptable, at the purpose of being absolutely sure that they are not checked unnecessarily. Table 4.1. Summary of the recommended techniques. Cells show the optimal technique for each parameter combination. N/R means that the combination is not recommended.

Postponed

Deferred

Immediate

Chec king time

IC compl exity

Run-time efficiency

Individual

Overall

Average

Intra

checks

Checks

checks

Inter

triggers

Triggers

triggers

Type

N/R

N/R

N/R

Intra

checks (deferred)

checks (deferred)

checks (deferred)

Inter

inefficient views

efficient views

semiefficient

Type

inefficient views

semi-efficient

semiefficient

Intra

inefficient views

efficient views

N/R

Inter

inefficient views

efficient views

N/R

Type

inefficient views

semi-efficient

semiefficient

5. IMPLEMENTATION A prototype implementation of the concepts presented in this paper has been developed. Given the XMI file [15] representing the conceptual schema and the set of ICs in a textual form (parsed using Dresden OCL Toolkit), the prototype computes the set of PSEs for each IC (step 1). Optionally, the user can provide a XML file containing a WebML project for specifying the hypertext dynamic model of the application, from which the prototype extracts the events to simplify the previous set of PSEs (step 2). Finally, given the performance tuning parameters provided by the designer, the tool returns the set of optimal techniques for each IC (step 3), as a set of implementation recommendations. The prototype does not actually generate the SQL expressions to implement the recommended techniques, since already existing tools can be used with this purpose. For instance, WebRatio or OCL2SQL (from the Dresden toolkit) are able to generate the required tables and views. As a further work we plan a complete integration of the framework within the WebRatio tool.

6. CONCLUSIONS AND FURTHER WORK In this paper we presented an approach for efficient integrity constraint management in Web application. The approach is based on the widely adopted incremental methods, which work by extraction of violating events and definition of appropriate support structures for efficient implementation. Our main contribution consists in a method (and an experimental tool) for allowing the designer of Web applications to easily integrate ICs management

within the implementation of the application. As a final comment, we remark that query efficiency is not damaged by the extra data structures needed for efficient implementation of the constraints, therefore applications mostly based on data query (e.g., content publishing web applications) can benefit from this approach. Future and ongoing work include: quantitative comparison between the various implementation techniques when applied on real industrial applications, and also implementation of a more sophisticated GUI for the experimental tool, thus facilitating usage by designers and integration within the WebRatio tool.

7. ACKNOWLEDGMENTS We would like to thank Ernest Teniente and Sara Comai for their useful comments in the preparation of this paper. This work has been partially supported by the Ministerio de Ciencia y Tecnologia under project TIN2005-06053.

8. REFERENCES 1. Baresi, L., Colazzo, S. and Mainetti, L., First Experiences on Constraining Consistency and Adaptivity of W2000 Models. in SAC 2005, 1674-1678. 2. Cabot, J. and Teniente, E., Determining the Structural Events that May Violate an Integrity Constraint. in UML 2004, LNCS, 3273, 173-187. 3. Ceri, S., Daniel, F., Demaldé, V. and Facca, F.M., An Approach to User-Behavior-Aware Web Applications. in ICWE 2005, 417-428. 4. Ceri, S., Fraternali, P., Bongio, A., Brambilla, M., Comai, S. and Matera, M. Designing Data-Intensive Web Applications. Morgan Kaufmann, 2002. 5. Ceri, S. and Widom, J., Deriving Production Rules for Constraint Maintenance. in VLDB 1990, Morgan Kaufmann, 566-577. 6. Demuth, B., Hussmann, H. and Loecher, S., OCL as a Specification Language for Business Rules in Database Applications. in UML 2001, LNCS, 2185, 104-117. 7. Fernandez, M.F., Florescu, D., Levy, A.Y. and Suciu, D. Declarative Specification of Web Sites with Strudel. VLDB Journal, 9 (1). 38-55. 8. Fons, J., Pelechano, V., Albert, M. and Pastor, Ó. Development of Web Applications from Web Enhanced Conceptual Schemas. in ER 2003, LNCS, 2813, 232-245. 9. Garrigós, I., Gómez, J. and Cachero, C., Modelling Dynamic Personalization in Web Applications. in ICWE 2003, 472-475. 10. Gupta, A. and Mumick, I.S. Maintenance of materialized views: problems, techniques, and applications. in Materialized Views Techniques, Implementations, and Applications, The MIT Press, 1999, 145-157. 11. ISO/TC97/SC5/WG3. Concepts and Terminology for the Conceptual Schema and Information Base, 1982. 12. Melton, J. and Simon, A.R. SQL:1999, Understanding Relational Language Components. Morgan Kaufmann, 2002. 13. OMG. UML 2.0 OCL Specification, 2003. 14. OMG. UML 2.0 Superstructure Specification, 2003. 15. OMG. XML Metadata Interchange Specification, 2002. 16. Schwabe, D. and Rossi, G. The Object-Oriented Hypermedia Design Model. Communications of the ACM, 38 (8). 45-46. 17. Türker, C. and Gertz, M. Semantic integrity support in SQL:1999 and commercial (object-)relational database management systems. The VLDB Journal, 10 (4). 241-269.

Suggest Documents