Connectors Agent Instructions
BigID Connectors - Agent Instructions
Section titled “BigID Connectors - Agent Instructions”This directory contains documentation for building BigID Connectors. When generating code, answering questions, or assisting developers with BigID Connectors, adhere to the following core concepts:
Core Architecture
Section titled “Core Architecture”- Connectors allow BigID to scan and catalog data from custom or unsupported data sources.
- They are typically distributed as Docker containers and run alongside the BigID Scanners.
Connector Types
Section titled “Connector Types”- Internal Connectors (Java): Built directly into the scanner using the BigID Java Connector SDK. Highly performant but requires Java expertise.
- External Connectors (REST API): Standalone web services written in any language. The BigID scanner communicates with them over HTTP to stream data.
REST Connector Structure
Section titled “REST Connector Structure”An external REST connector must implement specific endpoints depending on the data type:
- Structured Data: Needs endpoints to list objects (
/objects), list fields within objects, and read tabular records (/objects/{objectName}/records). - Unstructured Data: Needs endpoints to list containers (
/containers), list objects/files within containers, and a content-stream endpoint to stream raw binary data back to BigID for classification.
Pagination & Implementation Rules
Section titled “Pagination & Implementation Rules”- Pagination is mandatory. All endpoints that return lists of objects or records MUST support
limitandoffsetquery parameters to prevent memory exhaustion and timeout errors in the BigID scanner. - Connection Testing: Every connector must implement a
/testendpoint that validates the user-provided credentials against the target data source without running a full scan. - Security: Connectors receive data source credentials over HTTP. Therefore, they should always be secured behind HTTPS/TLS in production.
© 2026 BigID, Inc.
All rights reserved.
All rights reserved.