Re: AntsDB is released with MySQL compatibility for HBase

2018-05-09 Thread Sanel Zukan
What about Connector/J from MariaDB? It is LGPL and (I think) that should make it easier to mix with Apache license. Best, Sanel Water Guo writes: > I am not an expert with software license. But my gut’s feeling is I can’t > claim Apache if I am using code from MySQL JDBC

Re: Terminal initialization failed; falling back to unsupported java.lang.IncompatibleClassChangeError: Found class jline.Terminal, but interface was expected

2017-08-27 Thread Sanel Zukan
Looks like jline versions collision. Have you tried in terminal: $ HADOOP_USER_CLASSPATH_FIRST=true && bin/hbase shell Also, check these [1]. Best, Sanel [1] https://stackoverflow.com/questions/28997441/hive-startup-error-terminal-initialization-failed-falling-back-to-unsupporte Alexandr

Re: Awesome HBase - a curated list

2017-08-02 Thread Sanel Zukan
Few more integrations: * Apache Drill (https://drill.apache.org/docs/querying-hbase/) * Apache Impala (https://impala.apache.org/index.html and https://www.cloudera.com/documentation/enterprise/latest/topics/impala_hbase.html) * ElasticSearch HBase River

Re: HBase Metrics and time series systems

2017-01-25 Thread Sanel Zukan
You can also try scollector (http://bosun.org/scollector/) and it works as standalone program, outside Bosun monitoring. Binary bundles by default a lot of checkers and support for HBase is one of them. With scollector you write directly to OpenTSDB and you can use Grafana on top of that. Sanel

Re: Play an audio file stored in HBASE in HTML5 audio player

2015-12-14 Thread Sanel Zukan
Hi, hbaseuser writes: > I have an audio file stored in HBASE as a binary . In HBase? I would suggest you to put it on hdfs, since web server has to know how to calculate offsets when client requests specific position in audio stream. If you have a custom web server, you can

Re: Can coprocessor operate HDFS directly?

2012-02-14 Thread Sanel Zukan
AFAIK it is possible, just make sure regionservers can see hadoop jar (which is true by default). Actually, you can call anything from these methods ;) On Tue, Feb 14, 2012 at 9:15 AM, NNever nnever...@gmail.com wrote: As we know in HBase coprocessor methods such as prePut, we can operate

Re: ANN: Hubris 0.1.0 released

2012-01-18 Thread Sanel Zukan
Thank you for comments and suggestion :) I will update docs to to match exercises reference guide so they be ready for 0.2. Regards, Sanel

ANN: Hubris 0.1.0 released

2012-01-17 Thread Sanel Zukan
Hi all, I'm pleased to announce initial release of Hubris, HBase shell alternative implementation[1]. The main aim of hubris is to address hbase shell weakness, providing solid ground for writing extensions using simple DSL and extending shell features in directions other than is intended with

Re: zookeeper connection issue - distributed mode

2011-07-05 Thread Sanel Zukan
Hi, On 60020 is usually region server; check hbase-default.xml or try to set 'hbase.regionserver' inside HBaseConfiguration object, if you are going to use it directly from application code. Regards, Sanel On Tue, Jul 5, 2011 at 4:00 PM, Florin P florinp...@yahoo.com wrote: Hello! The

Re: Delete whole table HBase

2011-06-05 Thread Sanel Zukan
Hi, deleteTable() from HBaseAdmin would do the job. Take look at: http://hbase.apache.org/apidocs/org/apache/hadoop/hbase/client/HBaseAdmin.html#deleteTable%28byte[]%29 Maybe you want to call disableTable() before doing table delete too ;) Regards, sanel On Sat, Jun 4, 2011 at 12:36 PM,

Re: StarGate HTTP ERROR: 404

2010-10-11 Thread Sanel Zukan
Actually, this is not Stargate, but older REST service that was deprecated. To activate Stargate, copy $HBASE_HOME/contrib/stargate/* and $HBASE_HOME/contrib/stargate/lib/* to hbase lib directory ($HBASE_HOME/lib) and start it with: $HBASE_HOME/bin/hbase org.apache.hadoop.hbase.stargate.Main

Explicitly set HMaster address

2010-10-06 Thread Sanel Zukan
Hi to all, I'm working on a program that is trying to connect to HBase cluster via ssh tunneling feature. Basically, the cluster is set behind single entry point (one machine protected with firewall from outside access) and only ssh port allowed. ssh tunneling is done like this: ssh u...@host

Re: Explicitly set HMaster address

2010-10-06 Thread Sanel Zukan
to retrieve. As far as I know, only an information of which RegionServer is serving the region is exchanged between a client and the HMaster, and actual data is done between a client and a RegionServer. With best regards, Koji. On 2010/10/06, at 21:29, Sanel Zukan san...@gmail.com wrote: Hi