Member since
08-09-2018
5
Posts
0
Kudos Received
0
Solutions
08-24-2018
11:27 PM
@hadoopuser2000, Are you still having trouble? The screen shots indicate you need to uninstall before installing again, so I'd try that. I wasn't clear how the screen shots were related to the problem connecting to CM. First, make sure CM is running; # netstat -nap |grep 7180 If you see that it is listening, make sure that you can connect to the host on which Cloudera Manager is installed from whatever client you are using to connect to Cloudera Manager. By public address, the doc means that you should use whatever hostname will resolve to an IP that lets you connect to that host and port.
... View more
08-24-2018
01:28 AM
Hi, you can inspect the avro files with avro-tools utility. create table work.test_avro ( i int, s string ) stored as avro;
insert into work.test_avro select 1, "abc";
set hive.exec.compress.output = true
set hive.exec.compress.intermediate = true;
set avro.output.codec= snappy;
insert into work.test_avro select 2, "abcdefgb"; In this table there are two file, one compressed with snappy one without compression, you can check it with get-meta command: $ avro-tools getmeta 000000_0
avro.schema {"type":"record","name":"test_avro","namespace":"work","fields":[{"name":"i","type":["null","int"],"default":null},{"name":"s","type":["null","string"],"default":null}]}
$ avro-tools getmeta 000000_0_copy_1
avro.schema {"type":"record","name":"test_avro","namespace":"work","fields":[{"name":"i","type":["null","int"],"default":null},{"name":"s","type":["null","string"],"default":null}]}
avro.codec snappy
... View more
08-15-2018
11:51 PM
Can you please share logs ? plus share screen of that particular hosts. Thanks
... View more