Jake Morrison

Results 11 comments of Jake Morrison

It's been running fine for us, though we mainly use it for bulk insert (Kafka -> Elasticsearch, replacing Logstash). Most of the changes are pretty mechanical, though some parts were...

The way that that it works in this patch is that if the environment vars exist, then they are used, so the `heroku_kafka_env` flag is not needed; the existence of...

Are you going to publish to Hex? Do you mind if I do it from a fork? exlager is a dependency of a package of mine (https://github.com/cogini/prometheus_exometer) that I want...

Yes, I think certs are a requirement for most websites. I plan to add letsencrypt support in the next iteration. I tend to use AWS support in the Application Load...

mix_deploy now requires that you specify the list of templates you want it to generate.

`deploy-init-local` should be generated by the config in `config/prod.exs`, e.g. ```elixir config :mix_deploy, # Generate runtime scripts from templates templates: [ # Systemd wrappers "start", "stop", "restart", "enable", # System...

Using a config provider to read a Conform config file is perfect. I am quite interested in config providers, particularly for things like AWS Systems Manager and Key Management Service....

C.UTF-8 ended up not being well supported, so I switched to en_US.UTF-8 (or en_US.utf8) in my latest scripts. I think this should have already been fixed.... can you make sure...

The issue is that your OS install does not have the locale defined. I guess it's super minimal. That's why I was trying to use `C.UTF-8`, but even that name...

We still need the postgres admin user `postgresql_admin_user`. That's the "root" user for posgres, and it's useful for this user to be able to connect to the database without a...