From efa0dd547889227abf2e05df47abb117c7daa78e Mon Sep 17 00:00:00 2001 From: CJ Cobb Date: Wed, 23 Jun 2021 16:55:52 +0000 Subject: [PATCH] add example config --- example-config.json | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 example-config.json diff --git a/example-config.json b/example-config.json new file mode 100644 index 00000000..81922497 --- /dev/null +++ b/example-config.json @@ -0,0 +1,41 @@ +{ + "database": + { + "type":"cassandra", + "cassandra": + { + "contact_points":"127.0.0.1", + "port":9042, + "keyspace":"clio", + "table_prefix":"", + "max_requests_outstanding":25000, + "threads":8 + }, + "postgres": { + "username":"postgres", + "password":"postgres", + "contact_point":"127.0.0.1", + "database":"clio" + } + }, + "etl_sources": + [ + { + "ip":"127.0.0.1", + "ws_port":"6005", + "grpc_port":"50051" + } + ], + "dos_guard": + { + "whitelist":["127.0.0.1"] + }, + "server":{ + "ip":"0.0.0.0", + "port":8080 + }, + "log_level":"debug", + "online_delete":0, + "extractor_threads":8, + "read_only":false +}