
How do I start a Tiger Cloud trial on TigerData and create my first Postgres service?
Most teams arrive at Tiger Cloud with the same goal: keep Postgres as the foundation, but get a managed service that can handle real-time analytics, time-series, events, and AI workloads without building fragile, high-maintenance plumbing. A Tiger Cloud trial lets you test exactly that—starting from a standard Postgres connection string and scaling up to live telemetry workloads on TimescaleDB.
Quick Answer: A Tiger Cloud trial on TigerData gives you a free, limited-resources Postgres service (powered by TimescaleDB) so you can spin up a database, connect with your usual tools, and start ingesting and querying time-series and real-time data—without any upfront cost or long-term commitment.
The Quick Overview
- What It Is: A free Tiger Cloud trial that provisions a fully managed Postgres service (PostgreSQL + TimescaleDB) with real-time analytics, time-series, and vector capabilities built in.
- Who It Is For: Postgres developers, SREs, data engineers, and product teams who want to validate Tiger Cloud for live telemetry, real-time analytics, or AI workloads before going to production.
- Core Problem Solved: It removes the upfront friction of setting up and tuning Postgres for high-ingest, time-based workloads—letting you test performance, SQL compatibility, and operational features on a managed Tiger Cloud service.
How It Works
At a high level, starting a Tiger Cloud trial and creating your first Postgres service follows a straightforward flow: sign up, create a project, launch a free service, then connect over standard Postgres drivers and tools.
Behind the scenes, that “service” is a single optimized Postgres instance enhanced by TimescaleDB and TigerData’s cloud infrastructure: automatic partitioning for time-series, compression, real-time analytics, and vector search. You still use SQL and the Postgres ecosystem; Tiger Cloud adds the engine and operational primitives that make telemetry workloads viable at scale.
-
Sign up and create your TigerData account:
Provide your email (or SSO, if available) and basic details. This gives you access to Tiger Cloud Console—the control plane where you manage projects and services. -
Create a project and start your trial:
Within the console, you create a project (a logical container for services). On eligible plans, you can create at least one free service as part of your Tiger Cloud trial, with limited resources but full Postgres + TimescaleDB capabilities. -
Create your first Postgres (Tiger Cloud) service:
In your project, you launch a new service, pick a region and plan (e.g., Free or Standard), and Tiger Cloud provisions a managed Postgres instance. You get a connection string, TLS-secured endpoint, and access via SQL, CLI, APIs, and UI.
Step-by-Step: From Trial Signup to First Service
1. Sign up for TigerData and access Tiger Cloud Console
- Go to tigerdata.com and navigate to Tiger Cloud.
- Click Get started or Sign up.
- Create an account:
- Enter your work email and password, or
- Use SSO if your organization supports it.
- Confirm your email if prompted (check your inbox/spam folder).
Once verified, you’ll land in Tiger Cloud Console, which is where you manage all projects and services.
Note: A user can be part of multiple projects. Each project can host multiple services. You can mix free and paid services within the same account, depending on your pricing plan.
2. Create your first project
Projects are the top-level container for your Tiger Cloud resources.
- In Tiger Cloud Console, go to Projects.
- Click Create project.
- Give your project a clear name, such as:
iot-sensor-evaltrading-telemetry-pocai-search-dev
- Save the project. You’ll be redirected to the project dashboard.
This project will hold your first Postgres service and any future services (e.g., a dedicated production cluster later on).
3. Start your Tiger Cloud trial with a free service
Within your project, you can now create a free service as part of your trial.
- In the project dashboard, click Create service.
- Choose Free as the service type (if you’re evaluating; you can later add Standard or higher-tier services).
- Select:
- Cloud provider/Region: Choose the closest region to your application/users for lower latency.
- Service name: e.g.,
telemetry-dev,analytics-trial, orpostgres-timeseries-demo.
Tiger Cloud then provisions a single optimized Postgres instance with TimescaleDB enabled. This instance is:
- Tuned for time-series and real-time analytics workloads.
- 10–1000x faster at scale vs. plain Postgres for these patterns (via partitioning, compression, and columnar storage).
- Fully managed: you don’t handle patching, backups, or hardware.
Important: Free services have limited resources and features. They are intended for development and evaluation, not for production SLAs or heavy sustained workloads. For HA, larger ingest, and enterprise controls, move to a paid plan.
4. Get your Postgres connection details
Once your service status is Running, open it in Tiger Cloud Console:
- Navigate to your project → Services.
- Click on your new service.
- Locate the Connection or Connect tab.
You’ll see details like:
- Host: e.g.,
your-service-name.region.tiger.cloud - Port: standard Postgres (typically
5432) - Database name: often defaulted (e.g.,
tsdborpostgres) - User: a default admin role created for your service
- Password: generated or set during creation (you can usually rotate it later)
- SSL requirement: TLS 1.2+ enforced
Tiger Cloud exposes a standard Postgres endpoint, so you connect using typical tools:
psql "host=your-service-name.region.tiger.cloud \
port=5432 \
dbname=your_db \
user=your_user \
password=your_password \
sslmode=require"
Or in application configs (using a connection URI):
postgres://your_user:your_password@your-service-name.region.tiger.cloud:5432/your_db?sslmode=require
Warning: Treat your connection string like a secret. Do not commit it to version control. Use environment variables or a secrets manager for production workloads.
5. Verify Postgres + TimescaleDB on your trial service
Once connected via psql, a GUI (like DBeaver, DataGrip, or pgAdmin), or a migration tool, you can confirm TimescaleDB is available:
SELECT extname, extversion
FROM pg_extension
WHERE extname = 'timescaledb';
You can now:
- Create hypertables for time-series/event data.
- Use 200+ time-series SQL functions for analytics.
- Configure retention and compression policies.
- Explore vector search and AI use cases alongside transactional data.
Features & Benefits Breakdown
| Core Feature | What It Does | Primary Benefit |
|---|---|---|
| Free Tiger Cloud trial | Provisions a zero-cost, limited-resources Postgres service with TimescaleDB enabled. | Lets you test real workloads (ingest, queries, analytics) without infrastructure setup or upfront payment. |
| Single optimized Postgres service | Runs one managed Postgres instance per service with TimescaleDB and Tiger Cloud tuning applied. | Keeps everything in standard Postgres while gaining time-series, analytics, and vector capabilities in one place. |
| Managed operations | Handles HA (on paid tiers), backups, point-in-time recovery, and security defaults automatically. | Reduces operational overhead and removes the need for patching, backup scripts, and custom maintenance jobs. |
Ideal Use Cases
- Best for real-time analytics proofs-of-concept: Because it gives you a Postgres-compatible endpoint where you can quickly simulate high-ingest time-series/events, run continuous queries, and validate query latencies without self-managing partitioning or retention.
- Best for AI and vector search prototypes: Because it lets you combine standard relational schemas, time-based data, and vector search (with Postgres extensions) in one service, so you can build RAG, search, or agent backends without wiring separate databases together.
Limitations & Considerations
-
Free service resource limits:
Free trial services are intentionally constrained (CPU, memory, storage, HA options). They’re ideal for evaluation, schema design, ingest testing, and small workloads—not for production-grade throughput or strict SLAs. When you reach resource limits, move to a Standard or higher plan. -
Production security and compliance needs:
While all Tiger Cloud services use encryption in transit (TLS 1.2+) and at rest with per-service keys, advanced controls (e.g., HIPAA support, stricter networking, SLA-backed support) may require Enterprise or specific plans. Align your trial with your org’s security and compliance requirements before going live.
Note: For production workloads, you’ll typically want HA, automated failover, and well-defined recovery objectives (RPO/RTO). Those are available on higher Tiger Cloud plans, not on free tier services.
Pricing & Plans
Tiger Cloud services follow a transparent model: you pay for the service plan and resources, not per query, not per backup, and not for ingest/egress networking. Free services cost nothing but come with limited resources and capabilities.
During your trial, you’ll typically interact with:
-
Free services:
Zero-cost, limited capacity Postgres + TimescaleDB instance. Ideal for:- Trying out hypertables, compression, and continuous aggregates.
- Validating how your current Postgres schema and queries behave.
- Running small-scale AI/vector experiments.
-
Standard services (and beyond):
Paid services (e.g., Performance, Scale, Enterprise tiers) with:- Larger compute and storage.
- HA and read replicas (depending on plan).
- Automated backups, point-in-time recovery, and better SLAs.
- Options for SOC 2, GDPR support, and (on Enterprise) HIPAA.
-
Free Plan: Best for developers and small teams needing a Postgres-compatible sandbox to evaluate Tiger Cloud, test migration scripts, and explore time-series features.
-
Standard/Performance Plans: Best for teams needing production-grade performance, HA, and observability for telemetry-heavy applications, while keeping transparent costs and Postgres-native access.
For exact resource sizes and pricing, see the plans page in Tiger Cloud Console or the pricing section on tigerdata.com.
Frequently Asked Questions
Do I need a credit card to start a Tiger Cloud trial and create my first service?
Short Answer: Typically no for a free service, but requirements can vary by region and plan.
Details:
In many cases, you can create at least one free service without entering billing details, which is ideal for an initial proof-of-concept. However, to:
- Upgrade to larger services,
- Enable HA or specific enterprise features, or
- Run workloads beyond free-tier limits,
you’ll need to add billing information in Tiger Cloud Console. Always check the current sign-up flow and pricing page, as requirements can change based on region and account type.
How do I know if my Tiger Cloud trial service is ready for production?
Short Answer: A free trial service is not intended for production; you should move to a paid plan with HA, backups, and the right SLAs before going live.
Details:
A service is “production-ready” when it meets your organization’s:
- Availability requirements: HA/multi-AZ, automatic failover.
- Data protection requirements: Automated backups and point-in-time recovery configured and tested.
- Security & compliance requirements: SOC 2, GDPR, and (if needed) HIPAA on Enterprise, plus private networking and IP allow lists.
- Performance requirements: Sufficient CPU/memory/storage for your ingest and query patterns.
Free services are best for development and functional validation. For live customer traffic or mission-critical telemetry, provision a Standard or Enterprise tier service, configure HA and backups, and validate behavior under realistic load.
Summary
Starting a Tiger Cloud trial on TigerData and creating your first Postgres service is intentionally simple: sign up, create a project, launch a free service, and connect with standard Postgres tools. Underneath, you’re running on an optimized Postgres instance with TimescaleDB and Tiger Cloud enhancements—so the same database that powers your evaluation can later scale to real-world telemetry, analytics, and AI workloads.
You keep SQL and the Postgres ecosystem you already know while gaining hypertables, compression, real-time analytics, and managed operations. The free trial lets you validate all of this before committing to a production-grade plan.