Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📚 improve mongo docs and param descriptions #4870

Merged
merged 1 commit into from
Jul 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sourceDefinitionId": "487b930d-7f6a-43ce-8bac-46e6b2de0a55",
"name": "Mongo DB",
"dockerRepository": "airbyte/source-mongodb",
"dockerImageTag": "0.3.2",
"dockerImageTag": "0.3.3",
"documentationUrl": "https://hub.docker.com/r/airbyte/source-mongodb",
"icon": "mongodb.svg"
}
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
- sourceDefinitionId: 487b930d-7f6a-43ce-8bac-46e6b2de0a55
name: Mongo DB
dockerRepository: airbyte/source-mongodb
dockerImageTag: 0.3.2
dockerImageTag: 0.3.3
documentationUrl: https://hub.docker.com/r/airbyte/source-mongodb
icon: mongodb.svg
- sourceDefinitionId: d19ae824-e289-4b14-995a-0632eb46d246
Expand Down
2 changes: 1 addition & 1 deletion airbyte-integrations/connectors/source-mongodb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ ENV AIRBYTE_ENTRYPOINT "ruby /airbyte/source.rb"
ENTRYPOINT ["ruby", "/airbyte/source.rb"]

LABEL io.airbyte.name=airbyte/source-mongodb
LABEL io.airbyte.version=0.3.2
LABEL io.airbyte.version=0.3.3
4 changes: 2 additions & 2 deletions airbyte-integrations/connectors/source-mongodb/lib/spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@
"auth_source": {
"title": "Authentication source",
"type": "string",
"description": "Authentication source where user information is stored",
"description": "Authentication source where user information is stored. See <a href=\"* [Authentication Source](https://docs.mongodb.com/manual/reference/connection-string/#mongodb-urioption-urioption.authSource)\"> the Mongo docs</a> for more info.",
"default": "admin",
"examples": ["admin"],
"order": 5
},
"replica_set": {
"title": "Replica Set",
"type": "string",
"description": "The name of the set to filter servers by, when connecting to a replica set (Under this condition, the 'TLS connection' value automatically becomes 'true')",
"description": "The name of the set to filter servers by, when connecting to a replica set (Under this condition, the 'TLS connection' value automatically becomes 'true'). See <a href=\"https://docs.mongodb.com/manual/reference/connection-string/#mongodb-urioption-urioption.replicaSet\"> the Mongo docs </a> for more info.",
"default": "",
"order": 6
},
Expand Down
16 changes: 16 additions & 0 deletions docs/integrations/sources/mongodb.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,19 @@ Make sure that MongoDB is accessible from external servers. Specific commands wi

Your `READ_ONLY_USER` should now be ready for use with Airbyte.


#### Possible configuration Parameters

* [Authentication Source](https://docs.mongodb.com/manual/reference/connection-string/#mongodb-urioption-urioption.authSource)
* Host: URL of the database
* Port: Port to use for connecting to the database
* User: username to use when connecting
* Password: used to authenticate the user
* [Replica Set](https://docs.mongodb.com/manual/reference/connection-string/#mongodb-urioption-urioption.replicaSet)
* Whether to enable SSL


## Changelog
| Version | Date | Pull Request | Subject |
| :------ | :-------- | :----- | :------ |
| 0.2.3 | 2021-07-20 | [4669](https://github.com/airbytehq/airbyte/pull/4669) | Subscriptions Stream now returns all kinds of subscriptions (including expired and canceled)|