Created
January 23, 2020 11:30
-
-
Save prat3ik/dd81d2470aed8b04e7f0c94d771daf70 to your computer and use it in GitHub Desktop.
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
iMacs-iMac-2:~ imac$ airflow webserver -p 8080 | |
____________ _____________ | |
____ |__( )_________ __/__ /________ __ | |
____ /| |_ /__ ___/_ /_ __ /_ __ \_ | /| / / | |
___ ___ | / _ / _ __/ _ / / /_/ /_ |/ |/ / | |
_/_/ |_/_/ /_/ /_/ /_/ \____/____/|__/ | |
[2020-01-23 16:43:28,576] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:43:28,576] {dagbag.py:415} INFO - Filling up the DagBag from /dev/null | |
Running the Gunicorn Server with: | |
Workers: 4 sync | |
Host: 0.0.0.0:8080 | |
Timeout: 120 | |
Logfiles: - - | |
================================================================= | |
[2020-01-23 16:43:29 +0530] [26551] [INFO] Starting gunicorn 19.10.0 | |
[2020-01-23 16:43:29 +0530] [26551] [INFO] Listening at: http://0.0.0.0:8080 (26551) | |
[2020-01-23 16:43:29 +0530] [26551] [INFO] Using worker: sync | |
[2020-01-23 16:43:29 +0530] [26555] [INFO] Booting worker with pid: 26555 | |
[2020-01-23 16:43:29 +0530] [26556] [INFO] Booting worker with pid: 26556 | |
[2020-01-23 16:43:29 +0530] [26557] [INFO] Booting worker with pid: 26557 | |
[2020-01-23 16:43:29 +0530] [26558] [INFO] Booting worker with pid: 26558 | |
[2020-01-23 16:43:30,526] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:43:30,527] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:43:30,560] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:43:30,586] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:43:30,598] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:43:30,609] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:43:30,624] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:43:30,633] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:43:30,634] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:43:30,646] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:43:30,647] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:43:30,647] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:43:30,659] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:43:30,660] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:43:30,668] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:43:30,672] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:43:30,677] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:43:30,682] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:43:30,688] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:43:30,689] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:43:30,697] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:43:30,697] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:43:30,701] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:43:30,709] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:43:30,728] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:43:30,739] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:43:30,748] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:43:30,762] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET / HTTP/1.1" 302 217 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
[2020-01-23 16:43:38,521] {decorators.py:128} WARNING - Access is Denied for: can_index on: Airflow | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /home HTTP/1.1" 302 305 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome HTTP/1.1" 200 8172 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/css/flags/flags16.css HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/select2/select2.css HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/css/font-awesome.min.css HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.css HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/css/ab.css HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/js/jquery-latest.js HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/dist/main.40deac1caf807acd8abf.css HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/dist/airflowDefaultTheme.46c317ab124fe627409d.css HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/js/ab_filters.js HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/js/ab_actions.js HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/css/flash.css HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/pin_100.png HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/js/bootstrap.min.js HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/js/ab.js HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.js HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/select2/select2.js HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/dist/base.4e2f8a4738b0e8aee1a0.js HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:38 +0530] "GET /static/appbuilder/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/css/font-awesome.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:39 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:42 +0530] "POST /login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome HTTP/1.1" 302 221 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:42 +0530] "GET /login/ HTTP/1.1" 200 8189 "http://localhost:8080/login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "POST /login/ HTTP/1.1" 302 209 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET / HTTP/1.1" 302 217 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /home HTTP/1.1" 200 153539 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /static/dist/dataTables.bootstrap.min.css HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /static/dist/bootstrap-toggle.min.css HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /static/loading.gif HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /static/dist/d3.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /static/dist/jquery.dataTables.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /static/dist/bootstrap-toggle.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /static/dist/bootstrap3-typeahead.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /static/dist/dataTables.bootstrap.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /blocked?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 2 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /last_dagruns?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 2 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /dag_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 10434 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:46 +0530] "GET /task_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 33583 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:43:47 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
[2020-01-23 16:44:01 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:44:01 +0530] [26605] [INFO] Booting worker with pid: 26605 | |
[2020-01-23 16:44:02,698] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:44:02,698] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:44:02,724] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:44:02,741] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:44:02,751] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:44:02,762] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:44:02,776] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:44:04 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:44:04 +0530] [26555] [INFO] Worker exiting (pid: 26555) | |
[2020-01-23 16:44:34 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:44:34 +0530] [26669] [INFO] Booting worker with pid: 26669 | |
[2020-01-23 16:44:35,058] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:44:35,059] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:44:35,087] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:44:35,103] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:44:35,114] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:44:35,126] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:44:35,139] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:44:36 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:44:36 +0530] [26556] [INFO] Worker exiting (pid: 26556) | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /health HTTP/1.1" 200 187 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /login HTTP/1.1" 308 263 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /login/ HTTP/1.1" 200 7874 "http://localhost:8080/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/css/font-awesome.min.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/select2/select2.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/css/flags/flags16.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/css/ab.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/dist/airflowDefaultTheme.46c317ab124fe627409d.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/js/jquery-latest.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/dist/main.40deac1caf807acd8abf.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/js/ab_filters.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/js/ab_actions.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/css/flash.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/pin_100.png HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/js/bootstrap.min.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/js/ab.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/select2/select2.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/dist/base.4e2f8a4738b0e8aee1a0.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:56 +0530] "GET /static/appbuilder/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/css/font-awesome.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:57 +0530] "POST /login/ HTTP/1.1" 302 209 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:57 +0530] "GET / HTTP/1.1" 302 217 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /home HTTP/1.1" 200 153854 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /static/loading.gif HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /static/dist/dataTables.bootstrap.min.css HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /static/dist/bootstrap-toggle.min.css HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /static/dist/d3.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /static/dist/jquery.dataTables.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /static/dist/bootstrap-toggle.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /static/dist/bootstrap3-typeahead.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /static/dist/dataTables.bootstrap.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /blocked?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 2 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /last_dagruns?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 2 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /dag_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 10434 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:58 +0530] "GET /task_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 33583 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:44:59 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:45:00,217] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags/example_dag_for_e2e.py | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "POST /paused?is_paused=true&dag_id=example-e2e-dag HTTP/1.1" 200 2 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:45:00,254] {dagbag.py:415} INFO - Filling up the DagBag from /Volumes/disk2/Projects/airflow/airflow/example_dags/example_bash_operator.py | |
[2020-01-23 16:45:00,278] {dagbag.py:415} INFO - Filling up the DagBag from /Volumes/disk2/Projects/airflow/airflow/example_dags/example_branch_operator.py | |
[2020-01-23 16:45:00,282] {dagbag.py:415} INFO - Filling up the DagBag from /Volumes/disk2/Projects/airflow/airflow/example_dags/example_branch_python_dop_operator_3.py | |
[2020-01-23 16:45:00,288] {dagbag.py:415} INFO - Filling up the DagBag from /Volumes/disk2/Projects/airflow/airflow/example_dags/example_complex.py | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "POST /paused?is_paused=true&dag_id=example_branch_operator HTTP/1.1" 200 2 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "POST /paused?is_paused=true&dag_id=example_branch_dop_operator_v3 HTTP/1.1" 200 2 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "POST /paused?is_paused=true&dag_id=example_complex HTTP/1.1" 200 2 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "POST /paused?is_paused=true&dag_id=example_bash_operator HTTP/1.1" 200 2 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "GET /home?showPaused=False HTTP/1.1" 200 58853 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "GET /static/dist/dataTables.bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/home?showPaused=False" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/home?showPaused=False" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "GET /static/dist/bootstrap-toggle.min.css HTTP/1.1" 304 0 "http://localhost:8080/home?showPaused=False" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "GET /blocked?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex HTTP/1.1" 200 2 "http://localhost:8080/home?showPaused=False" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "GET /last_dagruns?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex HTTP/1.1" 200 2 "http://localhost:8080/home?showPaused=False" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "GET /dag_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex HTTP/1.1" 200 2458 "http://localhost:8080/home?showPaused=False" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "GET /task_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex HTTP/1.1" 200 7921 "http://localhost:8080/home?showPaused=False" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:00 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:01 +0530] "GET /home?showPaused=True HTTP/1.1" 200 153889 "http://localhost:8080/home?showPaused=False" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:02 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:02 +0530] "GET /blocked?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 2 "http://localhost:8080/home?showPaused=True" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:02 +0530] "GET /last_dagruns?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 2 "http://localhost:8080/home?showPaused=True" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:02 +0530] "GET /dag_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 10434 "http://localhost:8080/home?showPaused=True" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:02 +0530] "GET /task_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 33583 "http://localhost:8080/home?showPaused=True" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:03 +0530] "GET /logout/ HTTP/1.1" 302 209 "http://localhost:8080/home?showPaused=True" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:03 +0530] "GET / HTTP/1.1" 302 217 "http://localhost:8080/home?showPaused=True" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:45:03,473] {decorators.py:128} WARNING - Access is Denied for: can_index on: Airflow | |
127.0.0.1 - - [23/Jan/2020:16:45:03 +0530] "GET /home HTTP/1.1" 302 305 "http://localhost:8080/home?showPaused=True" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:03 +0530] "GET /login/?next=http%3A%2F%2Flocalhost%3A8080%2Fhome HTTP/1.1" 200 8172 "http://localhost:8080/home?showPaused=True" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /login HTTP/1.1" 308 263 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:45:06 +0530] [26551] [INFO] Handling signal: ttin | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /login/ HTTP/1.1" 200 7874 "http://localhost:8080/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:45:06 +0530] [26769] [INFO] Booting worker with pid: 26769 | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/css/font-awesome.min.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/select2/select2.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/css/flags/flags16.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/css/ab.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/dist/main.40deac1caf807acd8abf.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/dist/airflowDefaultTheme.46c317ab124fe627409d.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/js/jquery-latest.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/js/ab_filters.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/js/ab_actions.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/css/flash.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/pin_100.png HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/js/bootstrap.min.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/js/ab.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/select2/select2.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/dist/base.4e2f8a4738b0e8aee1a0.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:06 +0530] "GET /static/appbuilder/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/css/font-awesome.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:45:07,499] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:45:07,500] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:45:07,524] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:45:07,539] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:45:07,548] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:45:07,560] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:45:07,577] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
127.0.0.1 - - [23/Jan/2020:16:45:07 +0530] "POST /login/ HTTP/1.1" 302 209 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:07 +0530] "GET / HTTP/1.1" 302 217 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:07 +0530] "GET /home HTTP/1.1" 200 153889 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:07 +0530] "GET /static/dist/bootstrap-toggle.min.css HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:07 +0530] "GET /static/loading.gif HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:07 +0530] "GET /static/dist/dataTables.bootstrap.min.css HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:07 +0530] "GET /static/dist/d3.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:07 +0530] "GET /static/dist/jquery.dataTables.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:07 +0530] "GET /static/dist/dataTables.bootstrap.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:07 +0530] "GET /static/dist/bootstrap3-typeahead.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:07 +0530] "GET /static/dist/bootstrap-toggle.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:08 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:08 +0530] "GET /blocked?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 2 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:08 +0530] "GET /last_dagruns?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 2 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:08 +0530] "GET /dag_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 10434 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:08 +0530] "GET /task_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 33583 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:45:08 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:45:08 +0530] [26557] [INFO] Worker exiting (pid: 26557) | |
127.0.0.1 - - [23/Jan/2020:16:45:09 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:09 +0530] "GET /connection/list/ HTTP/1.1" 200 89690 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:09 +0530] "GET /connection/add HTTP/1.1" 200 26514 "http://localhost:8080/connection/list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:10 +0530] "GET /static/dist/connectionForm.fe48cd98b3433f182780.js HTTP/1.1" 200 0 "http://localhost:8080/connection/add" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:10 +0530] "GET /static/appbuilder/select2/select2.png HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/select2/select2.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:10 +0530] "GET /static/appbuilder/select2/select2-spinner.gif HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/select2/select2.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:14 +0530] "POST /connection/add HTTP/1.1" 302 283 "http://localhost:8080/connection/add" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:15 +0530] "GET /connection/list/ HTTP/1.1" 200 91815 "http://localhost:8080/connection/add" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:15 +0530] "GET /connection/add HTTP/1.1" 200 26514 "http://localhost:8080/connection/list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:19 +0530] "POST /connection/add HTTP/1.1" 302 283 "http://localhost:8080/connection/add" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:20 +0530] "GET /connection/list/ HTTP/1.1" 200 93647 "http://localhost:8080/connection/add" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:20 +0530] "GET /connection/edit/38 HTTP/1.1" 200 27392 "http://localhost:8080/connection/list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:20 +0530] "GET /static/appbuilder/js/ab_keep_tab.js HTTP/1.1" 200 0 "http://localhost:8080/connection/edit/38" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:21 +0530] "GET /home HTTP/1.1" 200 153889 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:21 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:21 +0530] "GET /static/dist/dataTables.bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:21 +0530] "GET /static/dist/bootstrap-toggle.min.css HTTP/1.1" 304 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:22 +0530] "GET /blocked?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 234 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:22 +0530] "GET /dag_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 10434 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:22 +0530] "GET /last_dagruns?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 246 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:22 +0530] "GET /task_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 33584 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:22 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:23 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:27 +0530] "POST /connection/edit/38 HTTP/1.1" 302 283 "http://localhost:8080/connection/edit/38" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:27 +0530] "GET /connection/list/ HTTP/1.1" 200 93651 "http://localhost:8080/connection/edit/38" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9604 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/css/font-awesome.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/select2/select2.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/css/flags/flags16.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/css/ab.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/dist/airflowDefaultTheme.46c317ab124fe627409d.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/dist/main.40deac1caf807acd8abf.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/dist/bootstrap-toggle.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/css/tree.css HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/js/jquery-latest.js HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/js/ab_filters.js HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/js/ab_actions.js HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/css/flash.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/select2/select2.js HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.js HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/js/bootstrap.min.js HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/dist/base.4e2f8a4738b0e8aee1a0.js HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/js/ab.js HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/dist/bootstrap-toggle.min.js HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/dist/d3-tip.js HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/dist/d3.min.js HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/pin_100.png HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 304 0 "http://localhost:8080/static/appbuilder/css/font-awesome.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:28 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff HTTP/1.1" 304 0 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:30 +0530] "GET /connection/list/?_flt_0_conn_id=GRPC2_37568_92230 HTTP/1.1" 200 24268 "http://localhost:8080/connection/list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:31 +0530] "GET /connection/list/? HTTP/1.1" 200 93357 "http://localhost:8080/connection/list/?_flt_0_conn_id=GRPC2_37568_92230" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:32 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9759 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:32 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:32 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:33 +0530] "GET /connection/list/?_flt_0_conn_id=GCP1_21207_88206 HTTP/1.1" 200 24258 "http://localhost:8080/connection/list/?" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:37 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9762 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:37 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:37 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /login HTTP/1.1" 308 263 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /login/ HTTP/1.1" 200 7874 "http://localhost:8080/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/css/font-awesome.min.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/css/flags/flags16.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/select2/select2.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/css/ab.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/dist/airflowDefaultTheme.46c317ab124fe627409d.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/dist/main.40deac1caf807acd8abf.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/js/ab_filters.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/js/jquery-latest.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/js/ab_actions.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/css/flash.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/pin_100.png HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/js/bootstrap.min.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/js/ab.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/select2/select2.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/dist/base.4e2f8a4738b0e8aee1a0.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:38 +0530] "GET /static/appbuilder/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/css/font-awesome.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "POST /login/ HTTP/1.1" 302 209 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET / HTTP/1.1" 302 217 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /home HTTP/1.1" 200 154338 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /static/dist/dataTables.bootstrap.min.css HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /static/dist/bootstrap-toggle.min.css HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /static/loading.gif HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /static/dist/jquery.dataTables.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /static/dist/d3.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /static/dist/dataTables.bootstrap.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /static/dist/bootstrap-toggle.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /static/dist/bootstrap3-typeahead.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:45:39 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:45:39 +0530] [26816] [INFO] Booting worker with pid: 26816 | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /blocked?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 234 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /last_dagruns?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 246 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /dag_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 10434 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:39 +0530] "GET /task_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 33584 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:40 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:45:40,654] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:45:40,654] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:45:40,743] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:45:40,780] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:45:40,805] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:45:40,813] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:45:40,831] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
127.0.0.1 - - [23/Jan/2020:16:45:40 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9765 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:41 +0530] "GET /static/css/tree.css HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:41 +0530] "GET /static/dist/d3-tip.js HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:41 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:45:42 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:45:42 +0530] [26558] [INFO] Worker exiting (pid: 26558) | |
127.0.0.1 - - [23/Jan/2020:16:45:42 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9602 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:42 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:42 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:42 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:42 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:43 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9603 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:43 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:43 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:44 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9606 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:44 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:44 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:44 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9606 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:44 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:45 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:45 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9602 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:45 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:45 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:45 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:45 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:46 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9604 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:46 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:46 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:47 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9602 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:47 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:47 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:47 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:47 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:48 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9602 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:48 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:48 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:49 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9603 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:49 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:49 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:49 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:49 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:50 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9605 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:50 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:50 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:51 +0530] "GET /graph?dag_id=example-e2e-dag HTTP/1.1" 200 9450 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:51 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:51 +0530] "GET /static/css/graph.css HTTP/1.1" 200 0 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:51 +0530] "GET /static/dist/dagre-d3.min.js HTTP/1.1" 200 0 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:51 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:51 +0530] "GET /static/dist/graph.592c8f0adf5faeab454a.js HTTP/1.1" 200 0 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:51 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:51 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9605 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:51 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:52 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9614 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:52 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:53 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9612 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:53 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:53 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:53 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:53 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:57 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9902 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:57 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:45:57 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:01 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9921 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:01 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:01 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:01 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:01 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:02 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9915 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:02 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:02 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:02 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9917 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:03 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:03 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:04 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9920 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:04 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:04 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:04 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:04 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:05 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9919 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:05 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:05 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:05 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9919 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:05 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:05 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:06 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9921 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:06 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:06 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:06 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9921 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:06 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:07 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:12 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9915 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:12 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:46:12 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:46:12 +0530] [26854] [INFO] Booting worker with pid: 26854 | |
[2020-01-23 16:46:13,549] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:46:13,549] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:46:13,559] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:46:13,572] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:46:13,580] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:46:13,587] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:46:13,597] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:46:15 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:46:15 +0530] [26605] [INFO] Worker exiting (pid: 26605) | |
127.0.0.1 - - [23/Jan/2020:16:46:16 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9921 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:16 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:16 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:16 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:16 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:23 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9916 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:23 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:23 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:33 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9916 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:33 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:33 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:44 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10069 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:44 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:44 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:46:45 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:46:45 +0530] [26887] [INFO] Booting worker with pid: 26887 | |
[2020-01-23 16:46:45,986] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:46:45,986] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:46:45,997] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:46:46,011] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:46:46,018] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:46:46,025] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:46:46,034] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:46:47 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:46:47 +0530] [26669] [INFO] Worker exiting (pid: 26669) | |
127.0.0.1 - - [23/Jan/2020:16:46:49 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 10078 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:49 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:49 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:49 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:49 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:54 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10069 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:54 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:55 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 10075 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:55 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:55 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:55 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:46:55 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:00 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 10076 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:00 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:00 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:01 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:01 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:04 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9920 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:04 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:04 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:04 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:04 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:04 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9915 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:05 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:05 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:05 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9921 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:06 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:06 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:06 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9922 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:06 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:06 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:15 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9933 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:15 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:15 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:47:17 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:47:17 +0530] [26915] [INFO] Booting worker with pid: 26915 | |
[2020-01-23 16:47:18,632] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:47:18,632] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:47:18,661] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:47:18,682] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:47:18,695] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:47:18,706] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:47:18,722] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:47:19 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:47:19 +0530] [26769] [INFO] Worker exiting (pid: 26769) | |
127.0.0.1 - - [23/Jan/2020:16:47:20 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 9975 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:20 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:20 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:21 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:21 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:26 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 9968 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:26 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:26 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:36 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10117 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:36 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:47 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10117 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:47 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:47 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:47:50 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:47:50 +0530] [26916] [INFO] Booting worker with pid: 26916 | |
[2020-01-23 16:47:51,211] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:47:51,212] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:47:51,245] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:47:51,268] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:47:51,281] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:47:51,292] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:47:51,305] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:47:52 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:47:52 +0530] [26816] [INFO] Worker exiting (pid: 26816) | |
127.0.0.1 - - [23/Jan/2020:16:47:57 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10115 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:57 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:47:57 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:08 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10113 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:08 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:08 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:18 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10117 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:19 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:48:22 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:48:22 +0530] [26920] [INFO] Booting worker with pid: 26920 | |
[2020-01-23 16:48:23,416] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:48:23,416] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:48:23,445] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:48:23,465] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:48:23,477] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:48:23,489] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:48:23,502] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:48:24 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:48:24 +0530] [26854] [INFO] Worker exiting (pid: 26854) | |
127.0.0.1 - - [23/Jan/2020:16:48:28 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 10123 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:28 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:28 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:28 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:28 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:29 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10113 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:29 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:30 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 10122 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:30 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:30 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:30 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:30 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:31 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 10121 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:31 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:31 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:31 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:31 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:40 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10114 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:40 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:50 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10119 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:50 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:48:51 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:48:54 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:48:54 +0530] [26921] [INFO] Booting worker with pid: 26921 | |
[2020-01-23 16:48:55,682] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:48:55,683] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:48:55,698] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:48:55,740] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:48:55,751] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:48:55,768] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:48:55,782] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:48:57 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:48:57 +0530] [26887] [INFO] Worker exiting (pid: 26887) | |
127.0.0.1 - - [23/Jan/2020:16:49:01 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10115 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:01 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:01 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:12 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10115 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:12 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:12 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:22 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10116 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:22 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:22 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:49:27 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:49:27 +0530] [26922] [INFO] Booting worker with pid: 26922 | |
[2020-01-23 16:49:28,124] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:49:28,125] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:49:28,156] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:49:28,176] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:49:28,188] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:49:28,201] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:49:28,216] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:49:29 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:49:29 +0530] [26915] [INFO] Worker exiting (pid: 26915) | |
127.0.0.1 - - [23/Jan/2020:16:49:33 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10118 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:33 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:33 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:44 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10117 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:44 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:44 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:54 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10117 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:49:54 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:49:59 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:49:59 +0530] [26923] [INFO] Booting worker with pid: 26923 | |
[2020-01-23 16:50:00,357] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:50:00,358] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:50:00,368] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:50:00,382] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:50:00,390] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:50:00,396] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:50:00,405] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:50:01 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:50:01 +0530] [26916] [INFO] Worker exiting (pid: 26916) | |
127.0.0.1 - - [23/Jan/2020:16:50:05 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10116 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:05 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:05 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:16 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10117 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:16 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:16 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:26 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10115 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:26 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:50:32 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:50:32 +0530] [26924] [INFO] Booting worker with pid: 26924 | |
[2020-01-23 16:50:32,718] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:50:32,718] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:50:32,728] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:50:32,741] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:50:32,749] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:50:32,761] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:50:32,778] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:50:34 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:50:34 +0530] [26920] [INFO] Worker exiting (pid: 26920) | |
127.0.0.1 - - [23/Jan/2020:16:50:37 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10119 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:37 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:37 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:48 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10117 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:48 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:58 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10116 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:50:59 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:51:04 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:51:04 +0530] [26925] [INFO] Booting worker with pid: 26925 | |
[2020-01-23 16:51:05,080] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:51:05,080] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:51:05,091] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:51:05,103] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:51:05,111] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:51:05,117] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:51:05,130] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:51:06 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:51:06 +0530] [26921] [INFO] Worker exiting (pid: 26921) | |
127.0.0.1 - - [23/Jan/2020:16:51:09 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10118 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:51:09 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:51:09 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:51:20 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10116 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:51:20 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:51:31 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10117 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:51:31 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:51:36 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:51:36 +0530] [26926] [INFO] Booting worker with pid: 26926 | |
[2020-01-23 16:51:37,467] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:51:37,468] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:51:37,506] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:51:37,526] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:51:37,538] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:51:37,545] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:51:37,555] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:51:38 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:51:38 +0530] [26922] [INFO] Worker exiting (pid: 26922) | |
127.0.0.1 - - [23/Jan/2020:16:51:41 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10117 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:51:42 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:51:42 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:51:52 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10116 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:51:53 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:03 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10114 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:03 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:52:09 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:52:09 +0530] [26927] [INFO] Booting worker with pid: 26927 | |
[2020-01-23 16:52:09,919] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:52:09,919] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:52:09,973] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:52:09,993] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:52:10,004] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:52:10,017] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:52:10,031] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:52:11 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:52:11 +0530] [26923] [INFO] Worker exiting (pid: 26923) | |
127.0.0.1 - - [23/Jan/2020:16:52:14 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10116 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:14 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:14 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:25 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10119 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:25 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:35 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10115 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:36 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:36 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:52:41 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:52:41 +0530] [26928] [INFO] Booting worker with pid: 26928 | |
[2020-01-23 16:52:42,150] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:52:42,150] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:52:42,160] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:52:42,173] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:52:42,181] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:52:42,188] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:52:42,198] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:52:43 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:52:43 +0530] [26924] [INFO] Worker exiting (pid: 26924) | |
127.0.0.1 - - [23/Jan/2020:16:52:46 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10113 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:46 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:57 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10117 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:57 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:52:57 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:53:08 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10116 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:53:08 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:53:13 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:53:13 +0530] [26929] [INFO] Booting worker with pid: 26929 | |
[2020-01-23 16:53:14,554] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:53:14,555] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:53:14,598] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:53:14,623] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:53:14,635] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:53:14,647] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:53:14,664] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:53:15 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:53:15 +0530] [26925] [INFO] Worker exiting (pid: 26925) | |
127.0.0.1 - - [23/Jan/2020:16:53:19 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10115 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:53:19 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:53:19 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:53:30 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10114 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:53:30 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:53:41 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10116 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:53:41 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:53:41 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:53:46 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:53:46 +0530] [26930] [INFO] Booting worker with pid: 26930 | |
[2020-01-23 16:53:46,870] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:53:46,870] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:53:46,880] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:53:46,894] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:53:46,903] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:53:46,909] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:53:46,919] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:53:48 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:53:48 +0530] [26926] [INFO] Worker exiting (pid: 26926) | |
127.0.0.1 - - [23/Jan/2020:16:53:51 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10118 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:53:52 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:02 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10115 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:02 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:03 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:13 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10115 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:13 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:54:18 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:54:18 +0530] [26931] [INFO] Booting worker with pid: 26931 | |
[2020-01-23 16:54:19,243] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:54:19,243] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:54:19,254] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:54:19,267] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:54:19,274] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:54:19,280] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:54:19,290] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:54:20 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:54:20 +0530] [26927] [INFO] Worker exiting (pid: 26927) | |
127.0.0.1 - - [23/Jan/2020:16:54:24 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10116 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:24 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:35 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10117 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:35 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:35 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:46 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10116 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:46 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:54:50 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:54:50 +0530] [26932] [INFO] Booting worker with pid: 26932 | |
[2020-01-23 16:54:51,635] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:54:51,636] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:54:51,646] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:54:51,660] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:54:51,668] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:54:51,675] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:54:51,684] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:54:53 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:54:53 +0530] [26928] [INFO] Worker exiting (pid: 26928) | |
127.0.0.1 - - [23/Jan/2020:16:54:57 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10116 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:57 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:54:57 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:55:08 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10115 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:55:08 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:55:19 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10118 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:55:19 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:55:23 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:55:23 +0530] [26934] [INFO] Booting worker with pid: 26934 | |
[2020-01-23 16:55:24,033] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:55:24,033] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:55:24,081] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:55:24,100] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:55:24,111] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:55:24,123] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:55:24,138] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:55:25 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:55:25 +0530] [26929] [INFO] Worker exiting (pid: 26929) | |
127.0.0.1 - - [23/Jan/2020:16:55:30 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10115 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:55:30 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:55:30 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:55:41 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10114 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:55:41 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:55:52 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10114 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:55:52 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:55:52 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:55:55 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:55:55 +0530] [26935] [INFO] Booting worker with pid: 26935 | |
[2020-01-23 16:55:56,377] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:55:56,377] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:55:56,388] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:55:56,401] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:55:56,409] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:55:56,418] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:55:56,432] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:55:57 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:55:57 +0530] [26930] [INFO] Worker exiting (pid: 26930) | |
127.0.0.1 - - [23/Jan/2020:16:56:03 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10115 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:03 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:14 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10117 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:14 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:25 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10118 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:25 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:25 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:26 +0530] "GET /graph?dag_id=example-e2e-dag HTTP/1.1" 200 9884 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:26 +0530] "GET /static/css/graph.css HTTP/1.1" 200 0 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:26 +0530] "GET /static/dist/dagre-d3.min.js HTTP/1.1" 200 0 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:26 +0530] "GET /static/dist/graph.592c8f0adf5faeab454a.js HTTP/1.1" 200 0 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:26 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:56:28 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:56:28 +0530] [26949] [INFO] Booting worker with pid: 26949 | |
[2020-01-23 16:56:29,016] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:56:29,016] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:56:29,122] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:56:29,143] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:56:29,155] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:56:29,166] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:56:29,180] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:56:30 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:56:30 +0530] [26931] [INFO] Worker exiting (pid: 26931) | |
127.0.0.1 - - [23/Jan/2020:16:56:57 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 10121 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:57 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:57 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:58 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:56:58 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
[2020-01-23 16:57:00 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:57:00 +0530] [26965] [INFO] Booting worker with pid: 26965 | |
[2020-01-23 16:57:01,894] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:57:01,895] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:57:01,925] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:57:01,956] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:57:01,974] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:57:01,987] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:57:02,020] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:57:03 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:57:03 +0530] [26932] [INFO] Worker exiting (pid: 26932) | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /login HTTP/1.1" 308 263 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /login/ HTTP/1.1" 200 7874 "http://localhost:8080/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/css/font-awesome.min.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/select2/select2.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/css/ab.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/css/flags/flags16.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/js/ab_filters.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/dist/main.40deac1caf807acd8abf.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/js/jquery-latest.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/dist/airflowDefaultTheme.46c317ab124fe627409d.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/js/ab_actions.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/css/flash.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/pin_100.png HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/js/bootstrap.min.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/select2/select2.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/js/ab.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/dist/base.4e2f8a4738b0e8aee1a0.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:15 +0530] "GET /static/appbuilder/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/css/font-awesome.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:16 +0530] "POST /login/ HTTP/1.1" 302 209 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:16 +0530] "GET / HTTP/1.1" 302 217 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:16 +0530] "GET /home HTTP/1.1" 200 154338 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:16 +0530] "GET /static/dist/dataTables.bootstrap.min.css HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:16 +0530] "GET /static/dist/bootstrap-toggle.min.css HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:16 +0530] "GET /static/loading.gif HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:16 +0530] "GET /static/dist/jquery.dataTables.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:16 +0530] "GET /static/dist/d3.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:16 +0530] "GET /static/dist/dataTables.bootstrap.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:16 +0530] "GET /static/dist/bootstrap-toggle.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:16 +0530] "GET /static/dist/bootstrap3-typeahead.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:17 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:17 +0530] "GET /blocked?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 467 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:17 +0530] "GET /last_dagruns?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 492 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:17 +0530] "GET /dag_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 10434 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:17 +0530] "GET /task_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 33584 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:18 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:18 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10114 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:18 +0530] "GET /static/dist/bootstrap-toggle.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:18 +0530] "GET /static/css/tree.css HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:18 +0530] "GET /static/dist/d3-tip.js HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:18 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:19 +0530] "GET /tree?dag_id=example-e2e-dag HTTP/1.1" 200 10114 "http://localhost:8080/tree?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:19 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /login HTTP/1.1" 308 263 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /login/ HTTP/1.1" 200 7874 "http://localhost:8080/login" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/css/font-awesome.min.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/select2/select2.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/css/flags/flags16.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/css/ab.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/dist/airflowDefaultTheme.46c317ab124fe627409d.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/dist/main.40deac1caf807acd8abf.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/js/jquery-latest.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/js/ab_filters.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/css/flash.css HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/js/ab_actions.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/pin_100.png HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/js/bootstrap.min.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/datepicker/bootstrap-datepicker.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/js/ab.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/select2/select2.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/dist/base.4e2f8a4738b0e8aee1a0.js HTTP/1.1" 200 0 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:23 +0530] "GET /static/appbuilder/fonts/fontawesome-webfont.woff2?v=4.7.0 HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/css/font-awesome.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "POST /login/ HTTP/1.1" 302 209 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET / HTTP/1.1" 302 217 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /home HTTP/1.1" 200 154338 "http://localhost:8080/login/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /static/dist/dataTables.bootstrap.min.css HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /static/loading.gif HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /static/dist/bootstrap-toggle.min.css HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /static/dist/d3.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /static/dist/jquery.dataTables.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /static/dist/dataTables.bootstrap.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /static/dist/bootstrap-toggle.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /static/dist/bootstrap3-typeahead.min.js HTTP/1.1" 200 0 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /blocked?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 467 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /last_dagruns?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 492 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /dag_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 10434 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:24 +0530] "GET /task_stats?dag_ids=example-e2e-dag,example_bash_operator,example_branch_dop_operator_v3,example_branch_operator,example_complex,example_external_task_marker_child,example_external_task_marker_parent,example_http_operator,example_passing_params_via_test_command,example_pig_operator,example_python_operator,example_short_circuit_operator,example_skip_dag,example_subdag_operator,example_trigger_controller_dag,example_trigger_target_dag,example_xcom,latest_only,latest_only_with_trigger,test_utils,tutorial HTTP/1.1" 200 33584 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:25 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:25 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff HTTP/1.1" 200 0 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:26 +0530] "GET /variable/list/ HTTP/1.1" 200 16824 "http://localhost:8080/home" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:26 +0530] "GET /variable/add HTTP/1.1" 200 14269 "http://localhost:8080/variable/list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:27 +0530] "POST /variable/add HTTP/1.1" 302 279 "http://localhost:8080/variable/add" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:28 +0530] "GET /variable/list/ HTTP/1.1" 200 20450 "http://localhost:8080/variable/add" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:28 +0530] "GET /tree?dag_id=example-e2e-dag&root= HTTP/1.1" 200 10121 "http://localhost:8080/graph?dag_id=example-e2e-dag" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:28 +0530] "GET /static/appbuilder/css/bootstrap.min.css HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:28 +0530] "GET /static/loading.gif HTTP/1.1" 304 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:28 +0530] "GET /static/appbuilder/fonts/glyphicons-halflings-regular.woff2 HTTP/1.1" 404 3870 "http://localhost:8080/static/appbuilder/css/bootstrap.min.css" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:28 +0530] "GET /static/pin_32.png HTTP/1.1" 200 0 "http://localhost:8080/tree?dag_id=example-e2e-dag&root=" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:28 +0530] "GET /variable/add HTTP/1.1" 200 14269 "http://localhost:8080/variable/list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:29 +0530] "POST /variable/add HTTP/1.1" 302 279 "http://localhost:8080/variable/add" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:29 +0530] "GET /variable/list/ HTTP/1.1" 200 21931 "http://localhost:8080/variable/add" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:30 +0530] "GET /variable/edit/1 HTTP/1.1" 200 14868 "http://localhost:8080/variable/list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:30 +0530] "GET /static/appbuilder/js/ab_keep_tab.js HTTP/1.1" 200 0 "http://localhost:8080/variable/edit/1" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:31 +0530] "POST /variable/edit/1 HTTP/1.1" 302 279 "http://localhost:8080/variable/edit/1" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:31 +0530] "GET /variable/list/ HTTP/1.1" 200 21960 "http://localhost:8080/variable/edit/1" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:32 +0530] "GET /variable/delete/2 HTTP/1.1" 302 279 "http://localhost:8080/variable/list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:32 +0530] "GET /variable/list/ HTTP/1.1" 200 20479 "http://localhost:8080/variable/list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:33 +0530] "GET /variable/delete/1 HTTP/1.1" 302 279 "http://localhost:8080/variable/list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
127.0.0.1 - - [23/Jan/2020:16:57:33 +0530] "GET /variable/list/ HTTP/1.1" 200 17118 "http://localhost:8080/variable/list/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_5) AppleWebKit/537.36 (KHTML, like Gecko) Cypress/3.8.2 Chrome/78.0.3904.130 Electron/7.1.7 Safari/537.36" | |
[2020-01-23 16:57:34 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:57:34 +0530] [26980] [INFO] Booting worker with pid: 26980 | |
[2020-01-23 16:57:35,356] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:57:35,357] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:57:35,398] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:57:35,416] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:57:35,427] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:57:35,438] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:57:35,466] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:57:36 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:57:36 +0530] [26934] [INFO] Worker exiting (pid: 26934) | |
[2020-01-23 16:58:06 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:58:06 +0530] [26988] [INFO] Booting worker with pid: 26988 | |
[2020-01-23 16:58:07,345] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:58:07,345] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:58:07,355] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:58:07,368] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:58:07,375] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:58:07,381] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:58:07,391] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:58:08 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:58:08 +0530] [26935] [INFO] Worker exiting (pid: 26935) | |
[2020-01-23 16:58:39 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:58:39 +0530] [26989] [INFO] Booting worker with pid: 26989 | |
[2020-01-23 16:58:39,709] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:58:39,709] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:58:39,720] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:58:39,733] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:58:39,740] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:58:39,747] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:58:39,756] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:58:41 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:58:41 +0530] [26949] [INFO] Worker exiting (pid: 26949) | |
[2020-01-23 16:59:11 +0530] [26551] [INFO] Handling signal: ttin | |
[2020-01-23 16:59:11 +0530] [26990] [INFO] Booting worker with pid: 26990 | |
[2020-01-23 16:59:12,056] {executor_loader.py:59} INFO - Using executor SequentialExecutor | |
[2020-01-23 16:59:12,056] {dagbag.py:415} INFO - Filling up the DagBag from /Users/imac/airflow/dags | |
[2020-01-23 16:59:12,067] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_gcs.py", line 26, in <module> | |
from airflow.operators.gcs_to_gcs import GCSSynchronizeBuckets | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_gcs.py", line 26, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:59:12,080] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_postgres_to_gcs.py", line 23, in <module> | |
from airflow.operators.postgres_to_gcs import PostgresToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/postgres_to_gcs.py", line 28, in <module> | |
from airflow.operators.sql_to_gcs import BaseSQLToGCSOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/sql_to_gcs.py", line 30, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:59:12,088] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_papermill_operator.py", line 22, in <module> | |
import scrapbook as sb | |
ModuleNotFoundError: No module named 'scrapbook' | |
[2020-01-23 16:59:12,094] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_bq.py", line 24, in <module> | |
from airflow.operators.gcs_to_bq import GCSToBigQueryOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_bq.py", line 26, in <module> | |
from airflow.gcp.hooks.bigquery import BigQueryHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/bigquery.py", line 30, in <module> | |
from googleapiclient.discovery import build | |
ModuleNotFoundError: No module named 'googleapiclient' | |
[2020-01-23 16:59:12,104] {dagbag.py:258} ERROR - Failed to import: /Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py | |
Traceback (most recent call last): | |
File "/Volumes/disk2/Projects/airflow/airflow/models/dagbag.py", line 255, in process_file | |
loader.exec_module(m) | |
File "<frozen importlib._bootstrap_external>", line 728, in exec_module | |
File "<frozen importlib._bootstrap>", line 219, in _call_with_frames_removed | |
File "/Volumes/disk2/Projects/airflow/airflow/example_dags/example_gcs_to_sftp.py", line 26, in <module> | |
from airflow.operators.gcs_to_sftp import GCSToSFTPOperator | |
File "/Volumes/disk2/Projects/airflow/airflow/operators/gcs_to_sftp.py", line 27, in <module> | |
from airflow.gcp.hooks.gcs import GCSHook | |
File "/Volumes/disk2/Projects/airflow/airflow/gcp/hooks/gcs.py", line 32, in <module> | |
from google.cloud import storage | |
ModuleNotFoundError: No module named 'google' | |
[2020-01-23 16:59:13 +0530] [26551] [INFO] Handling signal: ttou | |
[2020-01-23 16:59:13 +0530] [26965] [INFO] Worker exiting (pid: 26965) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment