Why Use Publish/Subscribe?
Suppose that you have a system to process new invoices. The invoices are stored in a table, and a column called PROCESSED indicates unprocessed invoices. An application processes these new invoices and updates the PROCESSED column to show they have been processed. After all the invoices have been processed, the application tries to fetch another unprocessed invoice and receives an end-of-file condition. Without publish/subscribe services, this process is more costly. To retrieve new invoices that are inserted into the table after the end-of-file condition, the application must close its cursor and reopen it, perhaps after waiting an interval, to see if new invoices have arrived. This polling requires the closing and reopening of the cursor, which has significant performance costs. It also requires application code to handle the looping and end-of-file conditions. You would probably code this application with an updatable cursor using a selection predicate to include rows whose PROCESSED column is set to FALSE. You might also use a positioned UPDATE statement to change the PROCESSED column to TRUE. The application would need both of these statements to retrieve the information it needs to process the invoice, and to make sure the invoice is processed only once. As a result, every invoice would need two calls to the SQL executor, again at the expense of extra performance costs andapplication complexity.
If you simply started many instances of the application in an attempt to make this
application scalable, they would conflict with each other. As one instance held a lock
on the next invoice that needed processing, the others would have to wait. To avoid
conflict, you would have to devise a logical partitioning scheme so each instance
processed a subset of the invoices, adding complexity to the application and the
database schema.
Publish/Subscribe services provides solutions for each of these problems:
• Rather than polling for changes to the invoice table, the application can use stream
access mode. Stream access mode changes the behavior of the table: an attempt
to fetch a row blocks, if necessary, until more rows are available. The application
code becomes simpler and performs better.
• Instead of using a positioned UPDATE to mark the row as processed, the
application can use a special type of statement, an embedded UPDATE, to select
and update a row in a single call. Again, the application code is simpler and
performs better.
• Publish/subscribe can use a special access mode, skip conflict access. As a result,
the various instances of the invoice processing application skip rows that are
locked and select and update other available rows. The application achieves better
performance without having to use a partitioning scheme.
Without Pub/Sub
A. retrieve record
B. process ... ...
C. update status
With Pub/Sub
A. retrieve record(Embeded update)
B. process ... ...
Publish/subscribe supports only audited tables.
Terminologys about Publish/Subscrib
Publishing, Inserting or updating rows of data in a queue or channel by using an INSERT or UPDATE statement. Subscribing, Subscribing to entries in a queue or channel by using a SELECT statement specifying stream access to be notified when changes occur. Stream access, Changes the behavior of a table in a SELECT or embedded UPDATE or DELETE statement. When no more rows satisfy the selection predicate, the statement waits for more rows. Queue, A database table read and updated in stream access mode, using an UPDATE or DELETE statement embedded in the FROM clause of a SELECT statement. Only a single subscriber will receive the new entry. Channel, A database table used by applications specifying stream access to subscribe to newly published entries. The entries remain in the table. All subscribers receive new entries. Queuing enqueueing,Inserting entries into a queue by using an INSERT or UPDATE statement. Dequeueing, Reading and deleting entries with a single operation by using a SELECT statement with an embedded DELETE or UPDATE. This dequeue operation is sometimes referred to as a destructive SELECT. For another description of a destructive SELECT Semi-queuing,Reading a queue by skipping rows that are locked by another transaction so that transactions do not block each other. Major Features • Stream access mode • Embedded DELETE and UPDATE statements • Skip conflict access mode • Set on rollback • Holdable cursors • Rowset integration • Horizontally partitioned tables • Ordered streams1. Stream Access
It allows an application to access SQL/MP or SQL/MX database tables as continuous data streams. The stream access mode first causes a regular scan of the table and, after all available rows have been returned, causes fetch operations to wait (block) instead of returning the end-of-data condition. The fetch operation resumes when new rows become available.CREATE TABLE sos.ecui.quotes(symbol CHAR(5), price INT);SET NAMETYPE ANSI;SET SCHEMA sos.ecui;SELECT * FROM STREAM(quotes);//This application is in a wait state until rows are inserted into the table.SYMBOL PRICE------ -----------IBM 10APP 11>>INSERT INTO quotes VALUES(‘IBM‘,10);---1 row(s) inserted.>>INSERT INTO quotes VALUES(‘APP‘,11);---1 row(s) inserted.UntilBreake it.*** WARNING[15033]Break was received.*** WARNING[15018]Break was received. Thelast statement may be lost.
>>CONTROL QUERY DEFAULT stream_timeout ‘300‘;--- SQL operation complete.>>SELECT * FROM STREAM(quotes);SYMBOL PRICE------ -----------IBM 10APP 11*** ERROR[8006]The stream timed out, but the cursor is still open.---2 row(s) selected.
2. Embedded DELETE
Embedded DELETE statements allow applications to read and delete rows with a single operation. Dequeue operations are implemented by using an embedded DELETE together with stream access. Destructive SELECTs, Support for SQL/MP and SQL/MX TablesCREATE TABLE ecui.invoices(contractnbr INT, amount INT, priority INT);INSERT INTO invoices VALUES(100,10500,1);INSERT INTO invoices VALUES(200,20390,2);INSERT INTO invoices VALUES(300,30800,3);>>SELECT * FROM+>(DELETE FROM STREAM(invoices)) AS invoices;CONTRACTNBR AMOUNT PRIORITY----------- ----------- -----------100 10500 1200 20390 2300 30800 3*** ERROR[8006]The stream timed out, but the cursor is still open.---3 row(s) selected.>>SELECT * FROM invoices;---0 row(s) selected.
The BEGIN WORK statement enables you to start a transaction explicitly—where the transaction consists of the set of operations defined by the sequence of SQL statements that begins immediately after BEGIN WORK and ends with the next COMMIT WORK or ROLLBACK WORK statement. The BEGIN WORK statement has no effect on nonaudited tables.
the structure is asbelow,
---This statement initiates a transaction.BEGIN WORK;--- SQL operation complete.there are some other SQL operations......---This statement ends a transaction.COMMIT WORK;/ ROLLBACK WORK;--- SQL operation complete.CONTROL QUERY DEFAULT stream_timeout ‘300‘;BEGIN WORK;SELECT * FROM(DELETE FROM STREAM(invoices)) AS invoices;CONTRACTNBR AMOUNT PRIORITY---------------------------------100105001200203902300308003*** ERROR[8006]The stream timed out,but the cursor is still open.ROLLBACK WORK;SELECT * FROM invoices;CONTRACTNBR AMOUNT PRIORITY---------------------------------100105001200203902300308003---3 row(s) selected.the differences between "delete form table_name where ......."?Directlydelete just delete it, cannot get the value in this record and process it.With the Pub/Sub, we can get this record and then process it and delete it at last.
3. Embedded UPDATE
Embedded UPDATE statements enable applications to read and update rows with a single operation.CREATE TABLE ecui.orders(order_nbr INT,amount INT,status CHAR(1) DEFAULT ‘N‘);INSERT INTO ORDERS(ORDER_NBR,AMOUNT) VALUES(1,500);INSERT INTO ORDERS(ORDER_NBR,AMOUNT) VALUES(2,4500);INSERT INTO ORDERS(ORDER_NBR,AMOUNT) VALUES(3,2100);>>SELECT * FROM ORDERS;ORDER_NBR AMOUNT STATUS-----------