Member since
07-29-2019
640
Posts
113
Kudos Received
48
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
7337 | 12-01-2022 05:40 PM | |
1988 | 11-24-2022 08:44 AM | |
2872 | 11-12-2022 12:38 PM | |
969 | 10-10-2022 06:58 AM | |
1407 | 09-11-2022 05:43 PM |
10-18-2019
01:11 PM
@Jena If your problem was resolved with the solution proposed please take some time to accept the answer so other members can reference it for similar issues and reward the member who spent her/his time to respond to your question this ensures that all questions get attention.
... View more
10-13-2019
06:44 AM
@Mostafa01 The link in Tim's reply above has been updated and should correctly resolve now.
... View more
10-08-2019
03:25 AM
Moved because this question differed significantly from the original thread and the original question was marked 'solved' in May 2017.
10-06-2019
11:58 AM
Well, you didn't say what your background was or how much experience with Hadoop you currently have from an administrator's perspective. Assuming you are a beginner, I'd recommend reading over a book like this one:
• Murthy, A., Vavilapalli, V., Eadline, D., Niemiec, J., & Markham J. (2014). Apache Hadoop YARN: Moving beyond MapReduce and Batch Processing with Apache Hadoop 2. Upper Saddle River, NJ: Addison-Wesley Professional
…to get the relevant introductory information before you start in on your project. Good luck, and I look forward to seeing the results of your work on GitHub in the future!
... View more
10-03-2019
07:57 PM
The above post was removed from an existing thread that was marked as "solved" in 2015 and wasn't actually the same question.
... View more
10-02-2019
07:23 PM
@ravikiran_sharm we've passed along your concerns and note of frustration to the relevant parties internally and they are actively working on your case. They say they are working with you directly to get this resolved.
... View more
09-27-2019
03:03 AM
Take MySQL backup before doing this operation. Go to MySQL use <DB>; select * from TBLS where tbl_name = '<table_name>'; Make a note of TBL_ID from the table and delete entries from TABLE_PARAMS , TBL_COL_PRIVS , TBL_PRIVS using where clause TBL_ID After getting this done, try the below command. delete from TBLS where tbl_name = '<table_name>'; Now open hive shell and check for the table.
... View more
09-10-2019
06:19 PM
I am using hive.
... View more
09-09-2019
09:00 PM
1 Kudo
@DrJ Not an expert on MongoDb, but your hint is that the yum command-line package-management utility is telling you that something is wrong with the file it's using to assist in the installation.
Verify that you have a file at the location /etc/yum.repos.d/mongod-org-3.4.repo or whatever it's supposed to be using by using the file command, a la:
[bbrooks@ip-172.16.0.0 box]$ file /etc/yum.repos.d/mongod-org-3.4.repo
/etc/yum.repos.d/mongod-org-3.4.repo: ASCII text
[bbrooks@ip-172.16.0.0 box]$
…and once you've verified that it's present (is it supposed to be mongod-org-3.4.repo or mongodb-org-3.4.repo ?), compare the first couple of lines in the file to a few other ones located in the /etc/yum.repos.d/ directory and check that you haven't inadvertently introduced spaces or something into the file.
... View more
09-08-2019
08:34 AM
1 Kudo
Due the GUI still doesn't include the delete option, the workaround I'm using is to execute this curl comand: CURL -X DELETE http://localhost:9090/api/v1/schemaregistry/schemas/<name> Using the last version at this moment, hortonworks-registry-0.8.0-rc3, which includes a fix for ISSUE-574 that avoids error re-creating a previously deleted schema with the same name, works fine. Hope it helps. Regards Marcelo.
... View more