google-cloud

2018-11-23T12:31:04.003600Z

Thanks!

2018-11-23T12:31:50.004100Z

some people here tried to began to use datastore Java Client haha

2018-11-23T12:33:17.005Z

I'll see if it's going to be difficult to began to use the SimpleValue's repo

genekim 2018-11-23T20:17:49.016600Z

I used matchbox library successfully in Clojure to use Firebase Realtime Database. I tried using the newer Firebase Database because it is newer — took me days to even get the simplest queries to finally run. You can see my work here: https://gist.github.com/realgenekim/2d9b14da54e71bb14ffe69afc7947bc8. I ended up staying with Matchbox because I could get stores/loads running, and didn’t want to spend more days trying to work thru Java interop. I’d love to know how people are successfully using any of the Google NoSQL offerings.

domparry 2018-11-23T12:34:42.005800Z

We have done both. We use the datastore java lib in dataflow (although mostly we use datasplash as a wrapper for things)

2018-11-23T12:39:03.006Z

thanks! 😃

oVerde 2018-11-23T13:24:38.006400Z

@overde has joined the channel

2018-11-23T13:25:17.007300Z

I'm using cider and I can't export variables to lein nrepl when I start the repl from emacs

2018-11-23T13:25:29.007700Z

anyone knows how to deal with it?

2018-11-23T13:26:03.008300Z

in general to login on datastore I'm exporting a json to GOOGLE_APPLICATION_CREDENTIALS variable

2018-11-23T13:26:15.008700Z

but Cider doesn't recognize that

sneakypeet 2018-11-23T13:31:28.009Z

I think emacs needs it on startup

sneakypeet 2018-11-23T13:31:36.009300Z

but I’m a noob in that area

2018-11-23T13:51:06.009700Z

Yeah, some setq stuff

2018-11-23T13:51:09.009900Z

I'll see

2018-11-23T13:51:17.010200Z

thanks 😃

domparry 2018-11-23T13:51:42.010600Z

So glad to see more Clojure GCP users…

domparry 2018-11-23T13:52:14.011200Z

Hopefully there will be enough of us to get a click to deploy datomic solution going there too!

👍 1
🦜 2
claudiu 2018-11-23T14:00:42.011800Z

there is also https://cloud.google.com/appengine/docs/standard/nodejs/ for some use-cases might be a nice fit.

2018-11-23T14:19:19.012100Z

@juliobarros has left the channel

domparry 2018-11-23T20:51:47.019Z

All our apps run on datastore. And we really like it. Queries are a bit of a pain, but we use projections and indexes to help. Our apps are probably more than 80% store though. Not much querying.