<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Ajay Kulkarni</title>
    <description>The latest articles on DEV Community by Ajay Kulkarni (@akulkarni01).</description>
    <link>https://dev.to/akulkarni01</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2432570%2F1201e91b-b44b-4872-b439-7b14460fbbe8.png</url>
      <title>DEV Community: Ajay Kulkarni</title>
      <link>https://dev.to/akulkarni01</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/akulkarni01"/>
    <language>en</language>
    <item>
      <title>🚀 Introducing Agentic Postgres: The First &amp; Free Database Built for Agents</title>
      <dc:creator>Ajay Kulkarni</dc:creator>
      <pubDate>Tue, 21 Oct 2025 15:15:26 +0000</pubDate>
      <link>https://dev.to/tigerdata/introducing-agentic-postgres-the-first-free-database-built-for-agents-50i7</link>
      <guid>https://dev.to/tigerdata/introducing-agentic-postgres-the-first-free-database-built-for-agents-50i7</guid>
      <description>&lt;h2&gt;
  
  
  Agents are the New Developer
&lt;/h2&gt;

&lt;p&gt;80% of Claude Code &lt;a href="https://www.reddit.com/r/singularity/comments/1khxwjh/claude_code_wrote_80_of_its_own_code_anthropic_dev/" rel="noopener noreferrer"&gt;was written by AI&lt;/a&gt;. More than a &lt;a href="https://arstechnica.com/ai/2024/10/google-ceo-says-over-25-of-new-google-code-is-generated-by-ai/" rel="noopener noreferrer"&gt;quarter of all new code at Google&lt;/a&gt; was generated by AI one year ago. It’s safe to say that in the next 12 months, the majority of all new code will be written by AI.&lt;/p&gt;

&lt;p&gt;Agents don’t behave like humans. They behave in new ways. Software development tools need to evolve. Agents need a new kind of database made for how they work.&lt;/p&gt;

&lt;p&gt;But what would a database for agents look like?&lt;/p&gt;

&lt;p&gt;At Tiger, we’ve obsessed over databases for the past 10 years. We’ve built high-performance systems for time-series data, scaled Postgres across millions of workloads, and served thousands of customers and hundreds of thousands of developers around the world. &lt;/p&gt;

&lt;p&gt;​​So when agents arrived, we felt it immediately. In our bones. This new era of computing would need its own kind of data infrastructure. One that still delivered power without complexity, but built for a new type of user. &lt;/p&gt;

&lt;h2&gt;
  
  
  What Agents Actually Need
&lt;/h2&gt;

&lt;p&gt;Agents work differently than humans. They need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;MCPs, not UIs&lt;/strong&gt; – they call functions, not click buttons&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Native search&lt;/strong&gt; – find the right data instantly&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Fast forks and teardown&lt;/strong&gt; – spin up experiments without the overhead&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Efficient pricing&lt;/strong&gt; – pay for what you use&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Built-in knowledge&lt;/strong&gt; – best practices that come with the database&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What We Built
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. An MCP Server That Actually Understands Postgres
&lt;/h3&gt;

&lt;p&gt;We built an MCP server that doesn't just connect to the database—it knows how to use it well. We took 10+ years of Postgres experience and turned it into built-in prompts. Agents get tools for schema design, query optimization, and migrations, plus they can search Postgres docs on the fly.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; I want to create a personal assistant app. Please create a free 
&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; service on Tiger. Then using Postgres best practices, describe 
&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; the schema you would create.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. Search Built Into the Database
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;pgvectorscale&lt;/strong&gt;: We improved our vector search extension. Better indexing throughput, better recall, lower latency than pgvector.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;pg_textsearch&lt;/strong&gt;: Our newest extension. It implements BM25 for proper ranked keyword search, built for hybrid AI apps. Right now it uses an in-memory structure for speed—disk-based segments with compression are coming.&lt;/p&gt;

&lt;p&gt;No need to bolt on external search. It's all in Postgres.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Instant Database Forks
&lt;/h3&gt;

&lt;p&gt;We built a copy-on-write storage layer that makes databases instantly forkable. Full production data, isolated environment, seconds to create. No data duplication, no cost duplication. You only pay for what changes.&lt;/p&gt;

&lt;p&gt;Great for testing, benchmarking, or running migrations in parallel without touching prod.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; Create a fork of my database, &lt;span class="nb"&gt;test &lt;/span&gt;3 different indexes 
&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="k"&gt;for &lt;/span&gt;performance, delete the fork, and report findings.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  4. New CLI and a Free Tier
&lt;/h3&gt;

