Apache Kafka via Confluent Platform
Self-managed Apache Kafka deployed with Confluent Platform for event streaming, durable logs, and integration pipelines.
Extra Small — up to 100 GB hot index data on a single node
Monthly cost
$112.30
Annual cost
$1,348/year
| Compute | $92.30 |
| Storage | $20.00 |
| Other | $0.00 |
| Role | Instance | vCPU | GB RAM | Storage |
|---|---|---|---|---|
| Node | 1 × n2-standard-4 | 4 | 16 | 500 GB |
This Extra Small OpenSearch configuration supports up to 100 GB of hot index data on a single node. The primary cost driver is compute, accounting for $196 monthly, significantly more than the $95 for storage. This single-node setup lacks high availability, making it unsuitable for production workloads requiring fault tolerance.
Share the current URL or copy the launch Terraform baseline.
terraform {
required_version = ">= 1.6.0"
required_providers {
google = {
source = "hashicorp/google"
version = "~> 6.0"
}
}
}
variable "project_id" {
description = "Google Cloud project ID for this deployment."
type = string
default = "replace-with-project-id"
}
provider "google" {
project = var.project_id
region = "us-central1"
zone = "us-central1-a"
}
# Generated for Google Cloud from the current estimate state.
resource "google_compute_disk" "node_1_data" {
count = 1
name = "opensearch-node-1-data-${count.index + 1}"
type = "hyperdisk-balanced"
zone = "us-central1-a"
size = 500
}
resource "google_compute_instance" "node_1" {
count = 1
name = "opensearch-node-1-${count.index + 1}"
machine_type = "n2-standard-4"
zone = "us-central1-a"
boot_disk {
initialize_params {
image = "projects/debian-cloud/global/images/family/debian-12"
size = 50
type = "pd-balanced"
}
}
network_interface {
network = "default"
access_config {}
}
attached_disk {
source = google_compute_disk.node_1_data[count.index].id
mode = "READ_WRITE"
}
labels = {
app = "opensearch"
role = "node"
}
}
Reference architecture: OpenSearch for single-node, version OpenSearch 2.17 cluster tuning guidance, retrieved April 13, 2026.
https://docs.opensearch.org/docs/2.17/tuning-your-cluster/
Pricing: Google Cloud pricing snapshot, retrieved May 6, 2026.
Commercial pricing only. GovCloud, sovereign cloud, and discounts beyond those shown are not modelled.
Based on OpenSearch cluster tuning and operational guidance, translated into VM-based planning tiers.
Estimate excludes warm or cold tiers, snapshots, machine-learning plugins, remote storage, and network transfer.
Self-managed Apache Kafka deployed with Confluent Platform for event streaming, durable logs, and integration pipelines.
Self-hosted CockroachDB for resilient SQL workloads that need distributed transactions and scale-out storage.
Self-managed Confluence Data Center for enterprise documentation, knowledge bases, and collaborative editing.