Skip to main content
Version: 2.0.0

Send Consistent Updates (Read-Your-Own-Writes)

This feature enables immediate use of newly created data for permission checks. It works by routing data changes requests through the PDP and waiting them to be applied before responding.

Min. PDP version required

Requires PDP version 0.5.1 or above.

Example: Create a User then Check Permissions

from permit import Permit

# Initialize SDK with proxy_facts_via_pdp enabled
permit = Permit(
token="<your-api-key>",
pdp="http://localhost:7766",
proxy_facts_via_pdp=True
)

async def create_and_check():
# Create user
user = await permit.api.users.create({
"key": "user123",
"email": "user@example.com"
})

# Check for permissions right after
allowed = await permit.check(user.key, "read", "document")
print(f"Permission granted: {allowed}")

With proxy_facts_via_pdp enabled, the API call waits until the user data is fully synced to the PDP before returning, ensuring the permission check succeeds immediately after.

Configuration Options

The timeout parameter specifies the maximum waiting time for data synchronization:

  • 0: No waiting - respond immediately
  • Positive value (e.g., 10): Wait up to specified seconds
  • Negative value (e.g., -1): Wait indefinitely

The timeout_policy parameter defines behavior when timeout occurs:

  • ignore: Respond immediately when data update did not apply within the timeout period
  • fail: Respond with 424 status code when data update did not apply within the timeout period
Min. PDP version required

The timeout_policy parameter is available in PDP v0.8.0 and above.

PDP Configuration

Default values for proxy facts can be set in the PDP using environment variables:

  • PDP_LOCAL_FACTS_WAIT_TIMEOUT: Default timeout in seconds to wait for facts to sync (default: 10)
  • PDP_LOCAL_FACTS_TIMEOUT_POLICY: Default policy on timeout, either ignore or fail (default: ignore)

SDK Configuration

# SDK-level configuration (applies to all operations)
permit = Permit(
token="<your-api-key>",
pdp="http://localhost:7766",
proxy_facts_via_pdp=True,
facts_sync_timeout=10, # Optional: Uses PDP default if not specified
facts_sync_timeout_policy="ignore" # Optional: Uses PDP default if not specified
)

# All operations will use the SDK-level settings
user = await permit.api.users.create({ /* user data */ })

Operation-Specific Configuration

# SDK initialization with proxy_facts_via_pdp enabled
permit = Permit(
token="<your-api-key>",
pdp="http://localhost:7766",
proxy_facts_via_pdp=True
)

# Override the default timeout for a specific operation
with permit.wait_for_sync(timeout=15) as p:
user = await p.api.users.create({ /* user data */ })

Direct API Usage

To call the PDP's Local Facts API directly:

POST /v2/facts/...
Headers:
X-Wait-timeout: 10
X-Timeout-policy: ignore

The routes and schema are the same as the Permit API facts routes. For example, the those routes are related and share the same schema:

POST http://localhost:7766/v2/facts/users
POST https://api.permit.io/v2/facts/default/prod/users

Supported APIs

# Users
POST /v2/facts/users
PUT /v2/facts/users/{user_id}
PATCH /v2/facts/users/{user_id}

# Tenants
POST /v2/facts/tenants

# Role Assignments
POST /v2/facts/users/{user_id}/roles
POST /v2/facts/role_assignments

# Resource Instances
POST /v2/facts/resource_instances
PATCH /v2/facts/resource_instances/{instance_id}

# Relationship Tuples
POST /v2/facts/relationship_tuples

APIs not listed above are forwarded to the Permit API without waiting for synchronization.

Contact us in our Slack community for additional API or SDK support.

Best Practices

Performance Considerations

When using proxy facts, be aware of these performance implications:

  • Increased API Latency: API requests will take longer then direct calls to the Permit API, as they wait for data synchronization
  • Faster Sync Times: Despite increased request latency, data updates are typically received faster compared to data updates via the Permit API
  • CPU Usage: PDP CPU usage may increase with high traffic to proxy facts endpoints
  • Unsupported APIs: Unsupported APIs are still routed through the PDP to the Permit API, which can result in higher latency

Deployment Recommendations

This feature works best in the following deployment scenarios:

Recommended: Deploy PDPs as a Centralized PDP or as a PDP Sidecar to your application. This ensures the same PDP instance handles both data creation and permission checks.

Less Optimal: Using a PDP Cluster with load balancing, permission checks may be routed to PDPs that haven't received the data update yet.