&lt;p&gt;Three commands to get started:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Install the Tiger CLI and MCP&lt;/span&gt;
&lt;span class="nv"&gt;$ &lt;/span&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://cli.tigerdata.com | sh
&lt;span class="nv"&gt;$ &lt;/span&gt;tiger auth login
&lt;span class="nv"&gt;$ &lt;/span&gt;tiger mcp &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then either tell your agent to create a free service, or run &lt;code&gt;tiger create service&lt;/code&gt; yourself.&lt;/p&gt;

&lt;h2&gt;
  
  
  Fluid Storage
&lt;/h2&gt;

&lt;p&gt;This all runs on Fluid Storage—our new distributed block store. It's built on local NVMe with a storage proxy that handles copy-on-write volumes.&lt;/p&gt;

&lt;p&gt;What you get:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Instant forks and snapshots&lt;/li&gt;
&lt;li&gt;Automatic scaling, no downtime&lt;/li&gt;
&lt;li&gt;Over 100K IOPS and 1 GB/s per volume&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;It looks like a local disk to Postgres but scales like cloud storage. Every free service runs on it.&lt;/p&gt;

&lt;h2&gt;
  
  
  Try It Today
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="nv"&gt;$ &lt;/span&gt;curl &lt;span class="nt"&gt;-fsSL&lt;/span&gt; https://cli.tigerdata.com | sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Built for agents. Designed for developers.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>database</category>
      <category>postgres</category>
      <category>agents</category>
    </item>
    <item>
      <title>🐯 🚀 Timescale is now TigerData: Building the Modern PostgreSQL for the Analytical and Agentic Era</title>
      <dc:creator>Ajay Kulkarni</dc:creator>
      <pubDate>Wed, 18 Jun 2025 16:09:24 +0000</pubDate>
      <link>https://dev.to/tigerdata/timescale-is-now-tigerdata-building-the-modern-postgresql-for-the-analytical-and-agentic-era-3a51</link>
      <guid>https://dev.to/tigerdata/timescale-is-now-tigerdata-building-the-modern-postgresql-for-the-analytical-and-agentic-era-3a51</guid>
      <description>&lt;p&gt;&lt;strong&gt;TL;DR: Eight years ago, we launched Timescale to bring time-series to PostgreSQL. Our mission was simple: help developers building time-series applications.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Since then, we have built a thriving business: 2,000 customers, mid 8-digit ARR (&amp;gt;100% growth year over year), $180 million raised from top investors. &lt;/p&gt;

&lt;p&gt;We serve companies who are building real-time analytical products and large-scale AI workloads like: Mistral, HuggingFace, Nvidia, Toyota, Tesla, NASA, JP Morgan Chase, Schneider Electric, Palo Alto Networks, and Caterpillar. These are companies building developer tools, industrial dashboards, crypto exchanges, AI-native games, financial RAG applications, and more. &lt;/p&gt;

&lt;p&gt;We’ve quietly evolved from a time-series database into the modern PostgreSQL for today’s and tomorrow’s computing, built for performance, scale, and the agentic future. So we’re changing our name: from Timescale to TigerData. Not to change who we are, but to reflect who we’ve become. TigerData is bold, fast, and built to power the next era of software.&lt;/p&gt;

&lt;h2&gt;
  
  
  Developers Thought We Were Crazy
&lt;/h2&gt;

&lt;p&gt;When we started 8 years ago, SQL databases were “old fashioned.” NoSQL was the future. Hadoop, MongoDB, Cassandra, InfluxDB – these were the new, exciting NoSQL databases. PostgreSQL was old and boring.&lt;/p&gt;

&lt;p&gt;That’s when we launched Timescale: a time-series database on PostgreSQL. Developers thought we were crazy. PostgreSQL didn’t scale. PostgreSQL wasn’t fast. Time-series needed a NoSQL database. Or so they said.&lt;/p&gt;

&lt;p&gt;“While I appreciate PostgreSQL every day, am I the only one who thinks this is a rather bad idea?” – top HackerNews comment on our launch (link)&lt;/p&gt;

&lt;p&gt;But we believed in PostgreSQL. We knew that boring could be awesome, especially with databases. And frankly, we were selfish: PostgreSQL was the only database that we wanted to use.&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Today, PostgreSQL has won. *&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;There are no more “SQL vs. NoSQL” debates. MongoDB, Cassandra, InfluxDB, and other NoSQL databases are seen as technical dead ends. Snowflake and Databricks are acquiring PostgreSQL companies. No one talks about Hadoop. The Lakehouse has won. &lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Today, agentic workloads are here. *&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Agents need a fast database. We see this in our customer base: private equity firms and hedge funds using agents to help understand market movements (“How did the market respond to Apple WWDC 2025?”); industrial equipment manufacturers building chat interfaces on top of internal manuals to help field technicians; developer platforms storing agentic interactions into history tables for greater transparency and trust; and so on.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Started as a Heretical Idea Is Now a Thriving Business
&lt;/h2&gt;

