Re: When do I download the older releases of Apache NiFi

2019-02-27 Thread Mike Thomsen
If you go the Docker route, you can just select whatever tag you want and not worry about this. On Wed, Feb 27, 2019 at 4:25 PM Vijay Chhipa wrote: > Joe, > > Thank you for explaining it. > I am good for now. > > Vijay > > On Feb 27, 2019, at 12:15 PM, Joe Witt wrote: > > Vijay, > > The

Re: Build Failures on compile from source - rel/nifi-1.7.1

2019-02-27 Thread Mike Thomsen
As a rule of thumb, if you have Nexus setup in your organization and weird stuff like this happens, it's a good bet that something got miscached by Nexus. On Wed, Feb 27, 2019 at 10:51 AM Advith Nagappa wrote: > I was able to build it successfully, both from release tarball and > rel/nifi-1.7.1

Re: How to resolve classes for Groovy in ExecuteScript

2019-02-27 Thread Mike Thomsen
FYI, on 1.10.0-SNAPSHOT this works without modifying the classpath in ExecuteScript: import ch.qos.logback.classic.encoder.* import ch.qos.logback.core.rolling.* f = new RollingFileAppender() t = new ch.qos.logback.core.rolling.TimeBasedRollingPolicy() Also, see Shawn's point about you not

Re: Invalid CORS request error on NiFi v1.8.0 and 1.9.0 behind nginx

2019-02-27 Thread Andy LoPresto
Denes, I don’t consider it “invalidating” the server-side check, because the server doesn’t actually enforce the CORS check. It evaluates a request (specifically the Origin header) and has a response header telling the _browser_ how it should behave. The browser is the one that applies the

Re: When do I download the older releases of Apache NiFi

2019-02-27 Thread Joe Witt
Vijay, The downloads page is meant to link to the current and previous release and otherwise point to the archives. This is generally something the ASF requests because the current links are served by mirrors whereas older ones come from ASF infra/archives and have stricter bandwidth/rate

Re: When do I download the older releases of Apache NiFi

2019-02-27 Thread Vijay Chhipa
Thanks Bryan and Tomislav. Is it possible to put a link to that on the current download page: https://nifi.apache.org/download.html ? Vijay > On Feb 27, 2019, at 11:56 AM, Tomislav Novosel wrote: > > Hi Vijay, > > here you can find older releases:

Re: When do I download the older releases of Apache NiFi

2019-02-27 Thread Pat White
Hi Vijay, Think there's a link towards the bottom of the download page, which points to the archive, which goes here: https://archive.apache.org/dist/nifi/ patw On Wed, Feb 27, 2019 at 11:52 AM Vijay Chhipa wrote: > Hi, > > Noticed that with the release of NiFi 1.9.0 there is not a link to

Re: When do I download the older releases of Apache NiFi

2019-02-27 Thread Tomislav Novosel
Hi Vijay, here you can find older releases: https://archive.apache.org/dist/nifi/ BR, Tom On Wed, 27 Feb 2019, 18:52 Vijay Chhipa, wrote: > Hi, > > Noticed that with the release of NiFi 1.9.0 there is not a link to > download version 1.7.1 and older, > > Is there a link to the archived

Re: When do I download the older releases of Apache NiFi

2019-02-27 Thread Bryan Bende
Hello, All ASF software is archived here: https://archive.apache.org NiFi specifically is here: https://archive.apache.org/dist/nifi/ Thanks, Bryan On Wed, Feb 27, 2019 at 12:52 PM Vijay Chhipa wrote: > > Hi, > > Noticed that with the release of NiFi 1.9.0 there is not a link to download

When do I download the older releases of Apache NiFi

2019-02-27 Thread Vijay Chhipa
Hi, Noticed that with the release of NiFi 1.9.0 there is not a link to download version 1.7.1 and older, Is there a link to the archived versions? Thanks smime.p7s Description: S/MIME cryptographic signature

Re: How to resolve classes for Groovy in ExecuteScript

2019-02-27 Thread James McMahon
It is difficult to get this to work. Error shown below, as well as my code. What needs to be done so that this works? I am willing to change from Groovy to Python if there is a concrete example that works in Python you can direct me to, for log rolling based on log size. What I did: 1.

Re: Log Queries being executed by PutDatabaseRecord

2019-02-27 Thread Matt Burgess
True, at a DEBUG level we could output the record values, although for large flow files this will be quite verbose :) Also the point of the ?s is not necessarily to not show the values, but that we are technically only issuing one statement (i.e. PreparedStatement), and just the values change.

Re: Build Failures on compile from source - rel/nifi-1.7.1

2019-02-27 Thread Advith Nagappa
I was able to build it successfully, both from release tarball and rel/nifi-1.7.1 tag. I think this was because of my maven inhouse repository settings. Appreciate all the help.. On Wed, Feb 27, 2019 at 1:39 PM Mike Thomsen wrote: > Try the source release from nifi.apache.org in the off

Re: SELECTHIVE_1_1_QL - NiFi 1.9.0 Missing

