-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix missing dependencies #1290
Fix missing dependencies #1290
Conversation
I'm not sure what's going on here, because So I'm not sure what's going on here... :-\ Was this a "new" Vagrant box? |
This solution is works for me. |
@arikfr Yes, this box is new one. So, I tried again But I got error similar to before error :-( $ ./bin/vagrant_ctl.sh start
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Checking if box 'redash/dev' is up to date...
==> default: Couldn't find Cheffile at ./Cheffile.
==> default: Machine already provisioned. Run `vagrant provision` or use the `--provision`
==> default: flag to force provisioning. Provisioners marked to run always will still run.
12:25:36 web.1 | started with pid 1972
12:25:36 worker.1 | started with pid 1973
12:25:37 worker.1 | [2016-10-08 12:25:37,020][PID:1977][INFO][requests.packages.urllib3.connectionpool] Starting new HTTP connection (1): metadata.google.internal
12:25:37 worker.1 | [2016-10-08 12:25:37,042][PID:1977][WARNING][redash.query_runner] BigQueryGCE query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 worker.1 | [2016-10-08 12:25:37,179][PID:1977][WARNING][redash.query_runner] GoogleSpreadsheet query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 web.1 | [2016-10-08 12:25:37,375][PID:1975][INFO][requests.packages.urllib3.connectionpool] Starting new HTTP connection (1): metadata.google.internal
12:25:37 web.1 | [2016-10-08 12:25:37,384][PID:1975][WARNING][redash.query_runner] BigQueryGCE query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 web.1 | [2016-10-08 12:25:37,397][PID:1975][WARNING][redash.query_runner] GoogleSpreadsheet query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 worker.1 | [2016-10-08 12:25:37,404][PID:1977][WARNING][redash.query_runner] InfluxDB query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 worker.1 | [2016-10-08 12:25:37,429][PID:1977][WARNING][redash.query_runner] Presto query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 worker.1 | [2016-10-08 12:25:37,433][PID:1977][WARNING][redash.query_runner] Hive query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 worker.1 | [2016-10-08 12:25:37,448][PID:1977][WARNING][redash.query_runner] Vertica query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 worker.1 | [2016-10-08 12:25:37,452][PID:1977][WARNING][redash.query_runner] TreasureData query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 web.1 | [2016-10-08 12:25:37,453][PID:1975][WARNING][redash.query_runner] InfluxDB query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 web.1 | [2016-10-08 12:25:37,468][PID:1975][WARNING][redash.query_runner] Presto query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 worker.1 | [2016-10-08 12:25:37,469][PID:1977][WARNING][redash.query_runner] Microsoft SQL Server query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 web.1 | [2016-10-08 12:25:37,474][PID:1975][WARNING][redash.query_runner] Hive query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 web.1 | [2016-10-08 12:25:37,487][PID:1975][WARNING][redash.query_runner] Vertica query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 web.1 | [2016-10-08 12:25:37,496][PID:1975][WARNING][redash.query_runner] TreasureData query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 web.1 | [2016-10-08 12:25:37,518][PID:1975][WARNING][redash.query_runner] Microsoft SQL Server query runner enabled but not supported, not registering. Either disable or install missing dependencies.
12:25:37 worker.1 | [2016-10-08 12:25:37,654: WARNING/MainProcess] /usr/local/lib/python2.7/dist-packages/celery/apps/worker.py:161: CDeprecationWarning:
12:25:37 worker.1 | Starting from version 3.2 Celery will refuse to accept pickle by default.
12:25:37 worker.1 | The pickle serializer is a security concern as it may give attackers
12:25:37 worker.1 | the ability to execute any command. It's important to secure
12:25:37 worker.1 | your broker from unauthorized access when using pickle, so we think
12:25:37 worker.1 | that enabling pickle should require a deliberate action and not be
12:25:37 worker.1 | the default choice.
12:25:37 worker.1 | If you depend on pickle then you should set a setting to disable this
12:25:37 worker.1 | warning and to be sure that everything will continue working
12:25:37 worker.1 | when you upgrade to Celery 3.2::
12:25:37 worker.1 | CELERY_ACCEPT_CONTENT = ['pickle', 'json', 'msgpack', 'yaml']
12:25:37 worker.1 | You must only enable the serializers that you will actually use.
12:25:37 worker.1 | warnings.warn(CDeprecationWarning(W_PICKLE_DEPRECATED))
12:25:37 web.1 | Traceback (most recent call last):
12:25:37 web.1 | File "./manage.py", line 10, in <module>
12:25:37 web.1 | from redash.wsgi import app
12:25:37 web.1 | File "/opt/redash/current/redash/wsgi.py", line 3, in <module>
12:25:37 web.1 | app = create_app()
12:25:37 web.1 | File "/opt/redash/current/redash/__init__.py", line 76, in create_app
12:25:37 web.1 | from redash import handlers
12:25:37 web.1 | File "/opt/redash/current/redash/handlers/__init__.py", line 5, in <module>
12:25:37 web.1 | from redash.authentication.org_resolving import current_org
12:25:37 web.1 | File "/opt/redash/current/redash/authentication/__init__.py", line 11, in <module>
12:25:37 web.1 | from redash.authentication import google_oauth, saml_auth, remote_user_auth
12:25:37 web.1 | File "/opt/redash/current/redash/authentication/google_oauth.py", line 5, in <module>
12:25:37 web.1 | from flask_oauthlib.client import OAuth
12:25:37 web.1 | File "/usr/local/lib/python2.7/dist-packages/flask_oauthlib/client.py", line 12, in <module>
12:25:37 web.1 | import oauthlib.oauth1
12:25:37 web.1 | ImportError: No module named oauthlib.oauth1
12:25:37 web.1 | process terminated
12:25:37 system | sending SIGTERM to all processes
12:25:37 system | sending SIGTERM to pid 1973
12:25:37 worker.1 | process terminated |
This is an issue with the Vagrant box... I opened #1480 to track the work on the new dev guide & probably new Vagrant box. |
Sorry for late reply. I will track #1480. |
Step to reproduce the problem.