Overview
This is a repackaged open source software product wherein additional charges apply for a hardened, AWS-optimized image with verifiable provenance evidence and maintenance. QuestDB runs on a Debian 12 base with its listening attack surface reduced, tuned for Amazon EC2 workloads, and shipped with a complete provenance evidence pack and Software Bill of Materials (SBOM).
Value-Added Features
QuestDB Deployment:
-
Best-Practice Deployment: QuestDB is configured to start automatically on boot on a lean JVM runtime, ready to accept ingestion and queries on first launch.
-
Built for Ingestion Throughput: The columnar storage engine with SIMD-accelerated query execution and out-of-order ingestion delivers low-latency SQL over time-stamped data.
-
Bloat-Free Data Layer: CPU and memory go to the storage engine and query execution rather than unused system services.
Comprehensive Evidence Pack:
Every AMI carries a provenance evidence pack under /opt/optimization-report/:
- Tuning_Parameters.txt: Every change, shown against its base-image value, with the reasoning and how to reverse it.
- Security_Parameters.txt: Every security setting applied, shown against its base-image value, with the reasoning and how to reverse it.
- package_changes.txt: Packages added, upgraded and removed versus the base image.
- sbom.spdx.json: Software Bill of Materials in SPDX format, generated from the dpkg database.
- cve_scan.txt / cve_scan_full.txt.gz: Vulnerability scan reports categorizing CVEs by upstream patch availability.
- key_files.sha256: SHA-256 checksums of every file this image changed, so the delivered state can be verified.
- README.txt: Index of artifact contents, operational guidelines, and configuration defaults.
Security & Attack Surface:
-
Listening Surface Reduced: LLMNR and multicast DNS are turned off, closing UDP port 5355, verified against an unmodified base instance of the same source AMI.
-
Kernel Network Hardening: 19 network-related kernel parameters are fixed in /etc/sysctl.d/99-security.conf: ICMP redirects are neither accepted nor sent, source-routed packets are rejected, and the rest are pinned at safe values.
-
Unused Kernel Modules Disabled: 12 unused filesystem and protocol modules are blocked from loading via /etc/modprobe.d/99-disable-unused.conf. squashfs is deliberately left loadable so snap, AppImage and container workflows keep working.
-
SSH Login Window Tightened: LoginGraceTime is reduced from 120 to 60 seconds in /etc/ssh/sshd_config.d/99-security.conf. Root login policy, authentication retries and forwarding are unchanged.
-
Fully Patched at Release: Zero packages with a pending update at build time, taken from what apt-get upgrade actually offers rather than from a scanner opinion. The complete CVE scan ships inside the image, reported in three tiers.
-
Kernel Hygiene: Exactly two kernel generations are retained and older ones are removed automatically, so superseded kernels do not accumulate in the boot menu.
System Footprint & Reliability Optimization:
-
Log Growth Bounded: The systemd journal is capped at 200 MB, so logs cannot fill the root filesystem.
-
Validation Testing: Functional verification on clean AMI launches through multi-round integration testing, with every changed value compared against an unmodified base instance.
AWS Network & Kernel Tuning:
-
Network Stack: TCP BBR congestion control with fair queueing, increased connection backlogs, buffer adjustments, and MTU probing enabled.
-
System Tuning: tuned daemon active with an aws-optimized profile, transparent hugepages moved to madvise, and modified memory writeback parameters.
-
EC2 Integration: Amazon Time Sync and the SSM agent are left exactly as the base image ships them; size-capped persistent journald logging is configured on top.
Operational Tools:
- Preinstalled Tools: AWS SSM Agent active, CloudWatch Agent installed (disabled by default).
Maintenance:
- Maintenance Specifications: Rebuilt and updated bi-weekly to monthly incorporating upstream QuestDB and Debian 12 security updates, with artifact documentation refreshed per release.
About QuestDB
A high-performance open-source time-series database designed for fast ingestion and SQL querying of time-stamped data, delivering throughput for IoT telemetry, financial tick data, and observability pipelines through columnar storage and SIMD-accelerated execution.
About Debian 12
Debian 12 (Bookworm) follows the project's conservative release engineering, where every package is frozen and tested before release, with ongoing coverage from the Debian security team. As the upstream for Ubuntu and many other distributions it offers broad ecosystem compatibility and a predictable APT upgrade path.
Highlights
- QuestDB on an AWS-Optimized Debian 12 Base: LLMNR and multicast DNS disabled to close UDP port 5355, with 13 kernel parameters, a tuned aws-optimized profile, and capped journald logging applied on top, each verified against an unmodified base instance.
- Provenance Evidence and SBOM: A 7-file evidence pack ships inside the image, with a complete SPDX Software Bill of Materials, a three-tier CVE scan, a package delta report, and SHA-256 checksums of every file the image changed.
- QuestDB: Best-practice deployment. Configured to start automatically on boot on a lean JVM runtime - on an EC2-tuned base with TCP BBR and a tuned aws-optimized profile, rebuilt bi-weekly to monthly with upstream security patches.
Details
Introducing multi-product solutions
You can now purchase comprehensive solutions tailored to use cases and industries.
Features and programs
Financing for AWS Marketplace purchases
Pricing
- ...
Dimension | Cost/hour |
|---|---|
t3.medium Recommended | $0.02 |
t3.micro | $0.02 |
t2.micro | $0.02 |
r7a.8xlarge | $0.09 |
m6i.4xlarge | $0.09 |
r5dn.16xlarge | $0.09 |
m6idn.24xlarge | $0.09 |
x2iedn.4xlarge | $0.09 |
c8a.48xlarge | $0.09 |
hpc7a.96xlarge | $0.09 |
Vendor refund policy
No refunds. Cancel anytime.
How can we make this page better?
Legal
Vendor terms and conditions
Content disclaimer
Delivery details
64-bit (x86) Amazon Machine Image (AMI)
Amazon Machine Image (AMI)
An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.
Version release notes
Latest Updates
Additional details
Usage instructions
Connection Methods
Once launched, SSH into the instance. The default username is 'admin'. You can switch to the root user environment by running: sudo su -
Install Information
-
QuestDB: Community Edition 9.3.5
-
Java: OpenJDK 17
-
Install Directory: /opt/questdb
-
Config File: '/var/lib/questdb/conf/server.conf'
Usage Instructions
-
Verify QuestDB is running:
sudo systemctl status questdb
-
Access the Web Console by opening a browser and navigating to: http://<YOUR_IP>:9000
-
Send time-series data via InfluxDB Line Protocol by writing to port 9009 using any InfluxDB-compatible client or the QuestDB client libraries.
-
Manage the QuestDB service:
sudo systemctl start questdb
sudo systemctl stop questdb
sudo systemctl status questdb
Firewall Configuration
-
SSH (Port 22): Required for remote administration and secure shell access.
-
Web Console / REST API (Port 9000): Provides the browser-based SQL console and HTTP REST API for queries and data ingestion.
-
Health Check (Port 9003): Exposes the HTTP health endpoint used by load balancers and monitoring systems.
-
PostgreSQL Protocol (Port 8812): Allows PostgreSQL-compatible clients and drivers to connect to QuestDB.
-
InfluxDB Line Protocol (Port 9009): Accepts high-throughput time-series data ingestion from InfluxDB-compatible clients.
-
Security Recommendation: For production environments, never expose these ports to the public internet. Strictly limit access exclusively to internal traffic within your VPC via AWS Security Groups.
Support
Vendor support
Should you encounter any issues while using the system, please do not hesitate to contact us via email at: support@easyclouds.io ,Thank you!
AWS infrastructure support
AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.
Similar products
