Member since
10-22-2015
241
Posts
86
Kudos Received
20
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2431 | 03-11-2018 12:01 AM | |
1462 | 01-03-2017 10:48 PM | |
1862 | 12-20-2016 11:11 PM | |
3643 | 09-03-2016 01:57 AM | |
1381 | 09-02-2016 04:55 PM |
06-18-2016
12:59 PM
It is work in progress: https://issues.apache.org/jira/browse/NIFI-991
... View more
06-17-2016
05:38 PM
hbase(main):001:0> scan 't2' ROW COLUMN+CELL
5842 column=pressure:in, timestamp=1466184191234, value=240 5842 column=pressure:out, timestamp=1466184191234, value=340 5842 column=temp:in, timestamp=1466184191234, value=50 5842 column=temp:out, timestamp=1466184191234, value=30 5842 column=vibration:, timestamp=1466184191234, value=4 1 row(s) in 0.4840 seconds
... View more
06-17-2016
05:26 PM
I created a table with schema similar to yours. create 't2', {NAME => 'pressure'}, {NAME => 'temp'}, {NAME => 'vibration'} I created hbase.csv with the line in your first post. I then executed the following (HDP 2.5.0.0-267 which is 1.1.2 with some patches): hbase org.apache.hadoop.hbase.mapreduce.ImportTsv -Dimporttsv.separator=',' -Dimporttsv.columns='HBASE_ROW_KEY,temp:in,temp:out,vibration,pressure:in,pressure:out' t2 hbase.csv 2016-06-17 17:23:18,142 INFO [main] mapreduce.Job: Running job: job_1462297012839_0003 2016-06-17 17:23:29,332 INFO [main] mapreduce.Job: Job job_1462297012839_0003 running in uber mode : false
2016-06-17 17:23:29,335 INFO [main] mapreduce.Job: map 0% reduce 0% 2016-06-17 17:23:38,466 INFO [main] mapreduce.Job: map 100% reduce 0% 2016-06-17 17:23:38,478 INFO [main] mapreduce.Job: Job job_1462297012839_0003 completed successfully
2016-06-17 17:23:38,670 INFO [main] mapreduce.Job: Counters: 31
... View more
06-17-2016
12:41 PM
The example from http://hbase.apache.org/book.html#importtsv doesn't use quote around columns parameter. Can you pastebin the output from ImportTsv so that we can see the full error trace ? Please turn on debug logging.
... View more
06-16-2016
01:40 PM
-Dimporttsv.separator= ',' There was extraneous space between equals and ',' Please remove it
... View more
06-15-2016
01:57 PM
Can you pastebin more of the master log before the error happened ? Of particular interest is MasterProcWALs
... View more
06-15-2016
01:16 PM
Which release of hbase are you using ?
... View more
06-14-2016
09:45 PM
I don't have access to Windows box at the moment. Is it possible for you to find a Mac / Linux to try the Spring repo ?
... View more
06-14-2016
07:28 PM
Try connecting to VM using hbase shell - with proper hbase-site.xml on classpath
... View more
06-14-2016
06:02 PM
Let's focus on java connection from Spring in this thread. Please verify that you can access UI of VM - basically hbase runs in the VM.
... View more