-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintro.html
More file actions
executable file
·90 lines (89 loc) · 3.22 KB
/
intro.html
File metadata and controls
executable file
·90 lines (89 loc) · 3.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/htmol4/strict.dtd">
<!--
==== Introduction to Postgres-XC ====
-->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html";charset=UTF-8>
<title>Postgres_XC Introduction</title>
<link rel="stylesheet" type="text/css" href="pgcx_1.css">
</head>
<body bgcolor=#FFFFFF>
<!-- === Welcome === -->
<h2>
Welcome to Postgres-XC
</h2>
<p>
Welcome to Postgres-XC, the only known PostgreSQL cluster solution
which provides for both read and write scalability.
</p>
<p>
This website includes useful information to understand, download, build, deploy and use Postgres-XC.
</p>
<p>
If you are familiar with the project outline, please visit individual pages
as desired.
If not, we advise you to first visit each page of this site to obtain
a proper understanding of Postgres-XC and how it can help you.
</p>
<p>
All of the Postgres-XC team members are looking forward to continuing to improve Postgres-XC and working with you to help solve your database scalability problems.
</p>
<p>
Enjoy.
</p>
<!-- === Postgres-XC outline === -->
<h2>
What Is Postgres-XC?
</h2>
<p>
Postgres-XC is an open source project to provide a write-scalable,
synchronous multi-master,
transparent PostgreSQL cluster solution.
It is a collection if tightly coupled database components
which can be installed in more than one hardware or virtual machines.
</p>
<p>
Write-scalable means Postgres-XC can be configured
with as many database servers as you want and handle many more writes
(updating SQL statements) compared to what a single database server can not do.
</p>
<p>
Multi-master means you can have more than one database server
that clients connect to which provide a single, consistent cluster-wide view of the database.
</p>
<p>
Synchronous means any database update from any database server is
immediately visible to any other transactions running on different masters.
</p>
<p>
Transparent means you (and your applications) do not have to worry about how your data is stored
in more than one database servers internally.
</p>
<p>
You can configure Postgres-XC to run on multiple servers.
Your data is stored in a distributed way, that is,
partitioned or replicated, as chosen by you for each table.
When you issue queries, Postgres-XC determines
where the target data is stored and issues corresponding queries
to servers containing the target data.
</p>
<!-- === Overview of the whole system === -->
<p class="plain">
<img src="image/SystemOutline.png" width="650">
</p>
<!-- Piwik -->
<script type="text/javascript">
var pkBaseURL = (("https:" == document.location.protocol) ? "https://sourceforge.net/apps/piwik/postgres-xc/" : "http://sourceforge.net/apps/piwik/postgres-xc/");
document.write(unescape("%3Cscript src='" + pkBaseURL + "piwik.js' type='text/javascript'%3E%3C/script%3E"));
</script><script type="text/javascript">
try {
var piwikTracker = Piwik.getTracker(pkBaseURL + "piwik.php", 1);
piwikTracker.trackPageView();
piwikTracker.enableLinkTracking();
} catch( err ) {}
</script><noscript><p><img src="http://sourceforge.net/apps/piwik/postgres-xc/piwik.php?idsite=1" style="border:0" alt=""/></p></noscript>
<!-- End Piwik Tag -->
</body>
</html>