arch.sgml
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:4k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. <Chapter Id="arch">
  2. <TITLE>Architecture</TITLE>
  3. <Sect1>
  4. <Title><ProductName>Postgres</ProductName> Architectural Concepts</Title>
  5. <Para>
  6.      Before we begin, you  should  understand  the  basic
  7.      <ProductName>Postgres</ProductName>  system  architecture.   Understanding how the
  8.      parts of <ProductName>Postgres</ProductName> interact will make the  next  chapter
  9.      somewhat clearer.
  10.      In  database  jargon,  <ProductName>Postgres</ProductName> uses a simple "process  
  11.      per-user" client/server model.  A <ProductName>Postgres</ProductName> session 
  12.      consists of the following cooperating UNIX processes (programs):
  13. </Para>
  14. <ItemizedList>
  15. <ListItem>
  16. <Para>
  17.        A supervisory daemon process (<Application>postmaster</Application>),
  18. </Para>
  19. </ListItem>
  20. <ListItem>
  21. <Para>
  22.        the user's frontend application (e.g., the <Application>psql</Application> program), and
  23. </Para>
  24. </ListItem>
  25. <ListItem>
  26. <Para>
  27.        the  one or more backend database servers (the <Application>postgres</Application> process itself).
  28. </Para>
  29. </ListItem>
  30. </ItemizedList>
  31. <Para>
  32.      A single  <Application>postmaster</Application>  manages  a  given  collection  of
  33.      databases  on  a  single  host.   Such  a collection of
  34.      databases is called an installation or site.   Frontend
  35.      applications  that  wish  to  access  a  given database
  36.      within an installation make calls to the   library.
  37.      The library sends user requests over the network to the
  38.      <Application>postmaster</Application> (<XRef LinkEnd="ARCH-CLIENTSERVER" EndTerm="ARCH-CLIENTSERVER">),
  39.      which in turn  starts  a  new backend  server  process
  40.      
  41. <Figure Id="ARCH-CLIENTSERVER">
  42. <Title>How a connection is established</Title>
  43. <Graphic Align="center" FileRef="clientserver.gif" Format="GIF"></Graphic>
  44. </Figure>
  45.      and connects the
  46.      frontend process to the new server.  From
  47.      that  point  on,  the  frontend process and the backend
  48.      server communicate without intervention by the 
  49.      <Application>postmaster</Application>.   Hence, the <Application>postmaster</Application> is always running, waiting
  50.      for requests, whereas frontend  and  backend  processes
  51.      come  and  go.
  52. </Para>
  53. <Para>
  54.   The <FileName>libpq</FileName> library allows a single 
  55.      frontend to make multiple connections to backend processes.
  56.      However,  the  frontend  application is still a 
  57.      single-threaded process.  Multithreaded frontend/backend  
  58.      connections are not currently supported in <FileName>libpq</FileName>.
  59.      One  implication of this architecture is that the 
  60.      <Application>postmaster</Application> and the backend always run on the  same  
  61.      machine (the  database  server), while the frontend 
  62.      application may run  anywhere.   You  should  keep  this  
  63.      in  mind,
  64.      because  the  files  that  can  be accessed on a client
  65.      machine may not be accessible (or may only be  accessed
  66.      using  a  different  filename)  on  the database server
  67.      machine.
  68. </Para>
  69. <Para>
  70.      You should also be aware that the <Application>postmaster</Application> and  
  71.      postgres  servers  run  with  the  user-id  of the <ProductName>Postgres</ProductName>
  72.      "superuser."  Note that the <ProductName>Postgres</ProductName> superuser does not
  73.      have  to  be  a special user (e.g., a user named 
  74.      "postgres").  Furthermore,  the  <ProductName>Postgres</ProductName>  superuser  
  75.      should
  76.      definitely  not  be the UNIX superuser ("root")!  In any
  77.      case, all files relating to a database should belong to
  78.      this <ProductName>Postgres</ProductName> superuser.
  79. </Para>
  80. </sect1>
  81. </Chapter>