Menu

TODO: Novembre 2015 check Thrift server by interacting with hbase

Hbase Thrift server check

Show Source Code
module.exports = header: 'HBase Thrift Check', handler: ({options}) ->

Assert HTTP Port

Show Source Code
  @connection.assert
    header: 'HTTP'
    servers: options.wait.http.filter (server) -> server.host is options.fqdn
    retry: 10
    sleep: 3000

Assert HTTP Info Port

Show Source Code
  @connection.assert
    header: 'HTTP Info'
    servers: options.wait.http_info.filter (server) -> server.host is options.fqdn
    retry: 10
    sleep: 3000

For now Hbase provided example does not work with SSL enabled Hbase Thrift Server.