davidzollo commented on code in PR #10469: URL: https://github.com/apache/seatunnel/pull/10469#discussion_r2852673357
########## docs/en/connectors/source/Airtable.md: ########## @@ -0,0 +1,182 @@ +import ChangeLog from '../changelog/connector-http-airtable.md'; + +# Airtable + +> Airtable source connector + +## Description + +Used to read data from Airtable. + +## Key features + +- [x] [batch](../../introduction/concepts/connector-v2-features.md) +- [ ] [stream](../../introduction/concepts/connector-v2-features.md) +- [ ] [exactly-once](../../introduction/concepts/connector-v2-features.md) +- [x] [column projection](../../introduction/concepts/connector-v2-features.md) +- [ ] [parallelism](../../introduction/concepts/connector-v2-features.md) +- [ ] [support user-defined split](../../introduction/concepts/connector-v2-features.md) + +## Options + +| name | type | required | default value | +|-----------------------------|---------|----------|---------------| +| token | String | Yes | - | +| base_id | String | Yes | - | +| table | String | Yes | - | +| api_base_url | String | No | https://api.airtable.com | +| view | String | No | - | +| fields | List | No | - | +| filter_by_formula | String | No | - | +| max_records | int | No | - | +| page_size | int | No | - | +| sort | String | No | - | +| cell_format | String | No | - | +| return_fields_by_field_id | boolean | No | - | +| record_metadata | List | No | - | +| time_zone | String | No | - | +| user_locale | String | No | - | +| request_interval_ms | int | No | 220 | +| rate_limit_backoff_ms | int | No | 30000 | +| rate_limit_max_retries | int | No | 3 | +| schema | Config | No | - | +| schema.fields | Config | No | - | +| format | String | No | json | +| content_json | String | No | - | Review Comment: Is it `content_field `? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
