Re: Connect NiFi to MongoDB(Atlas)

2020-08-25 Thread Andy LoPresto
This was discussed in the Slack channel [1] and NIFI-7768 [2] was filed to address it. [1] https://apachenifi.slack.com/archives/C0L9VCD47/p1598402012117700 [2] https://issues.apache.org/jira/browse/NIFI-7768 Andy LoPresto alopre...@apache.org alopresto.apa...@gmail.com He/Him PGP Fingerprint:

Connect NiFi to MongoDB(Atlas)

2020-08-25 Thread Ravi Teja Kondisetty
hello all, I am trying to connect Apache Nifi with Mongo DB. We have Mongo DB Atlas instance and the connection string starts with mongodb+srv://. Now when I give the same URL in NiFi, it throws a message saying that the Mongo DB URL should start with mongodb://. Can someone throw some light on

Re: How to read an element inside another element in json with UpdateRecord

2020-08-25 Thread Eric Ladner
Try $.data[6][1] to get the "15.m..".. entry. On Tue, Aug 25, 2020 at 3:17 PM Wesley C. Dias de Oliveira < wcdolive...@gmail.com> wrote: > Hi, Nifi Community. > > I'm trying to read an element inside another element in json with > UpdateRecord in the following json: > > "data": [ > ["Date",

How to read an element inside another element in json with UpdateRecord

2020-08-25 Thread Wesley C. Dias de Oliveira
Hi, Nifi Community. I'm trying to read an element inside another element in json with UpdateRecord in the following json: "data": [ ["Date", "Campaign name", "Cost"], ["2020-08-25", "01.M.VL.0.GSP", 75.14576], ["2020-08-25", "11.b.da.0.search", 344.47], ["2020-08-25", "12.m.dl.0.search", 98.04],

Re: Site to Site with multi-entry keystore?

2020-08-25 Thread Andy LoPresto
All S2S authentication is performed using mutual authentication TLS, so there would not be a WWW-Authenticate request. You’re saying each endpoint has the appropriate keystore and truststore in place, and each trusts the other? You’ve also set the appropriate user policies (different from

Site to Site with multi-entry keystore?

2020-08-25 Thread Pat White
Hi Folks, Does S2S require use of a single entry keystore, or will multiple entries work ok? I thought i saw documentation which stated S2S will only work with single entry keystores, but i'm not able to find the reference. Trying to track down a 401 Unauthorized error trying to do S2S with a

Re: Calling DLL functions on a Windows PC

2020-08-25 Thread Mike Thomsen
ExecuteStreamCommand might be able to work with rundll or you could wrap the DLL with some .NET code and make an exe which ExecuteStreamCommand would run. On Tue, Aug 25, 2020 at 9:49 AM Jeremy Pemberton-Pigott wrote: > > Hi, > > Is there a processor that allows me to make functions in a local

Calling DLL functions on a Windows PC

2020-08-25 Thread Jeremy Pemberton-Pigott
Hi, Is there a processor that allows me to make functions in a local DLL? Jython or maybe Python script perhaps or I would have to write a custom jar with JNI calls? NodeJS Addons has the ability to do it and it works, now I want to make the same calls from a NiFi flow without NodeJS. Jeremy