mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 01:25:16 +00:00
246eca1121
* Make core app compatible with Python 3 No backward compatibility with Python 2.7 is kept. This commit mostly contains changes made with 2to3 and manual tweaking when necessary. * Use Python 3.7 as base docker image Since it is not possible to change redash/base:debian to Python 3 without breaking future relases, its Dockerfile is temporarly copied here. * Upgrade some requirements to newest versions Some of the older versions were not compatible with Python 3. * Migrate tests to Python 3 * Build frontend on Python 3 * Make the HMAC sign function compatible with Python 3 In Python 3, HMAC only works with bytes so the strings and the float used in the sign function need to be encoded. Hopefully this is still backward compatible with already generated signatures. * Use assertCountEqual instead of assertItemsEqual The latter is not available in Python 3. See https://bugs.python.org/issue17866 * Remove redundant encoding header for Python 3 modules * Remove redundant string encoding in CLI * Rename list() functions in CLI These functions shadow the builtin list function which is problematic since 2to3 adds a fair amount of calls to the builtin list when it finds dict.keys() and dict.values(). Only the Python function is renamed, from the perspective of the CLI nothing changes. * Replace usage of Exception.message in CLI `message` is not available anymore, instead use the string representation of the exception. * Adapt test handlers to Python 3 * Fix test that relied on dict ordering * Make sure test results are always uploaded (#4215) * Support encoding memoryview to JSON psycopg2 returns `buffer` objects in Python 2.7 and `memoryview` in Python 3. See #3156 * Fix test relying on object address ordering * Decode bytes returned from Redis * Stop using e.message for most exceptions Exception.message is not available in Python 3 anymore, except for some exceptions defined by third-party libraries. * Fix writing XLSX files in Python 3 The buffer for the file should be made of bytes and the actual content written to it strings. Note: I do not know why the diff is so large as it's only a two lines change. Probably a white space or file encoding issue. * Fix test by comparing strings to strings * Fix another exception message unavailable in Python 3 * Fix export to CSV in Python 3 The UnicodeWriter is not used anymore. In Python 3, the interface provided by the CSV module only deals with strings, in and out. The encoding of the output is left to the user, in our case it is given to Flask via `make_response`. * (Python 3) Use Redis' decode_responses=True option (#4232) * Fix test_outdated_queries_works_scheduled_queries_tracker (use utcnow) * Make sure Redis connection uses decoded_responses option * Remove unused imports. * Use Redis' decode_responses option * Remove cases of explicit Redis decoding * Rename helper function and make sure it doesn't apply twice. * Don't add decode_responses to Celery Redis connection URL * Fix displaying error while connecting to SQLite The exception message is always a string in Python 3, so no need to try to decode things. * Fix another missing exception message * Handle JSON encoding for datasources returning bytes SimpleJSON assumes the bytes it receives contain text data, so it tries to UTF-8 encode them. It is sometimes not true, for instance the SQLite datasource returns bytes for BLOB types, which typically do not contain text but truly binary data. This commit disables SimpleJSON auto encoding of bytes to str and instead uses the same method as for memoryviews: generating a hex representation of the data. * Fix Python 3 compatibility with RQ * Revert some changes 2to3 tends to do (#4261) - Revert some changes 2to3 tends to do when it errs on the side of caution regarding dict view objects. - Also fixed some naming issues with one character variables in list comprehensions. - Fix Flask warning. * Upgrade dependencies * Remove useless `iter` added by 2to3 * Fix get_next_path tests (#4280) * Removed setting SERVER_NAME in tests setup to avoid a warning. * Change get_next_path to not return empty string in case of a domain only value. * Fix redirect tests: Since version 0.15 of Werkzeug it uses full path for fixing the location header instead of the root path. * Remove explicit dependency for Werkzeug * Switched pytz and certifi to unbinded versions. * Switch to new library for getting country from IP `python-geoip-geolite2` is not compatible with Python 3, instead use `maxminddb-geolite2` which is very similar as it includes the geolite2 database in the package . * Python 3 RQ modifications (#4281) * show current worker job (alongside with minor cosmetic column tweaks) * avoid loading entire job data for queued jobs * track general RQ queues (default, periodic and schemas) * get all active RQ queues * call get_celery_queues in another place * merge dicts the Python 3 way * extend the result_ttl of refresh_queries to 600 seconds to allow it to continue running periodically even after longer executions * Remove legacy Python flake8 tests
243 lines
7.4 KiB
Python
Executable File
243 lines
7.4 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
import urllib
|
|
import argparse
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
from collections import namedtuple
|
|
from fnmatch import fnmatch
|
|
|
|
import requests
|
|
|
|
try:
|
|
import semver
|
|
except ImportError:
|
|
print("Missing required library: semver.")
|
|
exit(1)
|
|
|
|
REDASH_HOME = os.environ.get('REDASH_HOME', '/opt/redash')
|
|
CURRENT_VERSION_PATH = '{}/current'.format(REDASH_HOME)
|
|
|
|
|
|
def run(cmd, cwd=None):
|
|
if not cwd:
|
|
cwd = REDASH_HOME
|
|
|
|
return subprocess.check_output(cmd, cwd=cwd, shell=True, stderr=subprocess.STDOUT)
|
|
|
|
|
|
def confirm(question):
|
|
reply = str(input(question + ' (y/n): ')).lower().strip()
|
|
|
|
if reply[0] == 'y':
|
|
return True
|
|
if reply[0] == 'n':
|
|
return False
|
|
else:
|
|
return confirm("Please use 'y' or 'n'")
|
|
|
|
|
|
def version_path(version_name):
|
|
return "{}/{}".format(REDASH_HOME, version_name)
|
|
|
|
END_CODE = '\033[0m'
|
|
|
|
|
|
def colored_string(text, color):
|
|
if sys.stdout.isatty():
|
|
return "{}{}{}".format(color, text, END_CODE)
|
|
else:
|
|
return text
|
|
|
|
|
|
def h1(text):
|
|
print(colored_string(text, '\033[4m\033[1m'))
|
|
|
|
|
|
def green(text):
|
|
print(colored_string(text, '\033[92m'))
|
|
|
|
|
|
def red(text):
|
|
print(colored_string(text, '\033[91m'))
|
|
|
|
|
|
class Release(namedtuple('Release', ('version', 'download_url', 'filename', 'description'))):
|
|
def v1_or_newer(self):
|
|
return semver.compare(self.version, '1.0.0-alpha') >= 0
|
|
|
|
def is_newer(self, version):
|
|
return semver.compare(self.version, version) > 0
|
|
|
|
@property
|
|
def version_name(self):
|
|
return self.filename.replace('.tar.gz', '')
|
|
|
|
|
|
def get_latest_release_from_ci():
|
|
response = requests.get('https://circleci.com/api/v1.1/project/github/getredash/redash/latest/artifacts?branch=master')
|
|
|
|
if response.status_code != 200:
|
|
exit("Failed getting releases (status code: %s)." % response.status_code)
|
|
|
|
tarball_asset = filter(lambda asset: asset['url'].endswith('.tar.gz'), response.json())[0]
|
|
filename = urllib.unquote(tarball_asset['pretty_path'].split('/')[-1])
|
|
version = filename.replace('redash.', '').replace('.tar.gz', '')
|
|
|
|
release = Release(version, tarball_asset['url'], filename, '')
|
|
|
|
return release
|
|
|
|
|
|
def get_release(channel):
|
|
if channel == 'ci':
|
|
return get_latest_release_from_ci()
|
|
|
|
response = requests.get('https://version.redash.io/api/releases?channel={}'.format(channel))
|
|
release = response.json()[0]
|
|
|
|
filename = release['download_url'].split('/')[-1]
|
|
release = Release(release['version'], release['download_url'], filename, release['description'])
|
|
|
|
return release
|
|
|
|
|
|
def link_to_current(version_name):
|
|
green("Linking to current version...")
|
|
run('ln -nfs {} {}'.format(version_path(version_name), CURRENT_VERSION_PATH))
|
|
|
|
|
|
def restart_services():
|
|
# We're doing this instead of simple 'supervisorctl restart all' because
|
|
# otherwise it won't notice that /opt/redash/current pointing at a different
|
|
# directory.
|
|
green("Restarting...")
|
|
try:
|
|
run('sudo /etc/init.d/redash_supervisord restart')
|
|
except subprocess.CalledProcessError as e:
|
|
run('sudo service supervisor restart')
|
|
|
|
|
|
def update_requirements(version_name):
|
|
green("Installing new Python packages (if needed)...")
|
|
new_requirements_file = '{}/requirements.txt'.format(version_path(version_name))
|
|
|
|
install_requirements = False
|
|
|
|
try:
|
|
run('diff {}/requirements.txt {}'.format(CURRENT_VERSION_PATH, new_requirements_file)) != 0
|
|
except subprocess.CalledProcessError as e:
|
|
if e.returncode != 0:
|
|
install_requirements = True
|
|
|
|
if install_requirements:
|
|
run('sudo pip install -r {}'.format(new_requirements_file))
|
|
|
|
|
|
def apply_migrations(release):
|
|
green("Running migrations (if needed)...")
|
|
if not release.v1_or_newer():
|
|
return apply_migrations_pre_v1(release.version_name)
|
|
|
|
run("sudo -u redash bin/run ./manage.py db upgrade", cwd=version_path(release.version_name))
|
|
|
|
|
|
def find_migrations(version_name):
|
|
current_migrations = set([f for f in os.listdir("{}/migrations".format(CURRENT_VERSION_PATH)) if fnmatch(f, '*_*.py')])
|
|
new_migrations = sorted([f for f in os.listdir("{}/migrations".format(version_path(version_name))) if fnmatch(f, '*_*.py')])
|
|
|
|
return [m for m in new_migrations if m not in current_migrations]
|
|
|
|
|
|
def apply_migrations_pre_v1(version_name):
|
|
new_migrations = find_migrations(version_name)
|
|
|
|
if new_migrations:
|
|
green("New migrations to run: ")
|
|
print(', '.join(new_migrations))
|
|
else:
|
|
print("No new migrations in this version.")
|
|
|
|
if new_migrations and confirm("Apply new migrations? (make sure you have backup)"):
|
|
for migration in new_migrations:
|
|
print("Applying {}...".format(migration))
|
|
run("sudo sudo -u redash PYTHONPATH=. bin/run python migrations/{}".format(migration), cwd=version_path(version_name))
|
|
|
|
|
|
def download_and_unpack(release):
|
|
directory_name = release.version_name
|
|
|
|
green("Downloading release tarball...")
|
|
run('sudo wget --header="Accept: application/octet-stream" -O {} {}'.format(release.filename, release.download_url))
|
|
green("Unpacking to: {}...".format(directory_name))
|
|
run('sudo mkdir -p {}'.format(directory_name))
|
|
run('sudo tar -C {} -xvf {}'.format(directory_name, release.filename))
|
|
|
|
green("Changing ownership to redash...")
|
|
run('sudo chown redash {}'.format(directory_name))
|
|
|
|
green("Linking .env file...")
|
|
run('sudo ln -nfs {}/.env {}/.env'.format(REDASH_HOME, version_path(directory_name)))
|
|
|
|
|
|
def current_version():
|
|
real_current_path = os.path.realpath(CURRENT_VERSION_PATH).replace('.b', '+b')
|
|
return real_current_path.replace(REDASH_HOME + '/', '').replace('redash.', '')
|
|
|
|
|
|
def verify_minimum_version():
|
|
green("Current version: " + current_version())
|
|
if semver.compare(current_version(), '0.12.0') < 0:
|
|
red("You need to have Redash v0.12.0 or newer to upgrade to post v1.0.0 releases.")
|
|
green("To upgrade to v0.12.0, run the upgrade script set to the legacy channel (--channel legacy).")
|
|
exit(1)
|
|
|
|
|
|
def show_description_and_confirm(description):
|
|
if description:
|
|
print(description)
|
|
|
|
if not confirm("Continue with upgrade?"):
|
|
red("Cancelling upgrade.")
|
|
exit(1)
|
|
|
|
|
|
def verify_newer_version(release):
|
|
if not release.is_newer(current_version()):
|
|
red("The found release is not newer than your current deployed release ({}).".format(current_version()))
|
|
if not confirm("Continue with upgrade?"):
|
|
red("Cancelling upgrade.")
|
|
exit(1)
|
|
|
|
|
|
def deploy_release(channel):
|
|
h1("Starting Redash upgrade:")
|
|
|
|
release = get_release(channel)
|
|
green("Found version: {}".format(release.version))
|
|
|
|
if release.v1_or_newer():
|
|
verify_minimum_version()
|
|
|
|
verify_newer_version(release)
|
|
show_description_and_confirm(release.description)
|
|
|
|
try:
|
|
download_and_unpack(release)
|
|
update_requirements(release.version_name)
|
|
apply_migrations(release)
|
|
link_to_current(release.version_name)
|
|
restart_services()
|
|
green("Done! Enjoy.")
|
|
except subprocess.CalledProcessError as e:
|
|
red("Failed running: {}".format(e.cmd))
|
|
red("Exit status: {}\nOutput:\n{}".format(e.returncode, e.output))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("--channel", help="The channel to get release from (default: stable).", default='stable')
|
|
args = parser.parse_args()
|
|
|
|
deploy_release(args.channel)
|