一 官方 airflow官方分布式部署结构图 airflow进程 webserver scheduler flower(非必须) worker airflow缺点 scheduler单点 通过在scheduler的dags目录变动dag文件来提交流程 官方分布式部署方案 多个webserver 多个 ...
分类:
其他好文 时间:
2019-02-20 09:51:48
阅读次数:
154
Suppose a bank has N windows open for service. There is a yellow line in front of the windows which devides the waiting area into two parts. The rules ...
分类:
其他好文 时间:
2019-02-15 17:25:00
阅读次数:
196
1101 Quick Sort (25 分) There is a classical process named partition in the famous quick sort algorithm. In this process we typically choose one elemen ...
分类:
其他好文 时间:
2019-02-14 20:38:58
阅读次数:
84
SE2205: Algorithms and Data Structures for Object-Oriented DesignLab Assignment 1Assigned: Jan 16, 2019; Due: Feb 13, 2019 @ 10:00 a.m.If you are work ...
分类:
其他好文 时间:
2019-02-09 21:05:12
阅读次数:
124
[TOC] Python 模块(一) 模块的引用方式 1. import 语句 执行对应文件 引入变量名 import time 导入时间模块,也可以同时导入多个模块,用逗号隔开 2. from ... import 模块名 from my_model import main 3. from ... ...
分类:
编程语言 时间:
2019-02-04 18:09:16
阅读次数:
200
Interface declares operations, not data structure Implementation is hidden from client (encapsulation) Use features of programming language to ensure ...
分类:
其他好文 时间:
2019-01-28 14:10:07
阅读次数:
201
1074 Reversing Linked List (25 分) Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For e ...
分类:
其他好文 时间:
2019-01-28 01:05:58
阅读次数:
118
为什么使用消息队列 其实就是问问你消息队列都有哪些使用场景,然后你项目里具体是什么场景,说说你在这个场景里用消息队列是什么? 面试官问你这个问题,期望的一个回答是说,你们公司有个什么业务场景,这个业务场景有个什么技术挑战,如果不用 MQ 可能会很麻烦,但是你现在用了 MQ 之后带给了你很多的好处。 ...
分类:
其他好文 时间:
2019-01-24 13:16:38
阅读次数:
149
def regist(): name=input('name>>>:') pwd=input('pwd>>>:') dic={} dic[name] = pwd with open('xx','w',encoding='utf-8') as f: json.dump(dic,f,ensure_asc... ...
分类:
其他好文 时间:
2019-01-23 23:21:15
阅读次数:
234
This chapter concerns creating and destorying objects : when and how to create them, when and how to avoid creating them, how to ensure they are desto ...
分类:
编程语言 时间:
2019-01-21 19:33:55
阅读次数:
183