首页
学习
活动
专区
工具
TVP
发布

云计算与大数据

专栏作者
275
文章
346736
阅读量
23
订阅数
不能完整地满足服务开发和治理的微服务都是扯淡!!!
聊起微服务的服务注册与发现,很多人立马就会脱口而出 zk、etcd、consul、eureka 这些组件,进而聊到 CAP 如何取舍,性能如何,高可用和容灾是怎么实现的。
heidsoft
2018-12-19
7640
区块链:fabric 管道创建测试记录
目标创建heidsoft fabric 区块链网络 生成创世块 configtxgen -profile TwoOrgsOrdererGenesis -outputBlock ./channel-artifacts/heidsoft/genesis.block 生成Channel配置区块 configtxgen -profile TwoOrgsChannel -outputCreateChannelTx ./channel-artifacts/heidsoft/channel.tx -channelID h
heidsoft
2018-12-17
8420
研发:jenkins 持续集成如何打tag
uild Timestamp Plugin will be the Best Answer to get the TIMESTAMPS in the Build process.
heidsoft
2018-12-17
1.8K0
阅读:配置中心,让微服务更『智能』
随着微服务的流行,应用和机器数量急剧增长,程序配置也愈加繁杂:各种功能的开关、参数的配置、服务器的地址等等。 同时,我们对程序配置的期望值也越来越高:配置修改后实时生效,灰度发布,分环境、分集群管理,完善的权限、审核机制等等。
heidsoft
2018-12-17
7480
记录: 学会用emacs 阅读代码-如何翻页-拷贝-撤销
https://www.reddit.com/r/emacs/comments/7i2alo/how_to_read_and_understand_gnu_emacs_source_code/
heidsoft
2018-12-06
1.5K0
研发:重新认识shell io 重定向
默认情况下始终有3个"文件"处于打开状态, stdin(键盘), stdout(屏幕), 和stderr(错误消息输出到屏幕上). 这3个文件和其他打开的文件都可以被重定向. 对于重定向简单的解释就是捕捉一个文件, 命令, 程序, 脚本, 或者是脚本中的代码块的输出, 然后将这些输出作为输入发送到另一个文件, 命令, 程序, 或脚本中.
heidsoft
2018-12-06
6260
研发:限流:Sentinel了解
在复杂的生产环境下可能部署着成千上万的服务实例,当流量持续不断地涌入,服务之间相互调用频率陡增时,会产生系统负载过高、网络延迟等一系列问题,从而导致某些服务不可用。如果不进行相应的流量控制,可能会导致级联故障,并影响到服务的可用性,因此如何对高流量进行合理控制,成为保障服务稳定性的关键。
heidsoft
2018-12-06
1.1K0
研发:springboot 应用基于k8s 部署pod启动缓慢排查
/dev/random设备提供的不是伪随机数据,而是基于环境中的真实随机因素(即背景噪声作为熵源)的随机数据。
heidsoft
2018-12-05
3.9K0
研发:k8s pod 服务生成海报时字体出现乱码
RUN apk --update add fontconfig ttf-dejavu
heidsoft
2018-11-29
2.4K0
运维:k8s pod erro exit code 137
If a container is no longer running, use the following command to find the status of the container:
heidsoft
2018-11-20
16.5K0
研发:Idea工具因为版本工具设置问题,导致全是红色
症状现象 down votefavorit I have the current status of my files in the folders coloured red/brown. I tri
heidsoft
2018-11-20
5800
k8s pod dns 问题记录
抓包查看dns 解析过程,抓取所有网络包: tcpdump -nnvXSs 0 -i any
heidsoft
2018-10-18
2.4K0
Hyperledger: 向现有的 Fabric 区块链网络添加一个组织
Hyperledger Fabric first-network 示例(也被称为“Build Your First Network”示例和“e2e_cli”示例)展示了一个基础区块链用例教程样例的完全脚本化且端到端自动化的示例。该示例配备一个 Hyperledger Fabric 区块链网络,将一个智能合约 (chaincode-Example02) 应用程序部署到这个运行的网络,然后针对部署的链代码运行交易。
heidsoft
2018-10-18
1K0
架构: UMA vs NUMA
所有处理器共享相同的内存地址空间。这种体系结构主要解决的问题是关于cache一致性。
heidsoft
2018-10-18
4.8K0
安全: Linux 系统安全简单设置
设置sshd,禁用root 例子: vim /etc/ssh/sshd_config PermitRootLogin yes => PermitRootLogin nosystemctl restar
heidsoft
2018-10-18
1.5K0
研发:理解系统调用nice
允许进程改变它们的优先级。 包含在increment参数中的整数值用来修改进程描述符的nice字段。
heidsoft
2018-10-18
6530
研发:What is a DDoS Attack?
A distributed denial-of-service (DDoS) attack is a malicious attempt to disrupt normal traffic of a targeted server, service or network by overwhelming the target or its surrounding infrastructure with a flood of Internet traffic. DDoS attacks achieve effectiveness by utilizing multiple compromised computer systems as sources of attack traffic. Exploited machines can include computers and other networked resources such as IoT devices. From a high level, a DDoS attack is like a traffic jam clogging up with highway, preventing regular traffic from arriving at its desired destination.
heidsoft
2018-10-18
5790
研发:jenkins ios应用打包
持续集成的目的,就是让产品可以快速迭代,同时还能保持高质量。它的核心措施是,代码集成到主干之前,必须通过自动化测试。只要有一个测试用例失败,就不能集成。
heidsoft
2018-10-18
7070
研发:Print TCP Packet Data
Below is an example which does exactly what you need: hook received TCP packets and print their payloads. If you want to print some other information from received packet (like binary data), you just need to modify a bit the section under this comment:
heidsoft
2018-10-18
1.7K0
研发:基于Appium测试android应用尝试
export PATH=$PATH:/usr/local/android/platform-tools
heidsoft
2018-10-18
3530
点击加载更多
社区活动
腾讯技术创作狂欢月
“码”上创作 21 天,分 10000 元奖品池!
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·千货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档