区分insert into 和 insert overowrite: 0、 命令格式 INSERT OVERWRITE|INTO TABLE tablename [PARTITION (partcol1=val1, partcol2=val2 ...)] [(col1,col2 ...)] sele ...
分类:
其他好文 时间:
2020-05-07 13:24:09
阅读次数:
74
batch 发送,batch 存储(可压缩, FileChannel 顺序写盘),batch 拉取(sendFile) 查看 log: kafka-run-class.bat kafka.tools.DumpLogSegments --files D:/tmp/kafka-11-logs/zhang ...
分类:
其他好文 时间:
2020-05-02 00:16:20
阅读次数:
81
import java.util.Arrays;/** * Partition * 给定一个数组和一个整数num,请把小于等于num的数放在数组的左边,大于num的数放在数组的右边(不要求整体有序) * 要求额外空间复杂度O(1),时间负责度O(N) */public class Partition ...
分类:
编程语言 时间:
2020-05-01 14:39:20
阅读次数:
69
db2 内存研究 pianzif 2014-05-25 15:23:41 1214 收藏 1 展开 这两天在看DB2的内存管理的内容,看的很是模糊,有以下问题不明白,请教 是不是数据库管理器的共享内存就是DB2能够使用的最大内容呢,然后数据库全局内存从管理器内存那里获得分配的内存,然后应用程序全局内 ...
分类:
数据库 时间:
2020-05-01 12:21:08
阅读次数:
66
最坏时间复杂度O(n2),最好和平均是O(n*log2n) 伪代码: 1 QuickSort(A,low,high) 2 if(low<high) 3 index = Partition(A,low,high) 4 QuickSort(A,low,index-1) 5 QuickSort(A,ind ...
分类:
编程语言 时间:
2020-04-30 19:32:36
阅读次数:
75
合格订单的逻辑, 关于合格单的算法。 --odps sql --********************************************************************-- --author:jz_admin --create time:2019-06-10 14:4 ...
分类:
其他好文 时间:
2020-04-30 19:19:24
阅读次数:
84
16年写的程序,今天晚上找到了,拿出来看看,记录一下。 IfcWallStandardCase #750964:[ Name:基本墙:Interior - Partition:937935 GlobalId:0$rKT9NFjEMv0x0ItfNT0j OwnerHistory:#41 IfcOwn ...
分类:
Web程序 时间:
2020-04-28 23:26:46
阅读次数:
128
Given a linked list and a target value T, partition it such that all nodes less than T are listed before the nodes larger than or equal to target valu ...
分类:
其他好文 时间:
2020-04-26 09:21:42
阅读次数:
55
Given a set of N (>) positive integers, you are supposed to partition them into two disjoint sets A?1?? and A?2?? of n?1?? and n?2?? numbers, respecti ...
分类:
其他好文 时间:
2020-04-25 19:10:09
阅读次数:
59
1.什么是CAP CAP原则又称CAP定理,指的是在一个分布式系统中的:Consistency 一致性、Availability 可用性、Partition tolerance 分区容错性。 CAP原则指的是,这三个要素最多只能同意实现两点,不可能三者兼顾。 2. Consistency 一致性 对 ...
分类:
其他好文 时间:
2020-04-25 16:58:27
阅读次数:
365