Member since
09-25-2015
356
Posts
382
Kudos Received
62
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
2439 | 11-03-2017 09:16 PM | |
1917 | 10-17-2017 09:48 PM | |
3803 | 09-18-2017 08:33 PM | |
4509 | 08-04-2017 04:14 PM | |
3458 | 05-19-2017 06:53 AM |
01-15-2020
07:40 AM
... you have to adapt the configuration to your needs, of course, by changing metastore host and warehouse dir, accordingly
... View more
11-21-2019
11:32 PM
Perfect its worked
... View more
09-23-2019
09:12 AM
Using the smae example od data, I've got something like that in my result, trying to have details of one or more than one partition with (desc formatted operation) The problem here si that each time I've got only information about one and only one partition, even if I'm specifying two or three. Do you know please how HIVE behave in this case ? Is it a bug ? Thank you
... View more
10-18-2017
08:06 AM
Thanks Deepesh and Divakar
... View more
08-04-2017
06:34 PM
1 Kudo
So indeed it was a corrupted client, in that case please accept my first answer.
... View more
01-03-2018
05:39 PM
@Félicien Catherin The tutorial has typo... you need to create normal table first using following sytax: CREATE TABLE FIREWALL_LOGS( time STRING, ip STRING, country STRING, status INT )
CLUSTERED BY (time) into 25 buckets
ROW FORMAT DELIMITED FIELDS TERMINATED BY '|'
LOCATION '/tmp/server-logs' TBLPROPERTIES("transactional"="true"); Once the above table is created you can convert it to ORC CREATE TABLE FIREWALL AS STORED AS ORC SELECT * FROM FIREWALL_LOGS;
... View more
10-05-2017
07:06 AM
Yes, metadata does store the columns name in its database. hive > show columns in table_name: hive> set hive.cli.print.header=true; To view the column names of your table.
... View more
07-08-2017
06:25 AM
It worked for me to change the database to mysql.
1.you need to create user and databases named 'superset' using mysql shell
GRANT ALL PRIVILEGES ON *.* TO 'superset'@'%' IDENTIFIED BY '*****' WITH GRANT OPTION;
create database superset; 2. change the config for Druid , set Mysql's hostname port user password .etc 3. start the druid, and it worked!
... View more
04-17-2017
05:04 AM
> I have millions of records in each table and hundreds of tables, so first option might not be optimal for big tables. > will try out the other options thank you
... View more