2019-02-27 Thread Matt Burgess
Although the NAR is not included in the distribution, it is built and published during the release process, you can find the 1.9.0 Hive 1.1 NAR here: https://repository.apache.org/content/repositories/releases/org/apache/nifi/nifi-hive_1_1-nar/1.9.0/ Regards, Matt On Wed, Feb 27, 2019 at 8:08

Re: NIFI Unit Test Error with @OnScheduled annotation

2019-02-27 Thread Phillip Grenier
Kumar, I would validate you included the nifi-mock in your pom.xml. For more information on testing review the developer guide or this post

Re: SELECTHIVE_1_1_QL - NiFi 1.9.0 Missing

2019-02-27 Thread Pierre Villard
Hi, This bundle is not included in the default tarball and must be manually compiled from code. You can download the sources here [1] and build NiFi using the appropriate profile. For example: mvn clean install -Pinclude-hive1_1 The tarball will be created and available in nifi-assembly/target

SELECTHIVE_1_1_QL - NiFi 1.9.0 Missing

2019-02-27 Thread Sri Harsha Chavali
Hi All, We are trying to use SELECTHIVE_1_1QL processor along with the 1_1 controller in NiFi 1.9.0 but don't see the processors being available. I checked the lib directory of the download and found that "nifi-hive_1_1-nar-1.9.0.nar" was not available in the windows binary download. We had to

Re: Log Queries being executed by PutDatabaseRecord

2019-02-27 Thread Mike Thomsen
I could be mistaken, but I think that's standard JDBC behavior to not show the values. That said, yes it would be a fairly trivial improvement to add a dump of the record to a debug logger. On Wed, Feb 27, 2019 at 4:36 AM Fred Affini wrote: > Hi Matt and Phillip, thanks a lot for the help > >

Re: Build Failures on compile from source - rel/nifi-1.7.1

2019-02-27 Thread Mike Thomsen
Try the source release from nifi.apache.org in the off chance that there is some slight difference between rel/nifi-1.7.1 and that. I was building from our official release tarball. On Wed, Feb 27, 2019 at 7:12 AM Advith Nagappa wrote: > I just did that. Same issue again - nifi-hive-processors.

Re: Build Failures on compile from source - rel/nifi-1.7.1

2019-02-27 Thread Advith Nagappa
I just did that. Same issue again - nifi-hive-processors. On Wed, Feb 27, 2019 at 12:41 PM Mike Thomsen wrote: > I just did a build of 1.7.1 from the official source release and didn't > run into that error. Try purging $HOME/.m2/repository because you might > have a broken download of some

Re: Build Failures on compile from source - rel/nifi-1.7.1

2019-02-27 Thread Mike Thomsen
I just did a build of 1.7.1 from the official source release and didn't run into that error. Try purging $HOME/.m2/repository because you might have a broken download of some Hadoop dependencies. On Wed, Feb 27, 2019 at 6:08 AM Advith Nagappa wrote: > Attaching full build logs > > > On Wed, Feb

Re: Build Failures on compile from source - rel/nifi-1.7.1

2019-02-27 Thread Arpad Boda
That’s ok. Could you attach the _full_ build log or at least the first error? The one you attached begins in the middle of the build and already shows previous failures. From: Advith Nagappa Reply-To: "users@nifi.apache.org" Date: Wednesday, 27 February 2019 at 11:00 To:

Re: Build Failures on compile from source - rel/nifi-1.7.1

2019-02-27 Thread Advith Nagappa
``` openjdk version "1.8.0_191" OpenJDK Runtime Environment (build 1.8.0_191-8u191-b12-2ubuntu0.16.04.1-b12) ``` On Wed, Feb 27, 2019 at 10:50 AM Arpad Boda wrote: > What’s your Java version? > > > > *From: *Advith Nagappa > *Reply-To: *"users@nifi.apache.org" > *Date: *Wednesday, 27 February

Re: Build Failures on compile from source - rel/nifi-1.7.1

2019-02-27 Thread Arpad Boda
What’s your Java version? From: Advith Nagappa Reply-To: "users@nifi.apache.org" Date: Wednesday, 27 February 2019 at 10:42 To: "users@nifi.apache.org" Subject: Build Failures on compile from source - rel/nifi-1.7.1 Hello, I am trying to build Nifi from source and am using the github tag

Build Failures on compile from source - rel/nifi-1.7.1

2019-02-27 Thread Advith Nagappa
Hello, I am trying to build Nifi from source and am using the github tag rel/nifi-1.7.1. on doing: `mvn -T C2.0 clean install -Pinclude-grpc` I have attached the errors for reference. nifi-hive-processors seems to be the problem in my case. Any advise on which branch/tag is safe to build from

Re: Log Queries being executed by PutDatabaseRecord

2019-02-27 Thread Fred Affini
Hi Matt and Phillip, thanks a lot for the help Setting PutDatabaseRecord log level to DEBUG (changing Bulletin Level in the GUI or insert the XML line Matt sent) almost gave me what I need, the log nos show: 10:32:55 CETDEBUGadcd1a7d-1000-1169-8aa8-92d8f2e891e5