Hisoka-X commented on code in PR #7909:
URL: https://github.com/apache/seatunnel/pull/7909#discussion_r1818459148
##########
docs/en/connector-v2/source/Pinecone.md:
##########
@@ -0,0 +1,41 @@
+# Pinecone
+
+> Pinecone source connector
+
+## Description
+
+This Pinecone source connector reads data from Pinecone
+## Key Features
+
+- [x] [batch](../../concept/connector-v2-features.md)
+- [x] [exactly-once](../../concept/connector-v2-features.md)
+- [ ] [column projection](../../concept/connector-v2-features.md)
+
+## Data Type Mapping
+
+| Pinecone Data Type | SeaTunnel Data Type |
+|---------------------|---------------------|
+| FLOAT_VECTOR | FLOAT_VECTOR |
+| SPARSE_FLOAT_VECTOR | SPARSE_FLOAT_VECTOR |
+
+## Source Options
+
+| Name | Type | Required | Default | Description
|
+|------------|---------|----------|---------|------------------------------------|
+| api_key | String | Yes | - | Pinecone token for
authentication. |
+| index | String | Yes | - | Pinecone index name
|
+| batch_size | Integer | No | 100 | Batch size to read
|
+
+## Task Example
+
+```bash
+source {
+ Milvus {
+ token = "*****"
+ index = "movie_reviews"
+ }
+}
+```
Review Comment:
the example not right.
--
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]