-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.example.edn
36 lines (36 loc) · 1.37 KB
/
config.example.edn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{:client {:client-name "MY_CLIENT"
:user "TESTUSER"
:url "https://ORG_ID-ACCOUNT_ID.snowflakecomputing.com:443"
:private-key "-----BEGIN PRIVATE KEY-----\nMII...\n-----END PRIVATE KEY-----\n"
:port 443
:host "ORG_ID-ACCOUNT_ID.snowflakecomputing.com"
:scheme "https"
;; uncomment the `:proxy` field if you need to use an HTTP proxy
;; to uncomment, simply remove the `_#` prefixes
#_:proxy #_{:host "my.proxy.host"
:port 1234
:user "proxy-user"
:password "secret-proxy-pass"}
}
:channels [{:chan-name "my_channel"
:database "TESTDATABASE"
:schema "PUBLIC"
:table "TESTTABLE"
:on-error :continue
:mqtt {:host "emqx1.emqx.net"
:port 1883
:clientid "chan1"
:topic "t/sf/1"
:qos 1
:clean-start false}}
{:chan-name "my_channel2"
:database "TESTDATABASE"
:schema "PUBLIC"
:table "TESTTABLE2"
:on-error :abort
:mqtt {:host "emqx1.emqx.net"
:port 1883
:clientid "chan2"
:topic "t/sf/2"
:qos 1
:clean-start false}}]}