`
文章列表
1. 一定要一定要选择火狐浏览器   2. 登录 https://www.ibkr.com.cn/sso/Login   3. 进入 资金 - 资金转账 建设银行有两个swift账户,都可以使用,一般使用第一个 Institution name CHINA CONSTRUCTION BANK CORPORATION BIC PCBCCNBJSZX Branch name (SHENZHEN BRANCH) City SHENZHEN Address FINANCIAL CENTER EAST SECTION SOUTH HONGLING ROAD ZIP Code 51 ...
操作系统:centos 6.8   1. 安装mailx yum install mail   2. 配置SMTP vi /etc/mail.rc set from=***@qq.com set smtp-auth-user=***@qq.com set smtp-auth-password=igsre*** set smtp-auth=login   set ssl-verify=ignore set nss-config-dir=~/.certs set smtp=smtps://smtp.qq.com:465   3. 生成SSL证书 mkdir ~/ ...
  java IO 实现的socket public class MyServerSocket { public static void main(String[] args) throws Exception{ ServerSocket ss = new ServerSocket(8888); Socket s = ss.accept(); System.out.println("server=========== accepted connect from " + s.getInetAddress().getHostAddress()); ...

Java NIO

    博客分类:
  • Java
    Capacity A buffer's capacity is the number of elements it contains. The capacity of a buffer is never negative and never changes.    Limit A buffer's limit is the index of the first element that should not be read or written. A buffer's limit is never negative and is never greater than it ...

Federation 简介

  HDFS的局限性(HDFS只有一个active的namenode): 1. 在name中存储所有的元数据(metadata),因此单个namenode所能存储的对象(块+文件)数据受到namenode所在JVM的heap size的限制。 2. 整个HDFS文件系统的吞吐量受限于单个namenode的吞吐量 3. 无法隔离namespace   Federation HDFS 与 HDFS的区别 HDFS只有一个name space, 它使用全部的块。 而Federation HDFS 中有多个独立的namespace,每个命名空间使用一个block Pool Bolck ...

Yarn HA高可用配置

  yarn-site.xml <property> <name>yarn.resourcemanager.ha.enabled</name> <value>true</value> </property> <property> <name>yarn.resourcemanager.cluster-id</name> <value>cluster1</value> </property> <property&g ...
 【注:文中配置未实际验证】      一) 配置: 修改hdfs-site.xml 1. dfs.nameservices - the logical name for this new nameservice Note: If you are also using HDFS Federation, this configuration setting should also include the list of other nameservices, HA or otherwise, as a comma-separated list. <property> ...

Hbase 性能优化

 
  1. 垃圾回收优化 用户可以通过向hbase-env.sh文件中添加HBASE_OPTS或者HBASE_REGIONSERVER_OPT来设置垃圾回收相关选项,后者仅仅影响region服务器进程,也是推荐的修改方式。 增加新生代大小,  减小新生代垃圾回收次数 -XX:MaxNewSize=8 ...
Runtime Data Area 运行时数据区 1. method area   线程共享 存放已被虚拟机加载的类信息、常量、静态变量、即时编译后的代码等信息。多个线程同时加载一个类时,只有一个会请求Class Loader加载,另一个会等待。   MetaSpace 元数 ...

hbase 管理工具

split 拆分merge_region 合并分区   flush  将memstore中的数据强制写入磁盘 hbase> flush 'TABLENAME' hbase> flush 'REGIONNAME' hbase> flush 'ENCODE_REGIONNAME' move将region移动到一个指定的region server, 或者移动到一个随机的region server(不指定region server)。此命令可以用于解决某些region server 过于拥堵的问题。 hbase> move 'ENCODE_REGIONNAME'  hba ...
的神色

Hbase counter计数器

创建表名和列族名 create 't1','cf'   初始化counter为1 或 让counter+1 incr 't1','row1','cf:no',1   获取counter get 't1','row1','cf:no'   获取counter get_counter 't1','row1','cf:no'   @Test public void testCounter() throws Exception{ Table table = conn.getTable(TableName.valueOf("t1")); l ...
crontab  定时任务 # Example of job definition: # .---------------- minute (0 - 59) # |  .------------- hour (0 - 23) # |  |  .---------- day of month (1 - 31) # |  |  |  .------- month (1 - 12) OR jan,feb,mar,apr ... # |  |  |  |  .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,f ...
find 文件查找工具,通过遍历指定路径下的文件系统完成查找,速度慢,但执行精确查找;   语法:find [OPTIONS] [查找路径] [查找条件] [处理动作] 查找路径:默认为当前目录 查找条件:默示查找所有文件 处理动作:显示至屏幕   1 查找条件: 1.1 根据文件名字查找: -name “文件名称”: 支持使用globbing元字符 *, ?, [], [^] -iname "文件名称":查找时忽略文件名称字符大小写 -regex PATTERN: 查找时以PATTERN匹配整个文件路径字串,而不仅仅包含文件本身   1.2. 根 ...
1、脚本使用格式: mkscript.sh [-D|--description "script description"] [-A|--author "script author"]  文件名 2、如果文件事先不存在,则创建;且前几行内容如下所示: #!/bin/bash # Description: script description # Author: script author # 3、如果文件事先存在,但不空,且第一行不是“#!/bin/bash”,则提示语法错误并退出;如果第一行是“#!/bin/bash”,则使用vim打开脚本 ...
Global site tag (gtag.js) - Google Analytics