随笔分类 - 大数据
摘要:Druid (大数据实时统计分析数据存储) Druid 是一个为在大数据集之上做实时统计分析而设计的开源数据存储。这个系统集合了一个面向列存储的层,一个分布式、shared-nothing的架构,和一个高级的索引结构,来达成在秒级以内对十亿行级别的表进行任意的探索分析。 1. 介绍 在最近几年,互联
阅读全文
摘要:高可用Redis服务架构分析与搭建 各种web开发业务中最为常用的key-value数据库了 应用: 在业务中用其存储用户登陆态(Session存储),加速一些热数据的查询(相比较mysql而言,速度有数量级的提升),做简单的消息队列(LPUSH和BRPOP)、订阅发布(PUB/SUB)系统等等。
阅读全文
摘要:安装包:点击此处 Docker for Windows Get started with Docker for Windows 环境设值: Shared Drivers:可以将主机(也就是Windows机器)中的驱动器共享到Docker Container中 Advanced:用于配置运行Docke
阅读全文
摘要:ETCD系列之三:网络层实现 ETCD系列之二:部署集群 ETCD系列之一:简介 ETCD相关介绍--整体概念及原理方面
阅读全文
摘要:etcd:从应用场景到实现原理的全方位解读 从etcd的架构开始,深入到源码中解析etcd 1 架构 从etcd的架构图中我们可以看到,etcd主要分为四个部分。 HTTP Server: 用于处理用户发送的API请求以及其它etcd节点的同步与心跳信息请求。 Store:用于处理etcd支持的各类
阅读全文
摘要:etcd:从应用场景到实现原理的全方位解读 ETCD:A highly-available key value store for shared configuration and service discovery. 简单:基于HTTP+JSON的API让你用curl就可以轻松使用。 安全:可选S
阅读全文
摘要:StatefulSets StatefulSet is the workload API object used to manage stateful applications. Note: StatefulSets are stable (GA) in 1.9. Manages the deplo
阅读全文
摘要:使用Docker的项目,要求:基础类库与平台无关=》.netCore项目、.netStandard项目 公共项目:.netCore项目 入口项目:.netStandard项目 例如:webapi、console、UI项目、Web前端项目…… .netStandard项目: 可被.netCore调用
阅读全文
摘要:Deployments A Deployment controller provides declarative updates for Pods and ReplicaSets. You describe a desired state in a Deployment object, and th
阅读全文
摘要:ReplicaSet is the next-generation Replication Controller. The only difference between a ReplicaSet and a Replication Controller right now is the selec
阅读全文
摘要:Kubernetes:架构、基本概念。用于总体了解 Kubernetes系列之介绍篇:优势、用途 Kubernetes核心概念总结
阅读全文
摘要:Init Containers This feature has exited beta in 1.6. Init Containers can be specified in the PodSpec alongside the app containers array. The beta anno
阅读全文
摘要:kubectl applykubectl getkubectl set image deployment/xxx -n ns echoservice=xxxkubectl deletekubectl logskubectl scale deployment nginx-deployment --re
阅读全文
摘要:For Client:docker exec Run a command in a running containerdocker images List imagesdocker import Import the image from a tarballdocker rm Remove one
阅读全文
摘要:This page provides an overview of Pod, the smallest deployable object in the Kubernetes object model. Understanding Pods How Pods manage multiple Cont
阅读全文
摘要:Images You create your Docker image and push it to a registry before referring to it in a Kubernetes pod. The image property of a container supports t
阅读全文
摘要:Nodes Node Status Addresses Phase Condition Capacity Info Management Node Controller Self-Registration of Nodes Manual Node Administration Node capaci
阅读全文
摘要:This page explains how Kubernetes objects are represented in the Kubernetes API, and how you can express them in .yaml format. Understanding Kubernete
阅读全文
摘要:Master Components kube-apiserver etcd kube-controller-manager cloud-controller-manager kube-scheduler addons DNS Web UI (Dashboard) Container Resource
阅读全文
摘要:Kubernetes is an open-source platform designed to automate deploying, scaling, and operating application containers. able to quickly and efficiently r
阅读全文