News & Intel

Live

Daily AI-curated intelligence on Palantir Foundry, Ontology, AIP, Apollo, contracts, and community feedback. Updated automatically via GitHub Actions every day at 7 AM UTC.

350
Total Articles
570
Contract Awards
234
Community Feedback
5
Daily Briefings
FOUNDRY

“ExplorationRuntimeNotReady” Error When Exploring S3 Data Connection in Foundry

Hello, I’m encountering an issue when trying to explore an S3 Data Connection in Palantir Foundry. Here are the details: Error Message: Failed to load files Unknown error occurred: STATUS ExplorationRuntimeReadinessService:ExplorationRuntimeNotReady Here’s what I’ve tried: Verified S3 bucket and IAM policies are correct. Confirmed network allowlisting and VPC endpoint configuration. Waited several minutes and retried, but the error persists. Context: I’m in the Data Connection app, attempting to browse files in an S3 bucket. The error appears immediately when I try to load the file listing. Questions: What does the “ExplorationRuntimeNotReady” error mean in this context? Are there any steps I can take to resolve this, or is this an internal Foundry infrastructure issue? Any guidance or suggestions would be greatly appreciated! Thanks in advance. 1 post - 1 participant Read full topic

Palantir Community — LatestMar 24, 2026
FOUNDRY

How can add a background image to a page in workshop?

currently, looks it’s only can setup with background color, is it possible to add a background image to a page in workshop? 2 posts - 2 participants Read full topic

Palantir Community — LatestMar 24, 2026
FOUNDRY

Is it possible to send XLSX attachment through an email from Foundry?

I have a pipeline that generates excels documents. I want those to be attached and sent via email (notifications) from Foundry. Is there a built-in way to do this ? 1 post - 1 participant Read full topic

Palantir Community — LatestMar 24, 2026
FOUNDRY

A brave Marine colonel took on the Pentagon — and paid the price for it

How one Marine colonel transformed Pentagon AI capabilities with Project Maven, only to face bureaucratic investigations that took a heavy toll on his career.

Fox NewsMar 23, 2026
FOUNDRY

No preview-transform tool in Palantir MCP?

When I use Continue in the Foundry web IDE, I see the models properly use the transform preview as shown in the docs here: https://www.palantir.com/docs/foundry/palantir-mcp/overview/#build-and-iterate-on-python-transforms However, I noticed that my local Claude Code runs have more issues and it’s because it never previews the code it writes. Claude Code said it didn’t have the tool, and sure enough, the official docs don’t list it either: https://www.palantir.com/docs/foundry/palantir-mcp/available-tools/ Anyone know how to give CC or Codex access to the preview-transform tool like Continue does? 1 post - 1 participant Read full topic

Palantir Community — LatestMar 20, 2026
FOUNDRYAIPRELEASE

AIP Document Intelligence for free developer tier

I have had an AIP developer tier (Free) account for a few months. I do not see AIP Document intelligence inside of foundry even though the February 2026 release notes indicate: "AIP Document Intelligence will be generally available on February 4, 2026 and is enabled by default for all AIP enrollments” Is this a bug or when will this be available? 2 posts - 2 participants Read full topic

Palantir Community — LatestMar 20, 2026
FOUNDRY

Accessing PDF via URL in Foundry (works in browser, fails in webhook/pipeline)

Hi everyone, I’m trying to retrieve a PDF from an internal endpoint: Current behavior Works in browser (VPN) and via a button in Workshop Each row in the object table will have its own pdf file that opens through a URL Fails when called from Foundry (webhook/pipeline) → 400 / 503 errors Goal Fetch the PDF Store it in Foundry (media set) Extract text using pdfTextExtractionV1 / pdfOcrV1 What I tried Webhook with OAuth2 → failed (auth / unreachable) Pipeline ingestion → no HTTP/REST connector available Question Is this expected due to network/auth restrictions (browser vs backend)? What’s the recommended way to ingest and process PDFs from such endpoints? 2 posts - 2 participants Read full topic

Palantir Community — LatestMar 19, 2026
FOUNDRYPARTNERSHIP

Single Pipeline Builder vs 20 Pipeline Builders