&lt;p&gt;We have also changed. We met in September 1997, during our first week at MIT. We soon became friends, roommates, even marathon training partners (Boston 1998).&lt;/p&gt;

&lt;p&gt;That friendship became the foundation for an entrepreneurial journey that has surpassed even our boldest imaginations. &lt;/p&gt;

&lt;p&gt;What started as a heretical idea is now a thriving business:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;2,000 customers&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Mid 8-digit ARR, growing &amp;gt;100% y/y&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;200 people in 25 countries&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;$180 million raised from top investors&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;60%+ gross margins&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Cloud usage is up 5x in the last 18 months, based on paid customers alone.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;And that’s only the paid side of the story. Our open-source community is 10x-20x larger. (Based on telemetry, it’s 10x, but we estimate that at least half of all deployments have telemetry turned off.)&lt;/p&gt;

&lt;p&gt;TimescaleDB is everywhere. It’s included in PostgreSQL offerings around the world: from Azure, Alibaba, and Huawei to Supabase, DigitalOcean, and Fly.io. You’ll also find it on Databricks Neon, Snowflake Crunchy Bridge, OVHCloud, Render, Vultr, Linode, Aiven, and more.&lt;/p&gt;

&lt;h2&gt;
  
  
  We Are TigerData
&lt;/h2&gt;

&lt;p&gt;Today, we are more than a time-series database. We are powering developer tools, SaaS applications, AI-native games, financial RAG applications, and more. The majority of workloads on our Cloud product aren’t time-series. Companies are running entire applications on us. CTOs would say to us, “You keep talking about how you are the best time-series database, but I see you as the best PostgreSQL.” &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;So we are now “TigerData"&lt;/strong&gt; We offer the fastest PostgreSQL. Speed without sacrifice.&lt;/p&gt;

&lt;p&gt;Our cloud offering is “Tiger Cloud.” Our logo stays the same: the tiger, looking forward, focused and fast. Some things do not change. Our open source time-series PostgreSQL extension remains TimescaleDB. Our vector extension is still pgvectorscale. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why “Tiger”?&lt;/strong&gt; The tiger has been our mascot since 2017, symbolizing the speed, power, and precision we strive for in our database. Over time, it’s become a core part of our culture: from weekly “Tiger Time” All Hands and monthly “State of the Tiger” business reviews, to welcoming new teammates as “tiger cubs” to the “jungle.” As we reflected on our products, performance, and community, we realized: we aren’t just Timescale. We’re Tiger. Today, we’re making that official.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;This is not a reinvention: it’s a reflection of how we already serve our customers today.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Polymarket&lt;/strong&gt; uses TigerData to track their price history. During the last election Polymarket ramped up 4x when trade volumes were extra high, to power over $3.7 billion dollars worth of trades.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Linktree&lt;/strong&gt; uses TigerData for their premium analytics product, saving $17K per month on 12.6 TB from compression savings. They also compressed their time to launch, going from 2 weeks to 2 days for shipping analytical features.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Titan America&lt;/strong&gt; uses TigerData’s compression and continuous aggregates to reduce costs and increase visibility into their facilities for manufacturing cement, ready-mixed concrete, and related materials. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Lucid Motors&lt;/strong&gt; uses TigerData for real-time telemetry and autonomous driving analytics. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Financial Times&lt;/strong&gt; runs time-sensitive analytics and semantic search. &lt;/p&gt;

&lt;h2&gt;
  
  
  Come Join Us
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Tiger is the Fastest PostgreSQL.&lt;/strong&gt; The operational database platform built for transactional, analytical, and agentic workloads. The only database platform that provides Speed without Sacrifice.&lt;/p&gt;

&lt;p&gt;This is not a rebrand, but a recommitment to our customers, to our developers, and to our core mission.&lt;/p&gt;

&lt;p&gt;If this mission resonates with you, come join us. Give us product feedback. Spread the word. Wear the swag. Join the team. &lt;/p&gt;

&lt;p&gt;It’s Go Time. 🐯🚀&lt;/p&gt;

</description>
      <category>news</category>
      <category>database</category>
      <category>ai</category>
      <category>postgres</category>
    </item>
  </channel>
</rss>
