上一页 1 ··· 147 148 149 150 151 152 153 154 155 ··· 188 下一页
摘要: https://flume.apache.org/FlumeUserGuide.html 【测试模拟】 a1.sources.r1.type = exec a1.sources.r1.command = tail -F /opt/data/access.log 【生产】 阅读全文
posted @ 2017-10-26 18:29 papering 阅读(338) 评论(0) 推荐(0)
摘要: https://www.ibm.com/developerworks/cn/opensource/os-cn-kafka/index.html Kafka 与 Flume 很多功能确实是重复的。以下是评估两个系统的一些建议: Kafka 是一个通用型系统。你可以有许多的生产者和消费者分享多个主题。相 阅读全文
posted @ 2017-10-26 17:57 papering 阅读(396) 评论(0) 推荐(0)
摘要: a 翻译 搜索 复制 阅读全文
posted @ 2017-10-26 17:48 papering 阅读(137) 评论(0) 推荐(0)
摘要: Hadoop文件格式 1-非结构化文本数据 可分片压缩 2-结构化文本数据 3-二进制数据 Flume的接收器 HDFS HBase IRC ElasticSearch 如果希望HDFS接收器写入的是压缩文件,则需要制定压缩方式,其通过设置hdfs.codeC设置 gzip bzip2 lzo sn 阅读全文
posted @ 2017-10-26 16:45 papering 阅读(363) 评论(0) 推荐(0)
摘要: kill(2) - Linux manual page https://man7.org/linux/man-pages/man2/kill.2.html NAME top kill - send signal to a process SYNOPSIS top #include <signal.h 阅读全文
posted @ 2017-10-26 15:31 papering 阅读(604) 评论(0) 推荐(0)
摘要: An Overview of Query Optimization in Relational Systems 阅读全文
posted @ 2017-10-26 13:56 papering 阅读(414) 评论(0) 推荐(0)
摘要: hdfs shortcircuit 阅读全文
posted @ 2017-10-26 08:06 papering 阅读(137) 评论(0) 推荐(0)
摘要: s3 阅读全文
posted @ 2017-10-26 01:22 papering 阅读(148) 评论(0) 推荐(0)
摘要: Lowest Common Ancestors 阅读全文
posted @ 2017-10-26 00:27 papering 阅读(139) 评论(0) 推荐(0)
摘要: Traveling Saleman Problem 阅读全文
posted @ 2017-10-26 00:26 papering 阅读(127) 评论(0) 推荐(0)
摘要: https://hadoop.apache.org/docs/r2.7.2/hadoop-project-dist/hadoop-hdfs/HdfsDesign.html Introduction 【相对于POSIX,放宽要求】 The Hadoop Distributed File System 阅读全文
posted @ 2017-10-25 21:19 papering 阅读(383) 评论(0) 推荐(0)
摘要: for i in range(3, -2, -1): try: print(4 / i) except Exception as e: print(Exception) print(e) 阅读全文
posted @ 2017-10-25 14:36 papering 阅读(151) 评论(0) 推荐(0)
摘要: https://maprdocs.mapr.com/home/AdministratorGuide/ResourceAllocation-YARNContainer.html yarn.scheduler.minimum-allocation-mb yarn.scheduler.maximum-al 阅读全文
posted @ 2017-10-24 17:10 papering 阅读(214) 评论(0) 推荐(0)
摘要: Our goal is to foster an ecosystem of components and tools that relieve the burden of running applications in public and private clouds. https://kuber 阅读全文
posted @ 2017-10-24 16:15 papering 阅读(225) 评论(0) 推荐(0)
摘要: Dominant Resource Fairness: Fair Allocation of Multiple Resource Types 阅读全文
posted @ 2017-10-23 19:40 papering 阅读(163) 评论(0) 推荐(0)
摘要: RocksDB RocksDB is a high performance[1][2][3][4][5] embedded database for key-value data. It is a fork of LevelDB which was then optimized to exploit 阅读全文
posted @ 2017-10-23 14:34 papering 阅读(194) 评论(0) 推荐(0)
摘要: Large-scale Incremental Processing Using Distributed Transactions and Notifications 阅读全文
posted @ 2017-10-22 21:02 papering 阅读(179) 评论(0) 推荐(0)
摘要: ip 阅读全文
posted @ 2017-10-21 14:26 papering 阅读(178) 评论(0) 推荐(0)
摘要: w+r> 阅读全文
posted @ 2017-10-21 14:22 papering 阅读(101) 评论(0) 推荐(0)
摘要: 分治 Divide Conquer 快速排序 | 菜鸟教程 https://www.runoob.com/w3cnote/quick-sort.html DivideConquerFillAHole func quickSort(input []int) []int { // DivideConqu 阅读全文
posted @ 2017-10-21 13:27 papering 阅读(278) 评论(0) 推荐(0)
摘要: https://github.com/google/snappy Introduction 【速度第一,压缩比适宜】 【favors speed over compression ratio】 Snappy is a compression/decompression library. It doe 阅读全文
posted @ 2017-10-21 12:25 papering 阅读(391) 评论(0) 推荐(0)
摘要: 位图索引 翻译 搜索 复制 阅读全文
posted @ 2017-10-21 12:24 papering 阅读(188) 评论(0) 推荐(0)
摘要: lru 阅读全文
posted @ 2017-10-21 11:14 papering 阅读(165) 评论(0) 推荐(0)
摘要: 机架 阅读全文
posted @ 2017-10-21 00:10 papering 阅读(277) 评论(0) 推荐(0)
摘要: def combination_2_n(l): n, r = len(l), [] for i in range(0, n, 1): s = i + 1 for ii in range(s, n, 1): r.append([l[i], l[ii]]) return r # l1, l2 = [... 阅读全文
posted @ 2017-10-20 16:47 papering 阅读(231) 评论(0) 推荐(0)
摘要: import psycopg2 import threading conn_fmac = psycopg2.connect(database='filter_useless_mac', user='user', password='password', host='192.168.168.168', port='5432') d... 阅读全文
posted @ 2017-10-20 10:02 papering 阅读(255) 评论(0) 推荐(0)
摘要: bagging bootstrap aggregation 装袋法 自助法聚集 阅读全文
posted @ 2017-10-20 00:22 papering 阅读(156) 评论(0) 推荐(0)
摘要: Cassandra 阅读全文
posted @ 2017-10-19 23:56 papering 阅读(137) 评论(0) 推荐(0)
摘要: 协议 阅读全文
posted @ 2017-10-19 19:27 papering 阅读(211) 评论(0) 推荐(0)
摘要: m*n matrix m*n=1000 f(A)=25 https://www.cs.princeton.edu/courses/archive/spring12/cos598C/svdchapter.pdf finding the best k -dimensional subspace with 阅读全文
posted @ 2017-10-19 18:51 papering 阅读(255) 评论(0) 推荐(0)
摘要: https://hadoop.apache.org/docs/r1.2.1/hdfs_design.html Introduction The Hadoop Distributed File System (HDFS) is a distributed file system designed to 阅读全文
posted @ 2017-10-19 10:45 papering 阅读(323) 评论(0) 推荐(0)
摘要: hive.spark.client.rpc.sasl.mechanisms DIGEST-MD5 Name of the SASL mechanism to use for authentication. 阅读全文
posted @ 2017-10-19 09:42 papering 阅读(867) 评论(0) 推荐(0)
摘要: 损失函数+惩罚函数 2阶导数 二阶导数_百度百科 https://baike.baidu.com/item/%E4%BA%8C%E9%98%B6%E5%AF%BC%E6%95%B0/1139067 second derivative 设 ,求 和 。 [6] 解:用导数定义求解: [6] 翻译 搜索 阅读全文
posted @ 2017-10-19 08:09 papering 阅读(301) 评论(0) 推荐(0)
摘要: RAM disk 阅读全文
posted @ 2017-10-19 01:33 papering 阅读(276) 评论(0) 推荐(0)
摘要: 布隆过滤器 http://pages.cs.wisc.edu/~cao/papers/summary-cache/node8.html A Bloom filter is a method for representing a set A of n elements (also called key 阅读全文
posted @ 2017-10-18 21:47 papering 阅读(193) 评论(0) 推荐(0)
摘要: https://chenli.ics.uci.edu/files/icde2017-AsterixDB-Spatial-Comparison.pdf A Comparative Study of Log-Structured Merge-Tree-Based Spatial Indexes for 阅读全文
posted @ 2017-10-18 20:43 papering 阅读(178) 评论(0) 推荐(0)
摘要: 7.13. nonlocal 语句 nonlocal_stmt ::= "nonlocal" identifier ("," identifier)* nonlocal 语句会使得所列出的名称指向之前在最近的包含作用域中绑定的除全局变量以外的变量。 这种功能很重要,因为绑定的默认行为是先搜索局部命名 阅读全文
posted @ 2017-10-18 20:05 papering 阅读(140) 评论(0) 推荐(0)
摘要: https://www.cs.umb.edu/~poneil/lsmtree.pdf 【Log-Structured Merge-Tree 】【结构化日志归并树】【要解决的问题】The Log-Structured Merge-Tree (LSM-Tree)https://www.cs.umb.ed 阅读全文
posted @ 2017-10-18 19:23 papering 阅读(337) 评论(0) 推荐(0)
摘要: Dynamic programming https://people.eecs.berkeley.edu/~vazirani/algorithms/chap6.pdf 阅读全文
posted @ 2017-10-18 18:55 papering 阅读(147) 评论(0) 推荐(0)
摘要: lk = ['oid', 'timestamp', 'signals', 'area', 'building', 'city', 'name', 'floor', 'industry', 'region', 'stress', 'longitude', 'latitud... 阅读全文
posted @ 2017-10-18 17:01 papering 阅读(220) 评论(0) 推荐(0)
上一页 1 ··· 147 148 149 150 151 152 153 154 155 ··· 188 下一页