随笔分类 -  circus

circus && web comsole docker-compose 独立部署web console 的一个bug
摘要:如果直接使用以下的docker-compose 文件部署会有通过多播通信获取endpoint 异常的问题(circus 在stats endpoint 获取少了一个c) 这个问题是部分网络情况下会出现(多播包异常) version: "3" services: circus: image: dalo 阅读全文

posted @ 2019-06-12 08:52 荣锋亮 阅读(397) 评论(0) 推荐(0) 编辑

circus security 来自官方的安全建议
摘要:转自:https://circus.readthedocs.io/en/latest/design/security/ Circus is built on the top of the ZeroMQ library and comes with no security at all in its 阅读全文

posted @ 2019-06-11 14:00 荣锋亮 阅读(242) 评论(0) 推荐(0) 编辑

circus && web comsole docker-compose 独立部署
摘要:问题的根本原因是web console 的bug(实际上还是python 对于依赖版本出来不明确) circus 进程docker 镜像 dockerfile FROM python:slim-stretch LABEL AUTHOR="dalongrong" LABEL EMAIL="114159 阅读全文

posted @ 2019-06-11 13:54 荣锋亮 阅读(431) 评论(0) 推荐(0) 编辑

circus web console 依赖tornado>3.2 无法访问的bug
摘要:circus web console 是一个很不错的web 监控circus 工具,但是对于高版本一直存在一个bug 信息如下 Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/tornad 阅读全文

posted @ 2019-06-10 21:09 荣锋亮 阅读(430) 评论(0) 推荐(0) 编辑

circus 做为批处理的守护进程
摘要:circus 是集成了zeromq,使用python编写的一个进程以及socket 管理工具,使用circus 的进程管理,我们可以用来进行批任务的 处理,同时又能保证任务的准确 项目使用docker+ docker-compose 运行 案例 简单原理说明 就是一个简单的worker 分了三个,通 阅读全文

posted @ 2019-06-10 19:26 荣锋亮 阅读(993) 评论(0) 推荐(0) 编辑

circus 架构
摘要:转自官方文档:https://circus.readthedocs.io/en/latest/design/architecture/ Overall architecture Circus is composed of a main process called circusd which tak 阅读全文

posted @ 2019-06-10 18:56 荣锋亮 阅读(319) 评论(0) 推荐(0) 编辑

circus docker image web 运行异常问题的解决
摘要:经过查看官方文档,因为我使用的是python 较高版本,存在兼容问题,解决方法 修改基础镜像版本 代码如下: FROM python:2.7-slim-stretch LABEL AUTHOR="dalongrong" LABEL EMAIL="1141591465@qq.com" RUN apt- 阅读全文

posted @ 2019-06-10 10:23 荣锋亮 阅读(227) 评论(0) 推荐(0) 编辑

circus 进程以及socket 管理工具&&docker运行
摘要:circus 是由mozilla 团队开发基于python 以及zeromq 的进程以及socket 管理的工具,类似supervisord 但是比supervisord 更灵活方便 来自官方的使用比较 supervisord的 来自circus 的 docker 集成shiyong 搜索docke 阅读全文

posted @ 2019-06-10 09:49 荣锋亮 阅读(738) 评论(0) 推荐(0) 编辑

a list of frequently asked questions about Circus
摘要:转自:https://circus.readthedocs.io/en/latest/faq/,可以帮助我们了解circus 的使用,以及问题解决 How does Circus stack compare to a classical stack? In a classical WSGI stac 阅读全文

posted @ 2019-06-10 09:29 荣锋亮 阅读(284) 评论(0) 推荐(0) 编辑

导航