Apache Hadoop HDFS一Knowing the Basics
Hadoop HDFS ( H adoop D istributed F ile S ystem) is a distributed Java-based file system for storing large volumes of data. It is designed: To be a scalable, fault-tolerant, distributed storage...
View ArticleUpdated Version of the Deployment Guide for Hadoop on VMware vSphere
The new Deployment Guide for Virtualizing Hadoop on VMware vSphere describes the technical choices for running Hadoop and Spark-based applications in virtual machines on vSphere. Innovative...
View ArticleDiscovering MongoDB withConsul
In order to build flexible and maintainable cloud infrastructure we need a way to connect services together with minimal effort. For a long time DNS has been the way to do that, but it also poses a...
View ArticleIntroducing SDU Tools: Free T-SQL Tools for DBAs and Developers
I’ve worked with T-SQL for a very long time, and over the years I’ve lost count of how many tools I’ve found the need to create to help me in my work. They have been in a variety of script folders,...
View Article技术选型最怕的是什么?
作者| 一乐 昨天聊聊架构发布了一篇关于技术选型的文章,文章作者介绍了目前流行的技术选型方式,比如有微博驱动、技术会议驱动、嗓门驱动、领导驱动.....不少读者都表示深有体会,并在评论区贴出了自己的经历。今天再推荐一篇由环信首席架构师一乐所撰写的关于技术选型的文章(旧文),希望能帮到各位。另推荐一乐的个人微信 一乐来了 ,id是yilecoming,欢迎关注。...
View ArticleApache顶级项目Geode源码
Apache顶级项目介绍之8,我们重新恢复Apache顶级项目系列,较之前介绍系列,我们本文直入代码分析,原因有二,Geode即上文我们分析的Gemfire的开源版本,其二被逼无奈,阅读源码查找问题。 1. Geode 2016年11月21日,Apache 软件基金会(ASF)宣布 Apache? Geode? 已从 Apache 孵化器毕业成为顶级项目(TLP),表明该项目的社区和产品已根据...
View ArticleTesting a redis container using gotun
Testing container is one of the major reason for the existence of the tool gotun . In this blog post, I am going to show you how easy it becomes to test a container. But, easy is still a relative...
View ArticleNewsBits - DB Ransoms, RethinkDB, New Mongoid, Clojure/MongoDB, PostgreSQL...
NewsBits for week ending January 27th:The latest in database ransom news, an update from the RethinkDB community, a fresh Mongoid arrives, Clojure's latest MongoDB driver is for Java too, a look at...
View Articlebaeldung - Coding and Testing Stuff: Spring Data MongoDB: Projections and...
The Master Class of " Learn Spring Security " is out: >> CHECK OUT THE COURSE 1. Overview Spring Data MongoDB provides simple high-level abstractions to MongoDB native query language. In this...
View ArticleOpenStack Horizon Profiling
声明: 本博客欢迎转发,但请保留原作者信息! 新浪微博:@Lingxian_kong; 博客地址: http://lingxiankong.github.io/ 内容系本人学习、研究和总结,如有雷同,实属荣幸! 从Ocata版本开始,Horizon在‘Developer’标签下新增了一个panel ‘OpenStack...
View ArticleMongoDB ransom attacks continue to plague administrators
Earlier this month, Salted Hash reported on a surge in attacks against publicly accessible MongoDB installations . Since January 3, the day of that first report, the number of victims has climbed from...
View ArticleOUTorINOUTargument3forroutinenenghao.xxxisnotavariableorNEWpseudo-variableinB...
Procedure execution failed1414 - OUT or INOUT argument 3 for routine nenghao.money_day_all is not a variable or NEW pseudo-variable in BEFORE trigger百度之,CSDN之,各有各的理,比较明显的是第三个参数调用错误第三个我使用的out参数,...
View Articleredis-cli源码分析 数据库 数据库学习 Redis cli源码分析
redis-cli源码分析,redis-cli中有两个重要的结构体,一个是redisContext与一个是configtypedef struct redisContext { int err; /* Error flags, 0 when there is no error */ char errstr[128]; /* String representation of error when...
View Article数据库约束的用法 数据库 数据库学习 数据库知识 数据库约束
数据库约束的用法。 1.主键约束: 要对一个列加主键约束的话,这列就必须要满足的条件就是非空 因为主键约束:就是对一个列进行了约束,约束为(非空、不重复) 以下是代码 要对一个列加主键,列名为id,表名为emp 格式为: alter table 表格名称 add constraint 约束名称 增加的约束类型 (列名) 例子: alter table emp add constraint ppp...
View ArticleRedis应用案例-在问题中不断成长 数据库 数据库学习 Redis Redis应用
Redis应用案例-在问题中不断成长。背景产品类型:酒店搜索 技术选型:前端 php + 后端 Java,都会用到 Redis Redis 使用场景:缓存、数据持久化前的临时存储 2010年开始应用 Redis,PHP 对其操作时使用的是 Predis 这个客户端库 2013年改用了 phpredis 作为客户端库...
View Articlewm_concat(列名)拼接超过4000后异常 数据库 数据库学习 concat 4000异常
wm_concat(列名)拼接超过4000后异常。函数 wm_concat(列名)该函数可以把列值以“,”号分隔起来,并显示成一行 但是进行拼串的时候,返回是字符串类型,可能遇到拼串形成的结果集大于4000,这时候,系统会提示,超过系统限制。 解决办法: XMLAGG(XMLELEMENT(E, 列名 || ',')).EXTRACT('//text()').getclobval()...
View Article多字段模糊查询,前一个字段无搜索结果返回null时不影响后一个字段模糊查询 数据库 数 ...
多字段模糊查询,前一个字段无搜索结果返回null时不影响后一个字段模糊查询。表a,字段a1,a2,a3,a4 基于关键字对a1,a2,a3三个字段进行模糊查询,返回符合条件的所有结果。 select * from a where concat(IFNULL(a1,''),IFNULL(a2,''),IFNULL(a3,'')) like '%keyword%'
View ArticleRedis常用命令 数据库 数据库学习 Redis Redis常用命令
Redis常用命令,连接:redis-cli -h host -p port -a password 1、通用DEL key [key ...] 删除给定的一个或多个 keyEXISTS key 检查给定 key 是否存在 EXPIRE key seconds 为给定 key 设置生存时间,当 key 过期时(生存时间为 0 ),它会被自动删除 EXPIREAT key timestamp 和...
View Article超时分布式事务处理等待锁解决办法 数据库 数据库学习 超时分布式 事务处理
超时分布式事务处理等待锁解决办法。查找被死锁的语句: select sql_text from v$sql where hash_value in (select sql_hash_value from v$session where sid in (select session_id from v$locked_object)); 查找被死锁的进程: SELECT...
View Article阿里云自助实验-从Gitlab数据库被删看数据备份的重要性! 数据库 数据库学习 Gitlab数 ...
阿里云自助实验-从Gitlab数据库被删看数据备份的重要性! 一、基本概念 阿里云关系型数据库(Relational Database Service,简称 RDS)是一种稳定可靠、可弹性伸缩的在线数据库服务。基于阿里云分布式文件系统和高性能存储,RDS 支持 mysql、SQL Server、PostgreSQL 和 PPAS(Postgre Plus Advanced Server,一种高度兼容...
View Article