Pergunta

I have questions regarding the distributed database elements and environment :

  1. What is the exact meaning of a transaction processor and where does it exists in a distributed environment ?

  2. What is the exact meaning of a data processor and where does it exists in a distributed environment ?

  3. where does a DDBMS exists in a distributed database environment ?

Foi útil?

Solução

Your question is a little generic / open ended but here's the best I can answer your questions:

  1. "Transaction Processor" is dedicated to tracking the transactions that occur in the primary database on one server so that it can keep distributed databases in sync with the primary database via the "Data Processor".

It can exist on the primary server or any of the other servers, but usually lives on the primary.

  1. The "Data Processor" is the distributor of the data changes from the primary database to the distributed secondary databases. It's job is to actually move the transactions (or data) from the primary source server and sync it to the distributed secondary servers. It also can live on any of the databases (or its own database) and is usually chosen based on performance reasons.

  2. DDBMS stands for Distributed Database Management System. So it is the very concept / architecture you're asking about. It is composed of multiple databases across multiple servers (usually one server being the primary and the other servers being secondaries). The job of DDBMS is to keep multiple copies of the same database across multiple servers in sync with each other.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a dba.stackexchange
scroll top