From 979fc66341c5a638824107230dbe7fb685921604 Mon Sep 17 00:00:00 2001 From: Will Winder Date: Wed, 13 Sep 2023 14:57:38 -0400 Subject: [PATCH 1/5] Add system requirements to README. --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index f7342a1..b79f421 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,14 @@ For example, use conduit to: * Send blockchain data to another streaming data platform for additional processing (e.g. RabbitMQ, Kafka, ZeroMQ). * Build an NFT catalog based on different standards. +# System Requirements + +For a simple deployment the following configuration works well: +* Network: Conduit colocated with Algod follower. +* Conduit: 4 CPU and 8 GB of ram. +* Algod: 4 CPU and 8 GB of ram. +* Storage: 20 GiB, 3000 IOPS minimum. + # Getting Started ## Installation From 2920cafb8fb26b0a9c19a7fd5dc15d7c294bdb3b Mon Sep 17 00:00:00 2001 From: Gary <982483+gmalouf@users.noreply.github.com> Date: Wed, 11 Oct 2023 15:07:22 -0400 Subject: [PATCH 2/5] Update README.md with Conduit/Algod co-location recommendation --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b79f421..ebe9b1b 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,8 @@ For example, use conduit to: For a simple deployment the following configuration works well: * Network: Conduit colocated with Algod follower. -* Conduit: 4 CPU and 8 GB of ram. -* Algod: 4 CPU and 8 GB of ram. +* Conduit + Algod colocated: 4 CPU and 8 GB of ram. + * You may want to set [GOMEMLIMIT](https://pkg.go.dev/runtime@master#hdr-Environment_Variables) for Algod (and even Conduit) based on your deployment configuration. * Storage: 20 GiB, 3000 IOPS minimum. # Getting Started From 2d599af7b6b5e3b143a761b23ea91670353c5a29 Mon Sep 17 00:00:00 2001 From: Gary <982483+gmalouf@users.noreply.github.com> Date: Wed, 11 Oct 2023 16:08:47 -0400 Subject: [PATCH 3/5] Update README.md Co-authored-by: Will Winder --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ebe9b1b..089195f 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ For example, use conduit to: For a simple deployment the following configuration works well: * Network: Conduit colocated with Algod follower. * Conduit + Algod colocated: 4 CPU and 8 GB of ram. - * You may want to set [GOMEMLIMIT](https://pkg.go.dev/runtime@master#hdr-Environment_Variables) for Algod (and even Conduit) based on your deployment configuration. + * Deployments allocating less ram might work in conjunction with [GOMEMLIMIT](https://pkg.go.dev/runtime@master#hdr-Environment_Variables) for Algod (and even Conduit). This configuration is not tested, so use with caution and monitor closely. * Storage: 20 GiB, 3000 IOPS minimum. # Getting Started From f7e0a247d67422e287fd7a6a966e60ac2b48a7ee Mon Sep 17 00:00:00 2001 From: Will Winder Date: Thu, 12 Oct 2023 10:14:37 -0400 Subject: [PATCH 4/5] Group conduit and algod along with storage. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 089195f..6359356 100644 --- a/README.md +++ b/README.md @@ -28,8 +28,9 @@ For example, use conduit to: For a simple deployment the following configuration works well: * Network: Conduit colocated with Algod follower. -* Conduit + Algod colocated: 4 CPU and 8 GB of ram. - * Deployments allocating less ram might work in conjunction with [GOMEMLIMIT](https://pkg.go.dev/runtime@master#hdr-Environment_Variables) for Algod (and even Conduit). This configuration is not tested, so use with caution and monitor closely. +* Conduit + Algod: 4 CPU and 8 GB of ram. + * Storage: algod follower node, 40 GiB, 3000 IOPS minimum. + * Deployments allocating less ram might work in conjunction with [GOMEMLIMIT](https://pkg.go.dev/runtime@master#hdr-Environment_Variables) for Algod (and even Conduit). This configuration is not tested, so use with caution and monitor closely. * Storage: 20 GiB, 3000 IOPS minimum. # Getting Started From 3c7dfaa7f225a837330930c35dff11e77ec33073 Mon Sep 17 00:00:00 2001 From: Gary <982483+gmalouf@users.noreply.github.com> Date: Thu, 12 Oct 2023 10:32:09 -0400 Subject: [PATCH 5/5] Update README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 6359356..04fe035 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,6 @@ For a simple deployment the following configuration works well: * Conduit + Algod: 4 CPU and 8 GB of ram. * Storage: algod follower node, 40 GiB, 3000 IOPS minimum. * Deployments allocating less ram might work in conjunction with [GOMEMLIMIT](https://pkg.go.dev/runtime@master#hdr-Environment_Variables) for Algod (and even Conduit). This configuration is not tested, so use with caution and monitor closely. -* Storage: 20 GiB, 3000 IOPS minimum. # Getting Started