Re: Using R package with hidden credentials

2016-09-26 Thread Alexander Bezzubov
Hi Kevin, approach #2 sounds very reasonable and should work indeed. Ahyoung, how do you think you could you take a quick look at the cases with SparkR that Kevin described and see if that is documented\expected outcome? -- Alex On Fri, Sep 23, 2016 at 9:17 AM, Kevin Niemann

Using R package with hidden credentials

2016-09-23 Thread Kevin Niemann
I'm using the Spark R interpreter with e.g. the mongolite package which requires authentication to access MongoDB. require(mongolite) url <- "mongodb://username:passw...@some.server.com/DB" m <- mongo(collection = "events", db = "myDB", url = url, verbose = FALSE) I'm looking at different