摘要:
ZooKeeper 的应用场景 Zookeeper系列一:Zookeeper介绍、Zookeeper安装配置、ZK Shell的使用 Zookeeper系列二:分布式架构详解、分布式技术详解、分布式事务 阅读全文
摘要:
Linux kernel中常见的宏整理 - yooooooo - 博客园中看到roundup和ALIGN宏功能类似,便做了个对比。 在O3优化,#define SZ 4的情况下,截取部分汇编代码如下 int r0 = (r + SZ - 1) / SZ * SZ;被编译成 leal 6(%rax), 阅读全文
摘要:
SIMD(MMX/SSE/AVX)变量命名规范心得 Intel® Intrinsics Guide SIMD、SSE、AVX指令集 | Header | Purpose | | | | | x86intrin.h | Everything, including non-vector x86 inst 阅读全文
摘要:
在做循环展开时,处理完整除块后,还需要在剩余块处理。做了个实验对比,用switch加速剩余块段处理 // switch0.c #include <stdio.h> #include <stdint.h> #include <stdlib.h> #include <time.h> int main(i 阅读全文
摘要:
greenplum for kubernetes 天作之合:Greenplum移植到Kubernetes上 Pivotal Greenplum for Kubernetes | Pivotal Greenplum for Kubernetes Docs Greenplum for Kubernete 阅读全文
摘要:
docker Docker 入门教程 Docker 核心技术与实现原理 Docker原理及使用 Install Docker Engine on Ubuntu Ubuntu - Docker —— 从入门到实践 设置非root账号不用sudo直接执行docker命令 镜像加速器 - Docker — 阅读全文
摘要:
hdfs-mount hdfs-mount是一个将HDFS挂载为本地Linux文件系统的工具,使用go语言开发,不依赖libdfs和java虚拟机。它允许将远程HDFS作为本地Linux文件系统挂载,并允许任意应用程序或shell脚本以高效和安全的方式访问HDFS作为普通文件和目录。 官方地址mic 阅读全文
摘要:
1.2 GOPATH与工作空间 Golang 新手教程:入门速成指南 Go 语言设计与实现 一键解决 go get golang.org/x 包失败 阅读全文
摘要:
popcnt是“population count”的缩写,该操作一般翻译为“位1计数”,即统计有多少个“为1的位”。例如,十六进制数“FF”,它有8个为1的位,即“popcnt(0xFF) = 8”。popcnt主要应用在密码学与通信安全,例如计算汉明重量(Hamming weight)。 x86体 阅读全文
摘要:
Hadoop: Setting up a Single Node Cluster. export PDSH_RCMD_TYPE=ssh Ubuntu 16.04上安装Hadoop并成功运行 ubuntu18.04一样能用 Since Hadoop 3.0.0 - Alpha 1 there was 阅读全文