hive 建表语法 内部表: create table fzname (id int,name string,age int,tel string) ROW FORMAT DELIMITED FIELDS TERMINATED BY ',' STORED AS TEXTFILE; 1 2 3 4 5 ...
分类:
其他好文 时间:
2020-10-18 16:40:39
阅读次数:
25
前置条件: qputenv("QT_WAYLAND_SHELL_INTEGRATION", "kwayland-shell"); QSurfaceFormat format;format.setRenderableType(QSurfaceFormat::OpenGLES); format.setD ...
分类:
其他好文 时间:
2020-10-14 20:38:06
阅读次数:
24
Dynamic stream handling 动态流处理 Dependency To use Akka Streams, add the module to your project: val AkkaVersion = "2.6.9" libraryDependencies += "com.ty ...
分类:
其他好文 时间:
2020-10-12 20:14:08
阅读次数:
21
引子: 最近面试被问到了UI自动化,好久没做了,今天回来复习下,发现目前流行一种po模式,整体来说非常像django的MTV模式,有的分2层有的分3层,根据自己项目的需要都是可以的。 思路: 1 将selenium各种常用的元素定位方法以及对元素的操作2次封装,组成公共组件库,base_page 2 ...
分类:
其他好文 时间:
2020-10-10 17:35:22
阅读次数:
20
关键字:工具层devops很难为jupyter这样的一个东西定性,它最初只是一个增强的pythonrepl环境,后来变成了CS架构并支持了多语言,S为语言kernel,C为notebook,console,qtconsole这样的东西,可以分开部署使用。IPython3.xwasthelastmonolithicreleaseofIPython,containingthenotebookserve
分类:
编程语言 时间:
2020-10-08 19:12:52
阅读次数:
32
class Employee(models.Model): name = models.CharField(max_length=16) age = models.IntegerField() salary = models.IntegerField() province = models.Char ...
分类:
数据库 时间:
2020-10-08 18:23:38
阅读次数:
19
需要培养的能力: 大体有两大方向。一是对工具的熟练掌握,如操作系统、网络、IO、编程语言等;另一个是用代码为现实问题生成解决方案的能力,这其中最重要的是抽象能力。 经验: 1.调第三方的的服务的时候切记不能直接调用,为了扩展性要使用自己定义封装.(需改正)例子:我要使用支付宝的sdk调用支付宝的支付 ...
分类:
其他好文 时间:
2020-10-08 18:17:02
阅读次数:
13
介绍 RabbitMQ是实现了高级消息队列协议(AMQP)的开源消息代理软件。主要用来做异步处理、应用解耦、流量削峰、日志处理等等方面的处理。 特点 可靠性: RabbitMQ使用一些机制来保证可靠性, 如持久化、传输确认及发布确认等。 灵活的路由 : 在消息进入队列之前,通过交换器来路由消息。对于... ...
分类:
其他好文 时间:
2020-10-07 20:24:27
阅读次数:
25
Calculate a+b and output the sum in standard format -- that is, the digits must be separated into groups of three by commas (unless there are less tha ...
分类:
其他好文 时间:
2020-09-24 00:03:11
阅读次数:
34
转自:https://blog.csdn.net/weixin_43064185/article/details/89534830 STR_TO_DATE(str,format)函数是将时间格式的字符串(str),按照所提供的显示格式(format)转换为DATETIME类型的值。DATE_FORM ...
分类:
数据库 时间:
2020-09-23 23:46:20
阅读次数:
48