Monthly Archives: October 2018

linux中命令别名的设定指令alias和unalias

linux中并没有ll(大写L)命令,但是为什么这个命令还可以使用呢?这个就和linux的命令别名有关了。先用type来看下ll的指令类型: $ type ll ll is aliased to `ls -alF' 这个是ubuntu... Read More | Share it now!

服务器排障 之 nginx 499 错误的解决

问题描述: Nginx 服务器大量499报错 220.181.165.136 - - [18/May/2015:10:31:02 +0800] "POST /v1/jobsHTTP/1.1" 499 0 "" "bdHttpRequest/1.0.0" 115.239.212.7 - - [18/May/2015:10:31:03 +0800] "GET... Read More | Share it now!

Pydio

https://pydio.com/en/ Pydio, formerly known as AjaXplorer, is an open-source file-sharing and synchronisation software that runs on the user’s own server or in the cloud.[ ... Read More | Share it now!

如何测试代码覆盖率:coverage.py 简介

本文作者为 Mike Driscoll,译者为 linkcheng,校对 EarlGrey,是 Python 翻译组完成的第二篇译文。本文为编程派微信公众号首发。 Coverage.py 是一个用来测试代码覆盖率的 Python 第三方库。它起初是由... Read More | Share it now!

pickle模块学习 Python

pickle提供了一个简单的持久化功能。可以将对象以文件的形式存放在磁盘上。 —————————————— pickle.dump(obj,... Read More | Share it now!

色度抽样

在数位图像处理领域中,色彩采样是指在表示图像时使用较亮度信息为低的分辨率来表示色彩(色度)信息。当对模拟分量视频或者YUV讯号进行数字抽样时,一般会用到色度抽样。 目录 1原理 2色彩采样的用法 3抽样系统及比例 4各种抽样系统介绍 4.14:4:4... Read More | Share it now!

Kafka跨集群同步工具——MirrorMaker

MirrorMaker是为解决Kafka跨集群同步、创建镜像集群而存在的;下图展示了其工作原理。该工具消费源集群消息然后将数据重新推送到目标集群。 MirrorMaker使用方式 启动mirror-maker程序需要一个或多个consumer配置文件、一个producer配置文件是必须的其他参数是可选的。 kafka-run-class.sh... Read More | Share it now!

Kafka集群数据同步MirrorMaker

修改配置文件 vim $KAFKA_HOME/config/consumer.properties... Read More | Share it now!

kafka partition(分区)与 group

一、 1、原理图 2、原理描述 一个topic... Read More | Share it now!

Why many developer’s end up using both Kafka and RabbitMQ

Bradley McAllister Many companies use the latest and greatest technologies to keep their applications e5cient and fast and to make themselves productive. Today I am going to examine the major features that developers look for in their messaging... Read More | Share it now!