Fork me on GitHub
#datomic
<
2019-02-07
>
kenny03:02:49

How would I pass the proxy host when calling client? I only see a way to pass the :proxy-port: https://docs.datomic.com/client-api/datomic.client.api.html#var-client

marshall13:02:59

the proxy host is always localhost (for the socks proxy script)

kenny16:02:43

Why does it have to be? What if my service is running in a docker locally and I’m running the socks proxy locally? The docker can’t connect to it because it assumes localhost. The host should be host.docker.internal.

kenny16:02:40

Having the ability to set the proxy host would solve this problem.

danieroux12:02:21

New to Datomic Cloud, I cannot find this log entry:

danieroux12:02:20

(cast/event {:msg "SQS Lambda invoked" ::json input})

marshall13:02:06

cast sends messages/events to the cloudwatch stream for your datomic system: https://docs.datomic.com/cloud/operation/monitoring.html#searching-cloudwatch-logs

danieroux13:02:28

I'm stuck on "Click on the Log group". I don't have that log group.

danieroux13:02:52

I filed a support ticket with more details, I think the CloudFormation went awry.

oz19:02:28

Hello, we are using Datomic Cloud in production and looking to start making use of IONs. We got a couple of questions we need some help on.

oz19:02:52

1. We currently run multiple Datomic Cloud installs one for each of our code environments test, dev, stage, prod. It's was brought up that maybe this isn't the ideal way to handle this. Instead it's suggested that maybe we should be using 1 install and use different db's and query groups to allow for multiple environments in a single Datomic Cloud install. Anyone have any insights on the suggestion of a single Datomic Cloud install to service multiple environments?

oz19:02:08

2. Assuming the Clojure code deployed in an ION requires an system level dependency (a linux specific library or installed cli application) how do we install that in the EC2 instance that ION is deployed to?

marshall20:02:42

@ozanzal regarding #1 - either is fine, the decision probably depends on your specific isolation and resource sharing requirements. I’d tend to keep prod as a separate system itself and potentially run stage/qa as a merged system, and let developers have individual query groups or solo systems for dev

👌 5
johnj21:02:02

@ozanzal #2 is not supported, you'll have to hack it yourself to achieve that to overcome whatever they have in place to prevent it,

👌 5
johnj21:02:26

or be a nice citizen and use lambdas

oz21:02:11

Thanks y'all!