forked from twitter-forks/airflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[EWT-569] Airflow Upgrade to 1.10.14, Cherry-Pick 299b4d8 from 1.10.4
CP contains [TWTR] CP from 1.10+twtr (twitter-forks#35) * 99ee040: CP from 1.10+twtr * 2e01c24: CP from 1.10.4 ([TWTR][AIRFLOW-4939] Fixup use of fallback kwarg in conf.getint) * 00cb4ae: [TWTR][AIRFLOW-XXXX] Cherry-pick d4a83bc and bump version (twitter-forks#21) * CP 51b1aee: Relax version requiremets (twitter-forks#24) * CP 67a4d1c: [CX-16266] Change with reference to 1a4c164 commit in open source (twitter-forks#25) * CP 54bd095: [TWTR][CX-17516] Queue tasks already being handled by the executor (twitter-forks#26) * CP 87fcc1c: [TWTR][CX-17516] Requeue tasks in the queued state (twitter-forks#27) * CP 98a1ca9: [AIRFLOW-6625] Explicitly log using utf-8 encoding (apache#7247) (twitter-forks#31) * fixing models.py and jobs.py file fix after CP * fixing typo and version bump Co-authored-by: Vishesh Jain <visheshj@twitter.com>
- Loading branch information
1 parent
78dafd6
commit c404b13
Showing
11 changed files
with
179 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,3 @@ | |
|
||
version = '1.10.14+test1' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
import unittest | ||
|
||
from sqlalchemy.pool import NullPool | ||
|
||
from airflow import settings | ||
from tests.compat import patch | ||
from tests.test_utils.config import conf_vars | ||
|
||
SQL_ALCHEMY_CONNECT_ARGS = { | ||
'test': 43503, | ||
'dict': { | ||
'is': 1, | ||
'supported': 'too' | ||
} | ||
} | ||
|
||
|
||
class TestSqlAlchemySettings(unittest.TestCase): | ||
def setUp(self): | ||
self.old_engine = settings.engine | ||
self.old_session = settings.Session | ||
self.old_conn = settings.SQL_ALCHEMY_CONN | ||
settings.SQL_ALCHEMY_CONN = "mysql+foobar://user:pass@host/dbname?inline=param&another=param" | ||
|
||
def tearDown(self): | ||
settings.engine = self.old_engine | ||
settings.Session = self.old_session | ||
settings.SQL_ALCHEMY_CONN = self.old_conn | ||
|
||
@patch('airflow.settings.setup_event_handlers') | ||
@patch('airflow.settings.scoped_session') | ||
@patch('airflow.settings.sessionmaker') | ||
@patch('airflow.settings.create_engine') | ||
def test_configure_orm_with_default_values(self, | ||
mock_create_engine, | ||
mock_sessionmaker, | ||
mock_scoped_session, | ||
mock_setup_event_handlers): | ||
settings.configure_orm() | ||
mock_create_engine.assert_called_once_with( | ||
settings.SQL_ALCHEMY_CONN, | ||
connect_args={}, | ||
encoding='utf-8', | ||
max_overflow=10, | ||
pool_pre_ping=True, | ||
pool_recycle=1800, | ||
pool_size=5 | ||
) | ||
|
||
@patch('airflow.settings.setup_event_handlers') | ||
@patch('airflow.settings.scoped_session') | ||
@patch('airflow.settings.sessionmaker') | ||
@patch('airflow.settings.create_engine') | ||
def test_sql_alchemy_connect_args(self, | ||
mock_create_engine, | ||
mock_sessionmaker, | ||
mock_scoped_session, | ||
mock_setup_event_handlers): | ||
config = { | ||
('core', 'sql_alchemy_connect_args'): 'tests.test_sqlalchemy_config.SQL_ALCHEMY_CONNECT_ARGS', | ||
('core', 'sql_alchemy_pool_enabled'): 'False' | ||
} | ||
with conf_vars(config): | ||
settings.configure_orm() | ||
mock_create_engine.assert_called_once_with( | ||
settings.SQL_ALCHEMY_CONN, | ||
connect_args=SQL_ALCHEMY_CONNECT_ARGS, | ||
poolclass=NullPool, | ||
encoding='utf-8' | ||
) | ||
|
||
@patch('airflow.settings.setup_event_handlers') | ||
@patch('airflow.settings.scoped_session') | ||
@patch('airflow.settings.sessionmaker') | ||
@patch('airflow.settings.create_engine') | ||
def test_sql_alchemy_invalid_connect_args(self, | ||
mock_create_engine, | ||
mock_sessionmaker, | ||
mock_scoped_session, | ||
mock_setup_event_handlers): | ||
config = { | ||
('core', 'sql_alchemy_connect_args'): 'does.not.exist', | ||
('core', 'sql_alchemy_pool_enabled'): 'False' | ||
} | ||
with self.assertRaises(ImportError): | ||
with conf_vars(config): | ||
settings.configure_orm() |