Member since
01-19-2017
3656
Posts
624
Kudos Received
365
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
372 | 12-22-2024 07:33 AM | |
233 | 12-18-2024 12:21 PM | |
239 | 12-18-2024 08:50 AM | |
1043 | 12-17-2024 07:48 AM | |
370 | 08-02-2024 08:15 AM |
02-09-2016
07:51 PM
1 Kudo
@Eric OReilly You shouldn't put fetch.message.max.bytes to config/server.properties but to your ConsumerConfi see this doc If you are using console consumer you may pass a --consumer.config consumer.properties flag where consumer.properties file will contain this config value.
... View more
02-09-2016
07:28 PM
2 Kudos
1. To add on to Artem's idea. Disable IPv6 Temporarily
'echo 1 > /proc/sys/net/ipv6/conf/<interface-name>/disable_ipv6' eg 'echo 1 > /proc/sys/net/ipv6/conf/eth0/disable_ipv6' Disable IPv6 Permanently across reboots Edit the /etc/sysctl.conf and the following lines.
# to disable IPv6 on all interfaces system wide
net.ipv6.conf.all.disable_ipv6 = 1 # to disable IPv6 on a specific interface (e.g., eth0, lo) net.ipv6.conf.lo.disable_ipv6 = 1 net.ipv6.conf.eth0.disable_ipv6 = 1 2. Check the NTP server configuration or just restart NTP on both servers
... View more
02-09-2016
06:00 PM
@rgarcia why can't you just all together #drop the database and then retry if it fails Then just yum remove postgresql* and reinstall yum install postgresql* That could be much faster though I know the urge to know why is unavoidable
... View more
02-09-2016
04:08 PM
1 Kudo
@Suresh Bonam Can you have a look at this doc
... View more
02-09-2016
10:36 AM
1 Kudo
check this link Was your code like below sqoop import \ --connect jdbc:mysql://mysql.example.com/sqoop \ --username sqoop \
--password sqoop \
--table visits \ --incremental append \ --check-column id \ --last-value 1 16/03/18 08:16:36 INFO tool.ImportTool: Incremental import complete! ... 16/03/18 08:16:36 INFO tool.ImportTool: --incremental append 16/03/18 08:16:36 INFO tool.ImportTool: --check-column id 16/03/18 08:16:36 INFO tool.ImportTool: --last-value 2
... View more
02-09-2016
09:31 AM
@Kibron Gebrehiwot could you rename your current HDP.repo to eg mv HDP.repo XXXHDP.repo.BCK the run these 2 commands as root # yum clean metadata # yum clean all Then recreate the HDP.repo with the attached contents don't change anything and then run # yum repolist Then retry
... View more
02-09-2016
06:57 AM
2 Kudos
@Vinod Nerella For sure you have a connection issue"ERROR [main]DBAccessorImpl:102-Errorwhile creating database accessor" That's a driver issue see link I would advice you to use the most supported DB as Jonas mentioned mariaDB is not supported and getting help from this forum wont be that easy.For the beginning experiment with supported sofware
... View more
02-09-2016
05:48 AM
Your user hive cannot connect to the database."Unable to open a test connection to the given database. JDBC url = jdbc:mysql://avechdmq1. ae.ge.com/hive?createDatabaseIfNotExist=true, username = hive. Terminating connection pool (set lazyInit to true if you expe ct to start your database after your app)." Are you suing the derby instance ? and can you check that the user hive can connect to the instance. If not please this link could help your savior !
... View more
02-08-2016
10:04 PM
2 Kudos
@Robin Dong Please use Ambari to restart the hive services or components at one but if that fails try one at a go . I cant remember in which order but after a while the alerts will go away. restart-hive.jpg
... View more
02-08-2016
03:39 PM
1 Kudo
@Rahul Tikekar Try restarting your NTP servers ! syncing-multiple-servers.pdf
... View more