`
ssydxa219
  • 浏览: 622507 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
文章分类
社区版块
存档分类
最新评论
文章列表

shell

#!/bin/bash  PID=$(ps -ef | grep yourappp.jar | grep -v grep | awk '{ print $2 }')  if [ -z "$PID" ]  then      echo Asset is already stopped!  else      echo kill $PID      kill $PID      echo Asset stopped!  fi #!/usr/bin/env bash    #Author: Linqinghong #CreateTime: 2018/05 ...
  yum install expect #!/usr/bin/expect set timeout 5 password=ppp spawn ssh user@localhost -p 22 expect { "(yes/no)" { send "yes\r"; exp_continue } "password:" { send "$password\r" } } expect user@* {send \" ls -l \r\" } ; ...
首先安装tigervnc-server: yum install tigervnc-server   安装好后,设置 vi /etc/sysconfig/vncservers [root@gateway-001 ~]# cat /etc/sysconfig/vncservers # The VNCSERVERS variable is a list of display:user pairs.## Uncomment the lines below to start a VNC server on display :2# as my 'myusername' (adjust thi ...

KvM

管理kvm虚拟机   1安装KVM 略... 2安装 WEB管理系统 ConVirt yum install wget socat   cd /etc/yum.repos.d   wget --no-cache http://www.convirture.com/repos/definitions/rhel/6.x/convirt.repo  cd /root/   wget --no-cache http://www.convirture.com/downloads/convirt/2.0.1/convirt-install-2.0.1.tar.gz     wget --n ...
stages:  - deploy  - run###========================1=========================deploy1:  stage: deploy  script:    - mvn clean package -Dmaven.test.skip=true    - rm -rf /home/gitlab-runner/track/aicai-pinyou-api.jar    - cp aicai-apis/aicai-api-pypm/aicai-pinyou-api/target/aicai-pinyou-api.jar /home/g ...

gitignore

.gitignore .buildpath.project.settings/META-INF/.externalToolBuilders/.classpath.prefs.metadata.MF.component.jsdtscope.container.name.launch.jar.wartarget/.classclasses/.gitignore.checkstyle.externalToolBuilders/

ekl

    博客分类:
  • ekl
[1]: initial heap size [1073741824] not equal to maximum heap size [2147483648]; this can cause resize pauses and prevents mlockall from locking the entire heap[2]: max number of threads [2048] for user [es] is too low, increase to at least [4096]
Exception in thread "main" org.apache.hadoop.hbase.DoNotRetryIOException: java.lang.IllegalAccessError: tried to access method com.google.common.base.Stopwatch.<init>()V from class org.apache.hadoop.hbase.zookeeper.MetaTableLocator    at org.apache.hadoop.hbase.client.RpcRetryingCal ...
https://www.buzzingandroid.com/tools/android-layout-finder/ User:GNUSerial:918A8-20DD8-44ZA1-B0W4A-13T66
一、shell 查询 hbase 查询相当简单,提供了get和scan两种方式,也不存在多表联合查询的问题。复杂查询需通过hive创建相应外部表,用sql语句自动生成mapreduce进行。 但是这种简单,有时为了达到目的,也不是那么顺手。至少和sql查询方式相差较大。 hbase 提供了很多过滤器,可对行键,列,值进行过滤。过滤方式可以是子串,二进制,前缀,正则比较等。条件可以是AND,OR等 组合。所以通过过滤,还是能满足需求,找到正确的结果的。 1.1 过滤器类型 HBase 最新官方文档中文版(http://abloz.com/hbase/book.html)中有对过滤器的描 ...

hbase问题总结

hbase问题总结    1 java.io.IOException: java.io.IOException: java.lang.IllegalArgumentException: offset (0) + length (8) exceed the capacity of the array: 4 做简单的incr操作时出现,原因是之前put时放入的是int  长度为 vlen=4 ,不适用增加操作,只能改为long型 vlen=8   2 写数据到column时 org.apache.hadoop.hbase.client.RetriesExhaustedWithD ...
  实验环境中执行计算任务,计算任务涉及HIVE、Mahout、Hbase bulkload、MapReduce,工作流驱动通过Shell脚本控制,整个任务执行过程涉及基础行为数据160万条,业务数据40万条。       多次执行任务过程中反复随机出现以下各类 ...
1.连接   HTable是HBase的client,负责从meta表中找到目标数据所在的RegionServers,当定位到目标RegionServers后,client直接和RegionServers交互,而不比再经过master。   HTable实例并不是线程安全的。当需要创建HTable实例时,明智的做法是使用相同的HBaseConfiguration实例,这使得共享连接到RegionServers的ZK和socket实例,例如,应该使用这样的代码:   HBaseConfiguration conf = HBaseConfiguration.create(); ...
目录:   引言 -- 参数基础 1. 结构(Structural)过滤器--FilterList 2.列值过滤器--SingleColumnValueFilter         2.1.第一种构造函数情况 -- 比较的关键字是字符数组         2.2.第二种构造函数情况 -- 比较的关键字是比较器ByteArrayComparable 3.键值元数据         3.1. 基于列族过滤数据的FamilyFilter     
概述 对于建表,和RDBMS类似,HBase也有namespace的概念,可以指定表空间创建表,也可以直接创建表,进入default表空间。 hbase shell 对于数据操作,HBase支持四类主要的数据操作,分别是: Put:增加一行,修改一行; Delete: ...
Global site tag (gtag.js) - Google Analytics