Skip to main content

Sybase Replication server Internal

Rplication server internals
-------------------------------

Functioning of all threads
-------------------------------

1> Rep Agent
---------------
a> Scans transaction log PDB
b> Converts log records to log transfer language and send to Inbound queues
c> moves the secondary truncation point
d> verifies correct object schema

2> Stable queue manager
-----------------------
a> Used to manage process of reading/writing/deleting messages on stable device

3> stable queue transaction
---------------------------
a> Passes stable device messages to clients in commit order
* Client includes DIST and DSI threads


* SQT cache size
----------------
a> Each IBQ consumes sqt_max_cache_size
b> Each DSI also takes sqt_max_cache_size


4> distributor (DIST)
---------------------
a> Calls SQT and SQM to read the IBQ in commit order
b> Destination will be an OBQ
c> Makes calls to 3 libraries
1> Subscription resolution engine
2> Transaction delivery (packs commands)
3> Message delivery - It groups messages for different subscribers over a comman route.


5> Data server interface
------------------------
Composed of DSI scheduler thread and DSI executor threads
a> Schedular is queue manager
1> Reads transactions from outbound queue
2> Sorts them into commit order using SQL library
3> Decides the grouping,batching of transactions
b> Executor delivers to the RDS
1> Reads transactions from DSI SQT cache
2> Maps function strings
3> Handles error actions (error checks before sending commit)


6> Groupmg logic
----------------
a> Transaction may be grouped if they
1> are in memory (SQT closed)
2> are from same origin
3> have the same username and password
b> Groups are up to dsi_xact_group_size
bytes (default 64 K)
c> Sent in batches of dsi_cmd_batch_size
bytes



* Replication server users
--------------------------
1> Maintainance user
Used by replication server to make changes in replicate databases.

2> Repagent user
Used by repagents to log into replication server

3> Primary RSSD user
Used by replication server to make changes to its own RSSD

Comments

Post a Comment

Popular posts from this blog

How to set data cache,procedure cahe in ASE

1> sp_cacheconfig "default data cache","1G" 2> go Msg 10879, Level 16, State 1: Server 'SPICE_BIAPPS', Procedure 'sp_cacheconfig', Line 1167: The current 'max memory' value '58368', is not sufficient to change the size of cache 'default data cache' to '1G' (1048576 KB). 'max memory' should be greater than 'total logical memory' '579786' required for the configuration. (return status = 1) 1> sp_configure "max memory" 2> go Parameter Name Default Memory Used Config Value Run Value Unit Type ------------------------------ ----------- ----------- ------------ ------------ -------------------- ---------- max memory 58368 116736 58368 58368 memory pages(2k) dynamic (1 row affected) (return status = 0) 1> sp_configure "max memory","1G" 2>...

Undocumented DBCC commands in ASE

Introduction Undocumented DBCC commands: • DBCC BUFFER • DBCC BYTES • DBCC DBINFO • DBCC DBTABLE • DBCC DES • DBCC HELP • DBCC IND • DBCC LOG • DBCC PAGE • DBCC PROCBUF • DBCC PRTIPAGE • DBCC PSS • DBCC RESOURCE • DBCC TAB Literature Introduction In this article I want to tell you about some useful undocumented DBCC commands, and how you can use these commands in SQL Server 7.0 for administering and monitoring. DBCC is an abbreviation of a DataBase Consistency Checker. This is the description of DBCC from SQL Server Books Online: A statement used to check the logical and physical consistency of a database, check memory usage, decrease the size of a database, check performance statistics, and so on. Database consistency checker (DBCC) ensures the physical and logical consistency of a database, but is not corrective. Undocumented DBCC commands 1. DBCC BUFFER This command can be used to print buffer headers and pages from the buffer cache. Syntax: dbcc buffer ([dbid|dbname] ...

Replication Server Quick Ref Guide

Replication Server Guide : • Replication Server Commands • ASE commands and system stored procedures • ASE RSSD stored procedures • RSSD tables • Replication Server System Functions • Troubleshooting Tips Abbreviations Some abbreviations which are used in this Quick Reference Guide: ASE Adaptive Server Enterprise DSI DataServer Interface - RS thread for a connection to a replicate database DIST Distributor - RS thread per primary database LTM Log Transfer Manager; synonym for RepAgent RS, RepServer Replication Server RepAgent Replication Agent (in primary dataserver) RepDef Replication Definition RSI Replication Server Interface - RS thread related to a route to another RepServer RSM Replication Server Manager (a DBA tool normally used in combination with Sybase Central) RSSD Replication Server System Database SQM Stable Queue Manager - RS thread managing a queue SQT Stable Queue Manager - RS thread assembling transactions Replication Server Commands The following commands can only be ...