palantir-migration-deep-dive

Featured

Execute major Palantir Foundry migration strategies including data migration, API version upgrades, and platform transitions. Use when migrating data into Foundry, upgrading between API versions, or re-platforming existing integrations. Trigger with phrases like "migrate to palantir", "foundry migration", "palantir data migration", "foundry replatform".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Palantir Migration Deep Dive ## Overview Comprehensive guide for migrating data into Foundry, migrating from legacy systems to Foundry-backed architectures, and upgrading between Foundry API versions using the strangler fig pattern. ## Prerequisites - Source system access and schema documentation - Foundry enrollment with write access - Understanding of Foundry data pipeline architecture (`palantir-reference-architecture`) ## Instructions ### Step 1: Migration Assessment ```markdown ## Migration Checklist - [ ] Source system inventory (tables, volumes, refresh rates) - [ ] Data classification (PII, confidential, public) - [ ] Schema mapping: source columns → Foundry dataset columns - [ ] Volume estimate: rows, GB, growth rate - [ ] Dependencies: downstream consumers of source data - [ ] Timeline: parallel run period, cutover date ``` ### Step 2: Data Migration — Bulk Import ```python import foundry, pandas as pd client = get_foundry_client() # Read source data (example: PostgreSQL) df = pd.read_sql("SELECT * FROM orders WHERE year >= 2024", source_conn) # Upload to Foundry dataset client.datasets.Dataset.upload( dataset_rid="ri.foundry.main.dataset.xxxxx", branch_id="master", file_path="orders.parquet", data=df.to_parquet(), content_type="application/x-parquet", ) print(f"Uploaded {len(df)} rows to Foundry") ``` ### Step 3: Incremental Sync (Ongoing) ```python from datetime import datetime, timedelta def incremental_sync(client, source_conn, da...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

palantir-upgrade-migration

Upgrade Palantir Foundry SDK versions and handle breaking changes. Use when upgrading foundry-platform-sdk, migrating between API versions, or detecting deprecations in Foundry integrations. Trigger with phrases like "upgrade palantir", "palantir migration", "foundry breaking changes", "update foundry SDK".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-reference-architecture

Implement Palantir Foundry reference architecture with best-practice project layout. Use when designing new Foundry integrations, planning data pipeline architecture, or establishing patterns for Ontology-driven applications. Trigger with phrases like "palantir architecture", "foundry best practices", "foundry project structure", "how to organize palantir".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-observability

Set up observability for Palantir Foundry integrations with metrics, logging, and alerts. Use when implementing monitoring for Foundry API calls, setting up dashboards, or configuring alerting for Foundry integration health. Trigger with phrases like "palantir monitoring", "foundry metrics", "palantir observability", "monitor foundry", "foundry alerts".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-cost-tuning

Optimize Palantir Foundry costs through compute tuning, incremental builds, and usage monitoring. Use when analyzing Foundry compute costs, reducing API usage, or implementing cost monitoring for Foundry workloads. Trigger with phrases like "palantir cost", "foundry billing", "reduce foundry costs", "foundry pricing", "foundry expensive".

2,266 Updated today
jeremylongshore
AI & Automation Featured

palantir-prod-checklist

Execute Palantir Foundry production deployment checklist and rollback procedures. Use when deploying Foundry integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "palantir production", "deploy foundry", "palantir go-live", "foundry launch checklist".

2,266 Updated today
jeremylongshore