Member since
03-07-2019
158
Posts
53
Kudos Received
33
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
6396 | 03-08-2019 08:46 AM | |
4354 | 10-17-2018 10:25 AM | |
2782 | 10-16-2018 07:46 AM | |
2126 | 10-16-2018 06:57 AM | |
1773 | 10-12-2018 09:55 AM |
10-17-2018
12:40 PM
@Jung Heedong Of course, it may be best to start a new post if you still have any issues, as it will have better visibility. You can tag users (ex. me) in posts by typing '@' followed by their username. That way we get notified when you post 🙂
... View more
10-17-2018
12:18 PM
@Jung Heedong Please refer to this JIRA: https://issues.apache.org/jira/browse/KNOX-1074 You can try the following workaround, if you are unable to upgrade by making changes in service.xml and rewrite.xml. You'd find these at /var/lib/knox/data-<yourHDPversion>/services/ambariui/2.2.0/service.xml
/var/lib/knox/data-<yourHDPversion>/services/ambariui/2.2.0/rewrite.xml
Add the following rule in service.xml <route path="/ambari/api/v1/views/WORKFLOW_MANAGER/versions/**/instances/testwfm/resources/proxy/**"> <rewrite apply="AMBARI/ambari/api/outbound/workflowmanager" to="response.body"/>
</route> And a rule in rewrite.xml <filter name="AMBARI/ambari/api/outbound/workflowmanager">
<content type="text/plain" asType="text/xml">
</content>
</filter> (restart knox afterwards) Please take a moment to click accept answer, if this helped you. It will help others find the solution quickly, when looking for the same issue online.
... View more
10-17-2018
11:10 AM
@Jung Heedong Does accessing the workflow manager view work OK when you're bypassing knox and accessing via ambari directly? You may be running into a known issue, regarding WFM which results in the 'remote API failed' error if accessed through knox. This is resolved in HDP 3.
... View more
10-17-2018
10:25 AM
1 Kudo
@Jung Heedong Are you using Knox by any chance?
... View more
10-17-2018
07:36 AM
Hi @Sivakumar Mahalingam Try creating your table like this instead; CREATE TABLE IF NOT EXISTS employee2 (eid int, name String,salary String)
ROW FORMAT SERDE 'org.apache.hadoop.hive.contrib.serde2.MultiDelimitSerDe' WITH SERDEPROPERTIES ("field.delim"="^A","line.delim" = '\n')
STORED AS TEXTFILE; PS. If this helps to resolve your issue, please take a moment to click accept answer 🙂
... View more
10-16-2018
09:30 AM
@Wil Don Glad to hear your issue got resolved 🙂 If you have a moment please click accept answer so that others will be able to find the solutions quickly when searching for the same issue on the community site
... View more
10-16-2018
07:46 AM
1 Kudo
@James Singh Are you using CRON Scheduling for the generate flowfile processor? If so, you could be hitting; https://issues.apache.org/jira/browse/NIFI-3242 The fix for NIFI-3242 is included in HDF3.2
... View more
10-16-2018
06:57 AM
@Wil Don Do you have this error with any other commands? Any chance you could share the full stack trace of the error? When you encounter this error, do you see any errors on the same timestamp in /var/log/ambari-server/ambari-server.log and the hive view log? The hive view logs are located here; In case of hive view 2.0 # /var/log/ambari-server/hive20-view/hive20-view.log In case of hive view 1.5.0 # /var/log/ambari-server/hive-next-view/hive-view.log Also, here are some other examples of the same error and resolutions; https://community.hortonworks.com/questions/8735/hive-view-can-not-used-for-s020-data-storage-error.html https://community.hortonworks.com/content/supportkb/193858/errors020-data-storage-when-migrating-saved-querie.html
... View more
10-12-2018
09:55 AM
@David Sargrad Have a look at this; https://community.hortonworks.com/articles/222365/how-to-configure-git-for-nifi-registry-in-hdf-32.html
... View more
10-12-2018
06:40 AM
@Veerendra Nath Jasthi Yeah, that doesn't work because our format should be slightly different. Try this, I just tested and it works fine; curl -i -X PUT -H 'Content-Type: application/json' http://<nifi-host>:9090/nifi-api/processors/6391462d-0166-1000-0000-000002b215e0 -d '{"revision":{"clientId":"63911e66-0166-1000-3f04-f0e4a96a47da","version":"4"},"component":{"id":"6391462d-0166-1000-0000-000002b215e0","config":{"properties":{"Input Directory":"/some/new/dir"}}}}' PS. if you found my answers helpful, please click accept answer 🙂
... View more