Re: [EXT] [discuss] release apache nifi 1.9.0

2019-02-06 Thread Charlie Meyer
Hoping I am not too late to the party, but it would be fantastic if https://github.com/apache/nifi/pull/3253 could have the comments on it addressed and included the 1.9 release -Charlie On Wed, Feb 6, 2019 at 9:08 PM Joe Witt wrote: > MarkB - i dont have any issue with that being include but

Re: Load issues

2018-10-23 Thread Charlie Meyer
Also, we've seen flows automatically throttled if provenance (or other repositories) can't keep up. Tuning the configs and switching drives (gp2 -> io1) helped On Tue, Oct 23, 2018, 19:38 Milan Das wrote: > Did you increase the no. of Concurrent Tasks and Run Duration on slow > processors ? > >

Re: Nifi build failed - 1.7.1

2018-09-03 Thread Charlie Meyer
Hi, I had a similar problem just a bit ago and Scott kindly helped me out. The solution he provided might help you as well: http://apache-nifi-developer-list.39713.n7.nabble.com/failed-to-build-nifi-1-8-0-SNAPSHOT-on-OSX-high-sierra-td19426.html On Mon, Sep 3, 2018 at 1:28 PM Arunkumar wrote:

Re: failed to build nifi 1.8.0-SNAPSHOT on OSX high sierra

2018-08-16 Thread Charlie Meyer
successfully build? Try brew uninstall > --force node and then try mvn clean install. > > -Scott > > On Thu, Aug 16, 2018 at 10:27 AM Charlie Meyer < > charlie.me...@civitaslearning.com> wrote: > > > Hello, > > > > I'm attempting to build 1.8.0-snap on osx high

failed to build nifi 1.8.0-SNAPSHOT on OSX high sierra

2018-08-16 Thread Charlie Meyer
Hello, I'm attempting to build 1.8.0-snap on osx high sierra and am running into the following nodejs error: [INFO] Running 'npm --cache-min Infinity install' in /Users/cmeyer/opt/nifi/nifi/nifi-nar-bundles/nifi-standard-bundle/nifi-jolt-transform-json-ui/target/frontend-working-directory

Re: Should the elastic search client's tllmomorrow and ask service impl get renamed before 1.7?

2018-06-10 Thread Charlie Meyer
I'm gonna jump me know a day without women are you going so let a man and I'll nknnock knock it k and I'll fill n never get mm forget kkjinnock it out and let it me I can illoyiintjvhjhmbmhbnnnjkyolokiklu to the of you know know if I meNikki'sklnobn the I don't own the car parked Atkins I will be

Re: Should the elastic search client service impl get renamed before 1.7? I'm I getting muyyiugjjjjj your lkpmllomnj is like o huglll is m

2018-06-10 Thread Charlie Meyer
I'm going out for dinner tonight if we Mom mmomnlokk let other LM sorry to be homlmmmkmmolle with On Sun, Jun 10, 2018, 06:46 Mike Thomsen wrote: > The current implementation uses the last stable release of the 5.X client > from Elastic, and 6.X is already mature so we'll need to be able to

Re: NiFi code re-use

2018-05-12 Thread Charlie Meyer
We do this often by leveraging the variable registery and the expression language to make components be more dynamic and reusable -Charlie On Sat, May 12, 2018, 20:01 scott wrote: > Hi Devs, > > I've got a question about an observation I've had while working with > NiFi.

Re: Custom Controller Service

2018-04-26 Thread Charlie Meyer
Hello, I'm working to see what we can share, but for a start, here is how we handle the delegating controller service: package com.civitaslearning.nifi.service.impl; import org.apache.nifi.components.PropertyDescriptor; import org.apache.nifi.controller.AbstractControllerService; import

Re: Custom Controller Service

2018-04-25 Thread Charlie Meyer
Chiming in a bit late on this, but we faced this same issue and got around it by implementing a custom controller service which acts as a "router" to different dbcp services. It exposes a method which given a uuid, returns back the DBCPservice that corresponds with that uuid if it exists using

Re: ListSFTP incoming relationship

2018-03-29 Thread Charlie Meyer
Just a thought, Could a processor that did the scan and stored state be implemented similar to GenerateTableFetch, where there is a minimum value attribute that is specified that could be read from the source (such as created date, updated date, etc)? That way the state could potentially be

Re: AWS Processors and Proxy User/Password

2018-03-16 Thread Charlie Meyer
For these, I have used the AWS Credentials Provider controller service -Charlie ᐧ Charlie Meyer On Fri, Mar 16, 2018 at 1:25 PM, Otto Fowler <ottobackwa...@gmail.com> wrote: > Does anyone know why the AWS Processors support proxy host and port but not > user and password as Inv

Re: 答复: Re: Is there a REST API to run a dataflow on demand?

2018-02-21 Thread Charlie Meyer
wrote: > Thanks a lot. > > But I want to know if there is a REST API that triggers a dataflow on > demand? > I don't find the API in the page. > > > > > 发件人: > Charlie Meyer <charlie.me...@civitaslearning.com> > 收件人: > dev@nifi.apache.org > 日期: >

Re: Is there a REST API to run a dataflow on demand?

2018-02-21 Thread Charlie Meyer
Yep, when you make the changes in the UI, open developer tools in your browser and see what calls to the nifi api it is making then mimic those with code. The nifi team also kindly publishes https://nifi.apache.org/docs/nifi-docs/rest-api/index.html which help a lot. Best of luck! -Charlie On

Re: NiFi 1.5.0 can't start with AWS public ip is set to nifi.web.https.host

2018-02-21 Thread Charlie Meyer
i ran into that earlier today actually, setting the nifi.web.http(s).network.interface* fixed the issue for me -Charlie On Wed, Feb 21, 2018 at 4:48 PM, tanezavm wrote: > Hi Andy, > > As far as I know, there's no other services running in the instance that is > preventing

Re: [EXT] Re: Embedded Nifi

2018-02-05 Thread Charlie Meyer
Hi Vincent, We do this for our test cases using https://github.com/palantir/docker-compose-rule. It works fairly well, but is a bit heavy weight to get tests started up locally. Also, with 1.5.0, the host header issue surfaces here and makes running in docker a pain. Hope that helps a bit! On

Incorrect return classes specified on api annotations

2018-01-31 Thread Charlie Meyer
Hi, I opened up https://issues.apache.org/jira/browse/NIFI-4835 earlier today for a few places where the return type class did not reflect the entity that is being returned. For now, I've locally patched my build and was able to regenerate a correct swagger json, but figured id bring it up here