Re: [DISCUSS] Apache NiFi MiNiFi C++ 0.5.0

2018-05-23 Thread Jeremy Dyer
No problem. Let me know when you get that PR merged in and I’ll kick off the release process Thanks - Jeremy Dyer On Wed, May 23, 2018 at 1:20 PM -0400, "Marc" wr

Re: Nifi Docker cluster issue

2018-05-23 Thread Anil Rai
Team, I did not hear back on this. Here are some additional scenario's. We have a 1 node cluster. We have a flow. When we run that flow, we get the below error. After which we see the following message in canvas - Action cannot be performed because there is currently no Cluster Coordinator elected.

Re: [DISCUSS] Apache NiFi MiNiFi C++ 0.5.0

2018-05-23 Thread Marc
Jeremy, Thanks for stepping up! Aldrin, I moved one ticket over that should be in 0.5.0 for which a PR exists. Aside from that we should be good to go when that is merged. On Wed, May 23, 2018 at 11:15 AM, Andy Christianson wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > >> Sounds

Re: How to run NiFi on HTTPS

2018-05-23 Thread Andy LoPresto
I’d like to clarify some of the details here to ensure that Brajendra and other community users who find this have the correct information. The decision of which SSL/TLS protocol version (SSLv3, TLSv1, TLSv1.1, TLSv1.2) to use is made in conjunction by the server and the client (in this case NiF

Re: [DISCUSS] Apache NiFi MiNiFi C++ 0.5.0

2018-05-23 Thread Andy Christianson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > Sounds great and I think we've gotten some important changes into the > codebase from when this first started. Do we have all the > appropriate/needed issues tagged for this release? I support this release. For this release, I would like to bring

Re: minificpp AppVeyor

2018-05-23 Thread Aldrin Piri
It is configured in a similar manner as Travis via an appveyor.yml. We could stub out this config and just have it exit successfully. Reference available at https://www.appveyor.com/docs/build-configuration/. I created an issue to get this done: https://issues.apache.org/jira/browse/MINIFICPP-50

Re: minificpp AppVeyor

2018-05-23 Thread Andy Christianson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > None here. I think it was initially added by accident when we were > initializing both MiNiFi Java and C++. There have been some requests for > Windows specific functionality that would have that come in handy. To > avoid the churn for ASF Infra,

Re: [DISCUSS] Apache NiFi MiNiFi C++ 0.5.0

2018-05-23 Thread Aldrin Piri
Sounds great and I think we've gotten some important changes into the codebase from when this first started. Do we have all the appropriate/needed issues tagged for this release? https://issues.apache.org/jira/browse/MINIFICPP-420?jql=project%20%3D%20MINIFICPP%20AND%20resolution%20%3D%20Unresolve

Re: MiNiFi PeriodicStatusReporter and AWS CloudWatch

2018-05-23 Thread Jeff Zemerick
Thanks! I will take a look at those. Jeff On Wed, May 23, 2018 at 9:20 AM Aldrin Piri wrote: > Hey Jeff, > I don't think there is anything that maps directly to the functionality you > are trying to cover. From a broader, ecosystem standpoint there is a > Processor in NiFi that transmits data

Re: MiNiFi PeriodicStatusReporter and AWS CloudWatch

2018-05-23 Thread Aldrin Piri
Hey Jeff, I don't think there is anything that maps directly to the functionality you are trying to cover. From a broader, ecosystem standpoint there is a Processor in NiFi that transmits data to Cloudwatch as part of the AWS NAR. It might be helpful to explore what functionality is there especi

Re: minificpp AppVeyor

2018-05-23 Thread Aldrin Piri
None here. I think it was initially added by accident when we were initializing both MiNiFi Java and C++. There have been some requests for Windows specific functionality that would have that come in handy. To avoid the churn for ASF Infra, we could potentially set it up so that it is a no-op sh

MiNiFi PeriodicStatusReporter and AWS CloudWatch

2018-05-23 Thread Jeff Zemerick
Hi everyone, I'm looking for ways to monitor a distributed fleet of MiNiFi (Java) installations. I'd like essentially a dashboard that shows the overall health of the installations. I can leverage AWS CloudWatch for the dashboard capability with the added benefit of CloudWatch alarms. The Periodic

Re: How to run NiFi on HTTPS

2018-05-23 Thread Milan Das
I use the following script the generate certificate openssl req -new -keyout out/$I.key -out out/$I.request -days 365 -nodes -subj "/C=US/ST=California/L=Irvine/O=example com/CN=${I}" -newkey rsa:2048 My complete script I use (you can refer but I can not support the script for your need) https:

RE: How to run NiFi on HTTPS

2018-05-23 Thread Brajendra Mishra
I am using openssl for creating SSL certificate but I am unable to figure out which option(s) is required to make TLS supported certificate. Could you please help me out on this. I am not aware much about these certificates and all? Brajendra Mishra Persistent Systems Ltd. -Original Message

Re: How to run NiFi on HTTPS

2018-05-23 Thread Milan Das
Hi Bajendra, TLS vs SSL is all depends on how you generate the SSL certificates. If the SSL certificate is TLS 1.2 then JVM SSL protocol will use TLS. Regards, Milan Sr. Architect-- Interset Inc On 5/23/18, 7:40 AM, "Brajendra Mishra" wrote: Hi Andy, Thanks a lot for you valuable

RE: How to run NiFi on HTTPS

2018-05-23 Thread Brajendra Mishra
Hi Andy, Thanks a lot for you valuable inputs. I could found the actual resolution after debugging the issue. Earlier I was using IBM java 8 instead of Oracle Java 8/open JDK 8, where SSLv3 Protocol is not enabled by default, hence I was facing this issue. Now I am able to see the NiFi UI secur