~launchpad-pqm/launchpad/devel

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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
#!/usr/bin/python -S
#
# Copyright 2009-2011 Canonical Ltd.  This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).

"""Bring a new slave online."""

__metaclass__ = type
__all__ = []

import _pythonpath

from optparse import OptionParser
import subprocess
import sys
from textwrap import dedent
import time

import psycopg2

from lp.services.database.postgresql import ConnectionString
from lp.services.database.sqlbase import (
    connect_string,
    ISOLATION_LEVEL_AUTOCOMMIT,
    )
from lp.services.scripts import (
    db_options,
    logger,
    logger_options,
    )
import replication.helpers
from replication.helpers import LPMAIN_SET_ID


def main():
    parser = OptionParser(
        "Usage: %prog [options] node_id connection_string")

    db_options(parser)
    logger_options(parser)

    options, args = parser.parse_args()

    log = logger(options, 'new-slave')

    if len(args) != 2:
        parser.error("Missing required arguments.")

    node_id, raw_target_connection_string = args

    # Confirm we can connect to the source database.
    # Keep the connection as we need it later.
    source_connection_string = ConnectionString(connect_string(user='slony'))
    try:
        log.debug(
            "Opening source connection to '%s'" % source_connection_string)
        source_connection = psycopg2.connect(str(source_connection_string))
        source_connection.set_isolation_level(ISOLATION_LEVEL_AUTOCOMMIT)
    except psycopg2.Error, exception:
        parser.error("Unable to connect as %s (%s)" % (
            source_connection_string, str(exception).strip()))

    # Confirm we are connected to a Slony-I node.
    if not replication.helpers.slony_installed(source_connection):
        parser.error(
            "Database at %s is not a Slony-I node."
            % source_connection_string)

    # Sanity check the given node_id.
    existing_nodes = replication.helpers.get_all_cluster_nodes(
        source_connection)
    try:
        node_id = int(node_id)
    except ValueError:
        parser.error("node_id must be a positive integer.")
    if node_id <= 0:
        parser.error("node_id must be a positive integer.")

    if node_id in [node.node_id for node in existing_nodes]:
        parser.error("Node %d already exists in the cluster." % node_id)

    # Get the connection string for masters.
    lpmain_connection_string = get_master_connection_string(
        source_connection, parser, LPMAIN_SET_ID) or source_connection_string

    # Sanity check the target connection string.
    target_connection_string = ConnectionString(raw_target_connection_string)
    if target_connection_string.user is None:
        target_connection_string.user = 'slony'

    # Make sure we can connect as the required users to our target.
    # Keep the connection as we need it.
    try:
        target_con = psycopg2.connect(str(target_connection_string))
    except psycopg2.Error, exception:
        parser.error("Failed to connect using '%s' (%s)" % (
            target_connection_string, str(exception).strip()))

    # Confirm the target database is sane. Check for common errors
    # that people might make when bringing new replicas online at 4am.
    cur = target_con.cursor()
    cur.execute("SHOW lc_collate")
    collation = cur.fetchone()[0]
    if collation != "C":
        parser.error(
            "Database at %s has incorrect collation (%s)" % (
                target_connection_string, collation))
    cur.execute("SHOW server_encoding")
    encoding = cur.fetchone()[0]
    if encoding != "UTF8":
        parser.error(
            "Database at %s has incorrect encoding (%s)" % (
                target_connection_string, encoding))
    cur.execute("""
        SELECT COUNT(*) FROM information_schema.tables
        WHERE table_schema NOT IN ('pg_catalog', 'information_schema')
        """)
    num_existing_objects = cur.fetchone()[0]
    if num_existing_objects != 0:
        parser.error(
            "Database at %s is not empty." % target_connection_string)
    target_con.rollback()

    # Duplicate the full schema. We restore with no-privileges as required
    # roles may not yet exist, so we have to run security.py on the
    # new slave once it is built.
    log.info("Duplicating full db schema from '%s' to '%s'" % (
        lpmain_connection_string, target_connection_string))
    cmd = "pg_dump --schema-only --no-privileges %s | psql -1 -q %s" % (
        source_connection_string.asPGCommandLineArgs(),
        target_connection_string.asPGCommandLineArgs())
    if subprocess.call(cmd, shell=True) != 0:
        log.error("Failed to duplicate database schema.")
        return 1

    # Trash the broken Slony tables we just duplicated.
    log.debug("Removing slony cruft.")
    cur = target_con.cursor()
    cur.execute("DROP SCHEMA _sl CASCADE")
    target_con.commit()
    del target_con

    # Get a list of existing set ids that can be subscribed too. This
    # is all sets where the origin is the master_node. We
    # don't allow other sets where the master is configured as a
    # forwarding slave as we have to special case rebuilding the database
    # schema, and we want to avoid cascading slave configurations anyway
    # since we are running an antique Slony-I at the moment - keep it
    # simple!
    # We order the sets smallest to largest by number of tables.
    # This should let us subscribe the quickest sets first for more
    # immediate feedback.
    source_connection.rollback()
    master_node = replication.helpers.get_master_node(source_connection)
    cur = source_connection.cursor()
    cur.execute("""
        SELECT set_id
        FROM _sl.sl_set, (
            SELECT tab_set, count(*) AS tab_count
            FROM _sl.sl_table GROUP BY tab_set
            ) AS TableCounts
        WHERE
            set_origin=%d
            AND tab_set = set_id
        ORDER BY tab_count
        """
        % (master_node.node_id,))
    set_ids = [set_id for set_id, in cur.fetchall()]
    log.debug("Discovered set ids %s" % repr(list(set_ids)))

    # Generate and run a slonik(1) script to initialize the new node
    # and subscribe it to our replication sets.
    comment = 'New node created %s' % time.ctime()
    script = dedent("""\
        define new_node %d;
        define new_node_conninfo '%s';
        node @new_node admin conninfo = @new_node_conninfo;

        echo 'Initializing new node.';
        try {
            store node (id=@new_node, comment='%s', event node=@master_node);
            echo 'Creating new node paths.';
        """ % (node_id, target_connection_string, comment))

    for node in existing_nodes:
        script += dedent("""\
            store path (
                server=@%(nickname)s, client=@new_node,
                conninfo=@%(nickname)s_conninfo);
            store path (
                server=@new_node, client=@%(nickname)s,
                conninfo=@new_node_conninfo);
            """ % {'nickname': node.nickname})

    script += dedent("""\
        } on error { echo 'Failed.'; exit 1; }

        echo 'You may need to restart the Slony daemons now. If the first';
        echo 'of the following syncs passes then there is no need.';
        """)

    full_sync = []
    sync_nicknames = [node.nickname for node in existing_nodes] + ['new_node']
    for nickname in sync_nicknames:
        full_sync.append(dedent("""\
            echo 'Waiting for %(nickname)s sync.';
            sync (id=@%(nickname)s);
            wait for event (
                origin = @%(nickname)s, confirmed=ALL,
                wait on = @%(nickname)s, timeout=0);
            echo 'Ok. Replication syncing fine with new node.';
            """ % {'nickname': nickname}))
    full_sync = '\n'.join(full_sync)
    script += full_sync

    for set_id in set_ids:
        script += dedent("""\
        echo 'Subscribing new node to set %d.';
        subscribe set (
            id=%d, provider=@master_node, receiver=@new_node, forward=yes);
        echo 'Waiting for subscribe to start processing.';
        echo 'This will block on long running transactions.';
        sync (id = @master_node);
        wait for event (
            origin = @master_node, confirmed = ALL,
            wait on = @master_node, timeout = 0);
        """ % (set_id, set_id))
        script += full_sync

    replication.helpers.execute_slonik(script)

    replication.helpers.validate_replication(source_connection.cursor())

    return 0


def get_master_connection_string(con, parser, set_id):
    """Return the connection string to the origin for the replication set.
    """
    cur = con.cursor()
    cur.execute("""
        SELECT pa_conninfo FROM _sl.sl_set, _sl.sl_path
        WHERE set_origin = pa_server AND set_id = %d
        LIMIT 1
        """ % set_id)
    row = cur.fetchone()
    if row is None:
        # If we have no paths stored, there is only a single node in the
        # cluster.
        return None
    else:
        connection_string = ConnectionString(row[0])

    # Confirm we can connect from here.
    try:
        # Test connection only.  We're not going to use it.
        psycopg2.connect(str(connection_string))
    except psycopg2.Error, exception:
        parser.error("Failed to connect to using '%s' (%s)" % (
            connection_string, str(exception).strip()))

    return connection_string


if __name__ == '__main__':
    sys.exit(main())