Hi! I’m dealing with an extremely dataset. Because the volume is too large to process in a single transform to create one output, I plan to split it into multiple parts and union them later. In this case, would it be better to generate 20 datasets within one single pipeline builder, or to create 20 separate pipeline builders? Please provide advice regarding memory usage, computing speed, and cost efficiency. 3 posts - 3 participants Read full topic

Palantir Community — LatestMar 18, 2026
FOUNDRYONTOLOGY

Geopoint Object Property Compatibility Issue

Hi, I have made a pipeline builder that creates a geopoint. When I preview in pipeline builder, it shows it as this type. (Picture Below). Once the dataset is built it shows it as Struct, but of typeclass: geoPoint.geoPoint (Picture below) However, when I go to create my ontology object, it sets the property as ‘Struct’ and I can’t choose geopoint. What am I doing wrong? Kind Regards Sam 4 posts - 3 participants Read full topic

Palantir Community — LatestMar 18, 2026
FOUNDRY

How to show side by side bars from two different objects?

Hi all, I am trying to create a view to showcase the evolution of financial figures based on a date picker. The picker determines the YTD(year to date) and the LYTD(last year to date). The issue I am facing is that it seems impossible to have the bars side by side in Workshop, does anyone know how to do that without having to get YTD and LYTD as separate metrics? These are the two ways I am able to showcase the evolution. Thanks in advance! 2 posts - 2 participants Read full topic

Palantir Community — LatestMar 18, 2026
FOUNDRY

Workarounds to deploy big contours

Hello All, We have developed a contour dashboard in our DEV environment and would like to deploy it to other environments using Marketplace. However, when I create the product in Devops and add the contour, the packaging gets timed out. We are unable to add the contours and deploy them. Is there a workaround to do this without breaking the contour into multiple small analysis? 1 post - 1 participant Read full topic

Palantir Community — LatestMar 18, 2026
FOUNDRYAIPPARTNERSHIP

AIG, McGill Announce Collaboration to Potentially Transform Subscription Market

McGill and Partners and American International Group said they collaborating to perhaps disrupt the subscription market—using agentic artificial intelligence to deploy capital to clients. AIG said the digital-first platform of the London-based independent bro…

Insurance JournalMar 18, 2026
FOUNDRYRELEASE

How to trigger a schedule based on new rows in a CDC stream ingest (aka, how to get a batch CDC)?

I did setup a CDC from a data source, in Foundry. Hence, this is a stream ingest. However, the updates are very irregular (a few times per day) but it would be important to process the update in a batch and relatively quickly. Is it possible to have a batch CDC ingest ? 2 posts - 1 participant Read full topic

Palantir Community — LatestMar 17, 2026
FOUNDRY

Question about visualising geometry points in pipeline builder

I am trying to extract some information from a media set which in this case is a simple pdf I made using parcel information. the pdf has a simple table (or text i guess??) with the basic information and geometrie points. my pipeline looks like this: my output should be a dataset containing a latitude and longitude so i can use it as a geopoint for visualisation in workspace. i get schema error on the last one and im stuck: Is this approach right or am i doing it completely wrong? My goal is that the mediaset provided gives out the information on a map. 2 posts - 2 participants Read full topic

Palantir Community — LatestMar 17, 2026
FOUNDRYONTOLOGY

How to Trigger Ontology Action Type

Hi Experts, Currently, I need to set up the rules to trigger action in one business scenario,like the machine’s temperature exceeds 120 degrees, triggering an alarm notification(Email or SMS). And I have build the ontology already. I wonder how to set rules to trigger ontology action in Foundry. I have been reading some palantir offical documents, like Action Rules/Foundry Rules. But I don’t find the right solution. Could you please guide me how to set up this? Thanks in adavance! Peton 1 post - 1 participant Read full topic

Palantir Community — LatestMar 17, 2026
FOUNDRY

Auto color pipeline builder objects

I like how data lineage auto colors things. I think it would be nice if pipeline builder did this as well. (Or allow a universal template that could be applied) 1 post - 1 participant Read full topic

Palantir Community — LatestMar 16, 2026
FOUNDRY

Automatic Pipeline Run on full Snapshot Replace

(topic deleted by author) 1 post - 1 participant Read full topic

Palantir Community — LatestMar 16, 2026
FOUNDRY

Workshop string selector

Is there a reason I can’t add user input to a string selector if it set to single selection. 1 post - 1 participant Read full topic

Palantir Community — LatestMar 16, 2026