Member since
07-01-2015
460
Posts
78
Kudos Received
43
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
1360 | 11-26-2019 11:47 PM | |
1309 | 11-25-2019 11:44 AM | |
9517 | 08-07-2019 12:48 AM | |
2193 | 04-17-2019 03:09 AM | |
3520 | 02-18-2019 12:23 AM |
01-02-2019
07:59 AM
I think it is indexed in the internal search index of the Hue service. But this is just a guess.. did not checked the source code.
... View more
01-02-2019
07:44 AM
I think you are just receiving a warning about the fact that the system swapped out some pages. Cloudera recommends to set the swapping to a minimum level (by setting swappiness to 1 https://www.cloudera.com/documentation/enterprise/latest/topics/cdh_admin_performance.html) Even if you do not run anything, your OS can swap out some pages, so you should probably change this system settings and then the warning will go away,
... View more
12-12-2018
04:25 AM
1 Kudo
The error indicates your client (kafka-sentry) tries to connect with Kafka service but does not show up any valid ticket from KDC. So try to obtain a valid ticket first with kinit and then try again.
... View more
12-11-2018
09:11 AM
It looks like a connection issue to your mysql db, is it? Also, are you sure that the hostname resolution works in your case correctly? You try mysql from command line without specifying the host (so it connects locally) but in your config there is a FQDN defined.
... View more
12-11-2018
09:06 AM
Try to check your trash directories as well, it can consume quite a lot of spaces.
... View more
12-11-2018
09:01 AM
2 Kudos
Lets assume your timestamp column is "t", you just calculate the total minutes for the given day from the timestamp and then filter with OR - either it is more than 20*60 +30 (20:30:00) or is less than 8*60 (08:00:00). select * from
mytable
where ( date_part('hour', t)* 60 + date_part( 'minute', t) ) >= (20*60+30) or
( date_part('hour', t)* 60 + date_part( 'minute', t) ) < (8*60)
... View more
11-22-2018
12:38 AM
You have something definitely wrong in the configuration: Is the host running the mysql database called really "mysql" ? (Because your JDBC connect string looks like this). Can you do the following: Get the MYSQL server hostname Get the MYSQL root username and password And try from every host: mysql -h <MYSQLHOSTNAME> -u <ROOTUSER> -p If you are able to connect, then your database is accesible from every node.
... View more
11-22-2018
12:32 AM
I was not able to set Name format, so opted for the second, and it resolved the issue. Thanks @bgooley!
... View more
11-22-2018
12:22 AM
Hi, I think installing it via system package manager is a better solution, but in your case I miss a command to change PATH variable. So basically you downloaded, extracted the jdbc driver, but it is not visible. Make it visible system wide by changing your env variables, or put this jdbc driver into a directory where you PATH is pointing to.
... View more