clickzetta-zettapark

Orchestrate Lakehouse data workflows with a Python DataFrame API.

8|3|Updated Mar 19, 2026
One-click install
npx skills add https://github.com/yunqiqiliang/clickzetta-skills --skill clickzetta-zettapark
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: clickzetta-zettapark
Source: https://github.com/yunqiqiliang/clickzetta-skills/tree/main/clickzetta-zettapark
Command: npx skills add https://github.com/yunqiqiliang/clickzetta-skills --skill clickzetta-zettapark

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

ZettaPark provides a Python DataFrame API that translates Python operations into SQL executed in the ClickZetta Lakehouse, enabling distributed data processing with familiar pandas-like workflows.

Core Features & Use Cases

  • Session creation and management for Lakehouse workloads.
  • DataFrame construction and transformations (filter/select/join/groupBy).
  • Result collection (collect/to_pandas/show) and interactive exploration.
  • Writing data to tables (save_as_table) and simple file operations (PUT/GET).
  • End-to-end workflows from data ingestion to analytics and storage.

Quick Start

Create a session, load data into a DataFrame, apply transformations, and write results back to a table.

Frequently Asked Questions about clickzetta-zettapark

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I use a Python DataFrame API to transform data in a Lakehouse?

You can use a Python DataFrame API to transform Lakehouse data by creating a session, loading data, and applying operations like filter, join, and groupBy. The API translates these Python operations into SQL executed in the Lakehouse.

Can I write DataFrame results directly to tables in a Lakehouse?

You can write DataFrame results directly to Lakehouse tables using the save_as_table operation. This enables end-to-end workflows from data ingestion through transformation and analytics directly into persistent storage.

Does the Python DataFrame API support pandas-like workflows for distributed data processing?

The Python DataFrame API supports pandas-like workflows for distributed data processing. It translates familiar pandas-style operations into SQL that executes in the Lakehouse, enabling distributed processing without changing your workflow syntax.

What is needed to start an end-to-end Lakehouse data workflow with Python?

To start an end-to-end Lakehouse data workflow with Python, you need to create a session for workload management. This session enables DataFrame construction, data transformations, result collection, and writing tables within a single workflow.

Can I execute SQL and perform file operations within a single Lakehouse workflow?

You can execute SQL and perform simple file operations like PUT and GET within a single Lakehouse workflow. This integrates session management, data manipulation, and file operations alongside DataFrame transformations.