Member since
02-16-2016
176
Posts
197
Kudos Received
17
Solutions
My Accepted Solutions
Title | Views | Posted |
---|---|---|
3198 | 11-18-2016 08:48 PM | |
5693 | 08-23-2016 04:13 PM | |
1558 | 03-26-2016 12:01 PM | |
1455 | 03-15-2016 12:12 AM | |
15584 | 03-14-2016 10:54 PM |
03-25-2016
02:17 PM
2 Kudos
Is there a way to access NiFi Bulletins using NiFi Rest API ? Is there any documentation available on this ? My goal is to capture NiFi Bulletins using Rest API so I can take some kind of notification action rather than just displaying it in UI.
... View more
Labels:
- Labels:
-
Apache NiFi
03-25-2016
02:14 PM
1 Kudo
What are the possible values for memory Pool property in MonitorMemory Reporting Task ? I couldn't find any documentation around possible values for these.
... View more
Labels:
- Labels:
-
Apache NiFi
03-22-2016
05:17 PM
Thanks @Andrew Grande. Can you provide any example or point to any link on how this can be done
... View more
03-22-2016
02:19 AM
4 Kudos
Is there a way to capture error messages that appear in Bulletin for more than 5 minutes ? After an error, I want to log detail error message from Bulletin in a permanent log, so I can look up error later. Currently Bulletin error messages provide most amount of detail on error (including detail logs) but they rollover every 5 minutes. Is there another way of capturing detail error messages ?
... View more
Labels:
- Labels:
-
Apache NiFi
03-17-2016
12:59 AM
@Rachna Bakhru Please reply in comments if it is not a new answer. Here is some sample code to connect to a Kerberized cluster from JAVA program on Windows machine. Your steps should be similar. 1. Copy krb5.conf file to your Windows machine. 2. Copy different resource files to Windows. (core-site.xml,yarn-site.xml, hdfs-site.xml, hive-site.xml ) 3. create a . jaas file with following configuration. Client {
com.sun.security.auth.module.Krb5LoginModule required
useKeyTab=true
useTicketCache=false
renewTicket=true };
Change your login code as follows.
conf = new org.apache.hadoop.conf.Configuration();
try{
String principal = "<principal>";
String keytab = "<keytab location>";
conf.set("hadoop.security.authentication", "Kerberos");
conf.addResource(new Path("./core-site.xml"));
conf.addResource(new Path("./yarn-site.xml"));
conf.addResource(new Path("./hdfs-site.xml"));
UserGroupInformation.setConfiguration(conf);
UserGroupInformation.loginUserFromKeytab(principal, keytab); 5. Then launch JAVA program with following parameters and specify paths for krb5.conf and .jaas file. -Djava.security.auth.login.config="path-to-jaas-file" -Djava.security.krb5.conf="path-to-krb5.conf"
... View more
03-16-2016
02:26 PM
1 Kudo
Thank You @jwitt for clarification.
... View more
03-16-2016
01:16 PM
2 Kudos
Labels:
- Labels:
-
Apache Kafka
-
Apache NiFi
03-15-2016
01:30 AM
1 Kudo
@Michael Dennis Uanang Any update on this ? How many kafka brokers you have in your configuration ?
... View more
03-15-2016
12:13 AM
1 Kudo
@avijayan I have posted your information as a separate question and answer to clearly document list of available metrics.
... View more
03-15-2016
12:12 AM
3 Kudos
From an excellent answer by @avijayan https://github.com/apache/ambari/tree/trunk/ambari-server/src/main/resources/common-services/AMBARI_METRICS/0.1.0/package/files/service-metrics
... View more