This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2018-04-06
Channels
- # beginners (95)
- # boot (3)
- # cider (13)
- # cljs-dev (9)
- # cljsjs (1)
- # cljsrn (35)
- # clojure (78)
- # clojure-dev (5)
- # clojure-italy (6)
- # clojure-nl (9)
- # clojure-russia (13)
- # clojure-spec (1)
- # clojure-uk (74)
- # clojurescript (59)
- # community-development (6)
- # core-async (41)
- # css (110)
- # data-science (2)
- # datomic (22)
- # defnpodcast (1)
- # devcards (1)
- # docs (1)
- # editors (6)
- # emacs (51)
- # figwheel (1)
- # fulcro (66)
- # jobs (1)
- # jobs-discuss (75)
- # lumo (51)
- # mount (2)
- # off-topic (33)
- # pedestal (24)
- # proton (3)
- # re-frame (29)
- # reagent (92)
- # reitit (16)
- # shadow-cljs (16)
- # spacemacs (4)
- # specter (6)
- # vim (6)
- # yada (7)
@adammiller as promised, here’s the lib I created to use Peer and Cloud compatible app code https://github.com/stevebuik/ns-clone
It’s working really well in my project already. Using the logger interceptor shows my app is really chatty, will need some cleanup to run on cloud
If it is for developer access, I believe that's what the bastion is for
I'm looking for a production application to use it that's hosted on Heroku, and I can't afford their VPC solution. Can it go over the internet?
You'll need to ask someone from the Datomic team (@U05120CBV ?) this is beyond my knowledge
Datomic Cloud runs in your own VPC in your own AWS account. You can configure security/network options however you require, but the default (only accessible from within AWS VPC) is designed with best-practices for AWS security.
Sounds like I could configure public access though. I'll have to consider whether I'm happy with this, I understand it's all done over SSL.
if you’re asking about running Datomic Cloud itself in Heroku, no. Cloud can only be run in AWS
If I delete a solo datomic cloud stack and want to clean everything, what do I have do delete manually? I found storage at s3, efs and dynamo. Is there something else that needs cleaning?
Hey @mynomoto This page should help https://docs.datomic.com/cloud/operation/deleting.html
@jaret I think the console steps to deregister scalable targets are not necessary if the dynamo tables are deleted. I could not find those.
There is a :user/animals
. It's a ref/many
I have a list of animals. I want to find all users that has just a subset(or equal) of my list of animals
There is how to do it with one query?
{:db/id 1
:user/animals [10 11 12]}
{:db/id 2
:user/animals [10 11]}
If my list of animals is [10 11 15]
, I want to find [2]