Roman
Roman
That could be achieved with the next code: ```elixir index_config = %{ settings: %{ analysis: %{ analyzer: %{ email_field: %{ type: "custom", tokenizer: "uax_url_email", filter: ["lowercase", "stop"] } } }...
Hi @BlakeWilliams it seems your quick hack doesn't work. I'm trying to use `Envy` to manage `KafkaEx` config. ```elixir config :kafka_ex, brokers: [ {System.get_env("KAFKA_BROKER_HOST"), 9092} ], consumer_group: System.get_env("KAFKA_CONSUMER_GROUP"), auto_commit: false,...