在AWS ElasticBeanstalk上设置散景服务器

时间:2017-09-14 17:19:16

标签: python python-3.x web-applications bokeh amazon-elastic-beanstalk

我是一名有兴趣建立一个非常简单的科学网络应用程序的AWS初学者。我已经确定bokeh server是一个很好的平台。就实际编码而言,我的代码与"Sliders" demosource code here的差异不会太大。我可以在本地成功运行sliders.py

我还配置了一个演示AWS Elastic Beanstalk应用程序。我使用“64位Debian jessie v2.7.3运行Python 3.4(预配置 - Docker)。我已经成功上传并部署了来自Elastic Beanstalk samplesdocker-python-v1.zip

我陷入困境的是将两个运行的Bokeh服务器组合在Elastic Beanstalk上。不幸的是,我正在阅读AWS和散景服务器文档,我无法在线找到其他资源来合并这两者。 如何从Elastic Beanstalk启动散景服务器应用程序?具体来说,如何构建 .zip 程序包,该程序包已准备好在默认情况下上传Elastic Beanstalk Python Docker?

1 个答案:

答案 0 :(得分:-1)

经过大量的反复试验,我终于能够使它工作。我创建了一个git repo,其中包含您需要入门的所有内容,但是对于生产来说肯定是不够的:

https://github.com/denson/bokeh_beanstalk_helloworld

Docker文件:

# docker build -t standalone_embed .
# docker image ls
# docker run -p 80:5006 standalone_embed

# List all containers (only IDs) docker ps -aq.
# Stop all running containers. docker stop $(docker ps -aq)
# Remove all containers. docker rm $(docker ps -aq)
# Remove all images. docker rmi $(docker images -q)


FROM continuumio/miniconda3

# Set the ENTRYPOINT to use bash
# (this is also where you’d set SHELL,
# if your version of docker supports this)
ENTRYPOINT [ “/bin/bash”, “-c” ]

EXPOSE 5006

COPY . /
WORKDIR /

# Conda supports delegating to pip to install dependencies
# that aren’t available in anaconda or need to be compiled
# for other reasons. In our case, we need psycopg compiled
# with SSL support. These commands install prereqs necessary
# to build psycopg.
RUN apt-get update && apt-get install -y \
 libpq-dev \
 build-essential \
&& rm -rf /var/lib/apt/lists/*

# Install pyviz
# http://pyviz.org/installation.html

# update conda and install pyviz
RUN conda update conda
RUN conda update conda
# RUN conda install -c pyviz/label/dev pyviz

# install flask and Bokeh

RUN conda install -c conda-forge bokeh
RUN conda install -c anaconda flask
RUN conda install -c anaconda pandas



# We set ENTRYPOINT, so while we still use exec mode, we don’t
# explicitly call /bin/bash
ENTRYPOINT ["python", "./standalone_embed.py"]

# https://github.com/lukauskas/docker-bokeh
# https://github.com/bokeh/bokeh/issues/7724

standalone_embed.py

from bokeh.layouts import column
from bokeh.models import ColumnDataSource, Slider
from bokeh.plotting import figure
from bokeh.server.server import Server
from bokeh.themes import Theme

from bokeh.sampledata.sea_surface_temperature import sea_surface_temperature

def modify_doc(doc):
        df = sea_surface_temperature.copy()
        source = ColumnDataSource(data=df)

        plot = figure(x_axis_type='datetime', y_range=(0, 25), y_axis_label='Temperature (Celsius)',
                                    title="Sea Surface Temperature at 43.18, -70.43")
        plot.line('time', 'temperature', source=source)

        def callback(attr, old, new):
                if new == 0:
                        data = df
                else:
                        data = df.rolling('{0}D'.format(new)).mean()
                source.data = ColumnDataSource(data=data).data

        slider = Slider(start=0, end=30, value=0, step=1, title="Smoothing by N Days")
        slider.on_change('value', callback)

        doc.add_root(column(slider, plot))

        doc.theme = Theme(filename="theme.yaml")

# Setting num_procs here means we can't touch the IOLoop before now, we must
# let Server handle that. If you need to explicitly handle IOLoops then you
# will need to use the lower level BaseServer class.
# To allow connections only from a trusted domain set allow_websocket_origin to the domain
# server = Server({'/': modify_doc}, num_procs=1, address="0.0.0.0", port=5006, allow_websocket_origin=["flaskhelloworld-env.gktytvudba.us-east-2.elasticbeanstalk.com"])
# to allow connections from anywhere
server = Server({'/': modify_doc}, num_procs=1, address="0.0.0.0", port=5006, allow_websocket_origin=["*"])

server.start()

if __name__ == '__main__':
        print('Opening Bokeh application on http://0.0.0.0:5006/')

        server.io_loop.add_callback(server.show, "/")
        server.io_loop.start()
相关问题