Confluent
- data processing
- ai agent
- developer tool
Help customers shift left by bringing processing and cleaning closer to the data source, eliminating wasteful data, manual break-fix, and high costs.
- Iduuid
- tripIDvarchar
- methodenum
- amountfloat
- createdAttimestamp
CREATE TABLE `DEV.db_dev.daily_sales_summary` ( product_id BIGINT, date DATE, total_quantity BIGINT,
INSERT INTO `DEV.db_dev.daily_sales_summary` SELECT product_id, DATE_FORMAT(order_date, 'yyyy-MM-dd') AS date SUM(quantity) AS total_quantity, SUM(quantity * price) AS total_revenue FROM sales GROUP BY product_id, DATE_FORMAT(order_date, 'yyyy-MM-dd');
SELECT * FROM daily_sales_summary LIMIT 10;
SQL Workspace to process data and explore schema — all in one place.
- Iduuid
- tripIDvarchar
- methodenum
- amountfloat
- createdAttimestamp
-- Retrieve basic trip details including customer and driver information SELECT customers.name AS customer_name, drivers.name AS driver_name trips.start_location, trips.end_location, FROM trips JOIN customers ON trips.customer_id = customers.customer_id JOIN drivers ON trips.driver_id = drivers.driver_id;
Stream lineage and Query profiler make pipelines easier to discover, understand, and debug.
Stream lineage maps the pipeline, and the query profiler exposes task-level execution details, giving visibility into how a statement runs. This accelerates detection of bottlenecks, skew, and other performance problems.
Makes SQL easier to write and faster to get started.
Build real-time AI agents.
Agent configurations
Allow agent to access and interact with external systems and data.
Determine the intelligence, speed, and how to handle complex tasks.
How the agent should behave when an error occurs.
Number of tool/step failures allowed before stopping
Maximum number of reasoning/acting loop cycles
Token limit that triggers trimming or summarization
Maximum allowed runtime for each request
Style of summary used when compressing context.
How the runtime reduces tokens when context gets too large.
Make data processing accessible to a broader audience, not just data experts.
Create embeddings
Transform column data into vector embeddings and append to the topic.
De-duplicate topic
Generate a topic containing only unique records from an input topic.
Mask topic
Generate a topic containing masked fields from an input topic.
Transform topic
Apply custom transformations to the data in a topic.
Join topic
Combine records from multiple input topics to produce a unified output topic.
Filter topic
Select and retain only records that meet specific criteria from an input topic.
Transform topic
Apply custom transformations to the data in a topic.
Action details
Output topic
573e-01c0-a49b
SQL
INSERT INTO completed_rides SELECT driver_id, passenger_id, start_location, end_location, start_time, end_time, fare FROM rides_source WHERE ride_status = 'COMPLETED';
Lineage
Message behind
Message in
Message out
Establish a robust infrastructure that meets the team's unique needs.
GCP.uswest.env-03638o
Account
Execute long-running Flink statements using a service account to enhance security and ensure controlled resource access.

