Re: getmongo processor exception

2015-11-16 Thread 林家銘
Hi I am sorry that, I am not familiar with enable the SSL in MongoDB, but I find the documents, http://mongodb.github.io/mongo-java-driver/3.0/driver/reference/connecting/ssl/?_ga=1.178196645.1092355907.1447682441 It seems that one can only specify the flag "sslInvalidHostNameAllowed" in source

Re: getmongo processor exception

2015-11-16 Thread Subhash Parise
Hi robin, thank you for replying my post. Mongodb is listening with 27017 port. But in my environment ssl is configured. Could you please let me know how to make mongodb URI with --sslAllowInvalidCertificates option. On Mon, Nov 16, 2015 at 4:44 PM, 林家銘 wrote: > Hi > >

[announce] open source NATS messaging and Groovy scripting processors for NiFi

2015-11-16 Thread Angry Duck Studio
I have been working with NiFi lately and have written a some custom processors which may be useful to someone. https://github.com/mring33621/nats-messaging-for-nifi -- Allows Apache NiFi to send/receive string based messages to/from NATS messaging topics.

Re: [announce] open source NATS messaging and Groovy scripting processors for NiFi

2015-11-16 Thread Matthew Burgess
Awesome, I love me some Groovy! I am new to NiFi but am interested in scripting capabilities such as yours. For example, using the JSR-223 spec (and the ScriptEngineManager), NiFi could support scripting for many JVM languages including Groovy, Jython, Jruby, Renjin, JavaScript, even

Re: Nifi Migration

2015-11-16 Thread Joe Witt
Naveen You can save the flow as a template and import that. It today has limitations such as environmental mapping is too limited and you should know it won't copy sensitive properties. Another option is to copy the flow.xml.gz from the current setup into production. We need to do more though

another proxied question from irc, about machine specs

2015-11-16 Thread Tony Kurc
15:59 < userX> Hey, is there a recommended system specs for a server running nifi -- I am going to our sys admin to get a server virtualized, I need some specs going in to request. I can't seem to find anything hard in the documentation

Re: [announce] open source NATS messaging and Groovy scripting processors for NiFi

2015-11-16 Thread Sumanth Chinthagunta
I am working on dynamic language support for JavaScript. https://github.com/xmlking/nifi-scripting Sumo > On Nov 16, 2015, at 7:31 AM, Matthew Burgess wrote: > > Awesome, I love me some Groovy! I am new to NiFi but am

Re: [announce] open source NATS messaging and Groovy scripting processors for NiFi

2015-11-16 Thread Angry Duck Studio
Awesome, Sumo! I like your use of bindings in the ExecuteGroovy processor. Mine uses bare-bones Java reflection and requires a specific method signature in the script. I don't know if the compiled scripts are thread safe or not, so I pool some in an internal queue, to be safe. I will probably

getmongo processor exception

2015-11-16 Thread Subhash Parise
Hi Team, I am very new to Apache NiFi and i am trying to create some sample flows using getmongo, putmongo processors. In my env i am getting fallowing exception. 2015-11-16 09:54:43,413 ERROR [Timer-Driven Process Thread-1] o.a.nifi.processors.mongodb.GetMongo

Re: getmongo processor exception

2015-11-16 Thread 林家銘
Hi I think you need to check the MongoDB is listening to the port 27017 at your Nifi host. On the Nofi host, if you are using Linux system, use the command below to check "netstat -nlp | grep 27017" On 16/11/2015, Subhash Parise wrote: > Hi Team, > > I am very new to