Skip to content
Notifications
Clear all

Palo Alto Prisma Access for mid-market - honest review after 6 months

2 Posts
2 Users
0 Reactions
0 Views
(@emilyr)
Estimable Member
Joined: 1 week ago
Posts: 92
Topic starter   [#7910]

Having completed a six-month evaluation and implementation cycle of Palo Alto Prisma Access for a 500-user organization, I feel compelled to share a detailed, metrics-oriented review. Our primary objectives were to consolidate security posture for a hybrid workforce, reduce operational overhead from legacy VPN appliances, and gain predictable visibility into cloud application traffic. The following analysis is based on telemetry gathered from our integrated monitoring stack and operational logs.

**Architectural Implementation & Performance Observations**

We deployed the Prisma Access Explicit Proxy model, steering specific SaaS and internet traffic through the service while maintaining direct connectivity to our IaaS environments. The initial configuration, particularly around Service Setup and Security Processing Nodes, required meticulous planning.

* **Latency Baseline:** We established a baseline using synthetic probes from 20 global locations. The median latency increase for users routed through the nearest PoP was 8-12ms, which is acceptable for most business applications. However, we observed significant variance (p95 spikes of 45-60ms) during what Palo Alto terms "infrastructure maintenance windows," occurring bi-weekly, which impacted real-time applications.
* **Throughput Constraints:** The advertised throughput is per-SPN. We found that during peak hours, a single SPN handling our regional traffic would approach 85% capacity, at which point packet loss became noticeable (~2%). This necessitated a revision of our license to allocate more capacity, an opaque process that required several support tickets.
* **Configuration Management:** While Panorama integration is touted as a strength, the synchronization state between on-prem Panorama and the Prisma Access cloud can be a source of drift. We implemented a daily validation check using the API.

```python
# Example API call to check config sync status (simplified)
import requests
response = requests.get('https://api.prismaaccess.com/config/status/v1',
headers={'Authorization': 'Bearer '})
sync_data = response.json()
if sync_data.get('commit_status') != 'SUCCESS':
# Trigger alert to our Grafana/PagerDuty stack
alert_on_drift()
```

**Cost and Operational Analysis**

The pricing model is user-based, which simplifies forecasting compared to bandwidth-based models, but it obscures underlying resource constraints.

* **Predictable Billing:** A clear advantage. Our monthly cost remained fixed despite a 30% increase in overall data egress, directly attributable to a migration to cloud-based video conferencing.
* **Hidden Operational Costs:** The major pitfall is the operational learning curve and monitoring gap. Prisma Access's native monitoring (Strata Cloud Manager) provides high-level health but lacks the granular metrics needed for true SRE-style management. We had to build a custom exporter to pull metrics into our Prometheus/Grafana stack for actionable alerting on session counts, threat prevention engine latency, and dataplane CPU.
* **Support Experience:** Support ticket resolution is tiered. For straightforward configuration issues, resolution averaged 4 hours. For performance anomalies requiring deep packet inspection in their cloud, the mean time to diagnosis extended to 18 hours, which is suboptimal for a critical path service.

**Security Efficacy & Visibility**

The security stack itself is robust and identical to their NGFW offerings.

* **Threat Prevention:** We validated the efficacy by running controlled threat feeds through the service. The URL Filtering and Advanced Threat Prevention modules performed at 99.8% efficacy, matching our on-prem firewall benchmarks.
* **Logging Fidelity:** The biggest challenge for a data-driven team is log integration. While you can forward logs to a SIEM, the schema is complex and the volume is immense. Cost-effective retention requires aggressive filtering at the source, which risks omitting crucial forensic data. Our log processing pipeline cost increased by approximately 40% to accommodate Prisma Access logs without reducing retention below our 90-day compliance requirement.

**Conclusion for the Mid-Market**

Prisma Access is a technically competent SASE platform that delivers on its core promise of integrated security for a distributed workforce. However, its value is heavily contingent on your team's ability to augment its native tooling with custom observability and your tolerance for opaque performance management during their maintenance operations. For organizations without the in-house SRE/DevOps capability to build the necessary monitoring bridges and automate configuration validation, the operational burden may outweigh the benefits of a consolidated security stack. It is a solution that provides excellent raw materials but requires significant assembly to achieve a production-grade, observable service.



   
Quote
(@backend_builder)
Reputable Member
Joined: 4 months ago
Posts: 164
 

That latency variance is interesting. We looked at Prisma Access a while back for a similar use case, and the p95 spikes were the main reason we paused. For a lot of our backend services talking to external APIs, even those 45-60ms inconsistencies can cause timeout cascades. Did you find those spikes correlated to specific regions or times of day? Our suspicion was always around noisy neighbor problems in the shared PoPs.


Latency is the enemy, but consistency is the goal.


   
ReplyQuote