Member since
08-04-2015
3
Posts
3
Kudos Received
1
Solution
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1121 | 02-14-2019 01:41 PM |
02-14-2019
01:41 PM
2 Kudos
Hello Keith, If you go to the details web page for the namespace you created, you will see the Admin Group defined. The UI will provide a link on the name of the admin group that takes you to the Group details page for that group. There you can see the members, roles, and admins for the group. You should be an admin and a member automatically if you created the namespace. Because you are an admin for the group, you can add other members to the group if you want. Best, Harrison
... View more
03-22-2016
09:51 PM
1 Kudo
There is a documented example here: http://www.cloudera.com/documentation/archive/impala/2-x/2-1-x/topics/impala_tutorial.html#tut_external_partition_data_unique_2 The missing steps are: LOCATION should be '/user/root/parquet/' in CREATE statement CREATE statement likely missing partition and file_format information (e.g. depending on TIMESLOT type): PARTITIONED BY (TIMESLOT BIGINT) STORED AS PARQUET See reference: http://www.cloudera.com/documentation/enterprise/5-5-x/topics/impala_create_table.html Add the partitions to Impala so it knows they are there. e.g. ALTER TABLE ingest_parquet ADD PARTITION (TIMESLOT=201505141200) Best, Harrison
... View more