You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Complete, production-grade integration with external systems. Includes authentication, security, webhooks, rate limiting, and full lifecycle management.
191
+
Complete, production-grade integration with external systems. Includes authentication, security, webhooks, retry policies, and full lifecycle management.
192
192
193
193
### Key Features
194
194
195
195
- ✅ **Authentication**: OAuth2, JWT, SAML, API Key, Basic Auth
| Do you need multi-source aggregation? |**Yes** → L2 (ETL) |
372
389
| Do you need real-time webhooks? |**Yes** → L3 (Connector) |
373
390
| Do you need advanced authentication (OAuth2, SAML)? |**Yes** → L3 (Connector) |
374
-
| Do you need rate limiting and retry policies? |**Yes** → L3 (Connector) |
391
+
| Do you need retry policies and circuit breaking? |**Yes** → L3 (Connector) — `retryConfig`, `health.circuitBreaker`. Outbound **rate limiting** is not a reason to pick any level: no level provides it (#4911); throttle at the provider or gateway|
375
392
| Is it a simple point-to-point sync with an external system? |**Yes** → L3 (Connector) with `syncConfig`|
376
393
| Are you building a data warehouse pipeline? |**Yes** → L2 (ETL) |
377
394
| Are you integrating with an enterprise system? |**Yes** → L3 (Connector) |
@@ -391,7 +408,7 @@ Use **L2 ETL Pipeline** for multi-source data warehousing.
391
408
```
392
409
ObjectStack ↔ Enterprise Connector ↔ SAP
393
410
↓
394
-
Webhooks, Auth, Rate Limiting
411
+
Webhooks, Auth, Retry / Circuit Breaker
395
412
```
396
413
Use **L3 Enterprise Connector** for production-grade integrations — including
397
414
straightforward point-to-point sync, via a connector instance with simple `auth`
@@ -444,7 +461,8 @@ and `ETLPipeline` is the author shape.
444
461
445
462
### From L2 to L3
446
463
447
-
When your ETL pipeline needs webhooks, advanced auth, or rate limiting:
464
+
When your ETL pipeline needs webhooks, advanced auth, or retry / circuit-breaker
0 commit comments