blob: 9fad54c0cab34d91fb6fa6643f983491a1b6623c (
plain)
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
90
91
92
93
94
95
96
97
98
99
100
101
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Partitioning Rule</title>
<link href="../screen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="header">
<h1><img src="../images/logo.gif" alt="pgpoolAdmin" /></h1>
</div>
<div id="menu">
<ul>
<li><a href="../index_en.html">Introduction</a></li>
<li><a href="install.html">Install</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="status.html">pgpool Status</a></li>
<li><a href="nodeServerStatus.html">Node Status</a></li>
<li><a href="queryCache.html">Query Cache</a></li>
<li><a href="systemDb.html">Partitioning Rule</a></li>
<li><a href="pgconfig.html">pgpool.conf Setting</a></li>
<li><a href="config.html">pgpoolAdmin Setting</a></li>
<li><a href="changePassword.html">Change Password</a></li>
<li><a href="logout.html">Logout</a></li>
<li><a href="errorCode.html">Error Code</a></li>
</ul>
</div>
<div id="content">
<h2>Partitioning Rule</h2>
<h3>Summary</h3>
The setting of a parallel query is defined for parallel_mode=true in pgpool.conf.
<h3>Feature</h3>
The data type of each column is as follows. <p />
<table>
<tr>
<th class="right_border"><label>Column Name</label></th>
<th class="right_border"><label>Data Type</label></th>
<th><label>Description</label></th>
</tr>
<tr>
<th class="right_border"><label>Database Name</label></th>
<td class="right_border">TEXT</td>
<td>Distributed database name</td>
</tr>
<tr>
<th class="right_border"><label>Schema Name</label></th>
<td class="right_border">TEXT</td>
<td>Schema name of database</td>
</tr>
<tr>
<th class="right_border"><label>Table</label></th>
<td class="right_border">TEXT</td>
<td>Distributed table name</td>
</tr>
<tr>
<th class="right_border"><label>Column Name of Distributed key</label></th>
<td class="right_border">TEXT</td>
<td>Column Name of Distributed key</td>
</tr>
<tr>
<th class="right_border"><label>Column List</label></th>
<td class="right_border">TEXT[]</td>
<td>List of row name of table that distributes data</td>
</tr>
<tr>
<th class="right_border"><label>Type List of Column</label></th>
<td class="right_border">TEXT[]</td>
<td>List of type of row name</td>
</tr>
<tr>
<th class="right_border"><label>Distributed Function Name</label></th>
<td class="right_border">TEXT</td>
<td>Function name that defines partitioning rule</td>
</tr>
</table>
<p />
<h3>Add</h3>
The value is input to all columns and "Add" button is pushed. <br />
Please enclose each element with a single quotation, and delimit each element by the comma about the column list and the type list of column.
<h3>Update</h3>
Please click the data base name of the definition that wants to be updated. Please the value must be displayed in the input field and correct and push "Update" button. However, neither the data base name, the schema name nor the table name are revocable.
<h3>Delete</h3>
Please click the data base name of the definition that wants to be deleted. Please push "Delete" button. The confirmation dialog is displayed and push the "OK" button, please.
</div>
<div id="footer">
<address>
Version 2.1<br />
Copyright © 2006 - 2008 <a href="http://pgpool.projects.postgresql.org/">pgpool Global Development Group</a>. All rights reserved.
</address></div>
</body>
</html>
|