<@U04SE163WC8> what does mongodb destination do fo...
# ask-ai
k
@kapa.ai what does mongodb destination do for multiple streams. Does it create multiple database, collection or what ?
u
For MongoDB as a destination in Airbyte, each stream will be output into its own collection in MongoDB. It does not create multiple databases for each stream. Each collection will contain 3 fields: - `_id`: an identifier assigned to each document that is processed. The field type in MongoDB is
String
. - `_airbyte_emitted_at`: a timestamp representing when the event was pulled from the data source. The field type in MongoDB is
Timestamp
. - `_airbyte_data`: a json blob representing with the event data. The field type in MongoDB is
Object
. You can find more details in the [MongoDB destination documentation](https://docs.airbyte.com/integrations/destinations/mongodb#mongodb).
k
@kapa.ai Couchbase is organised in the form of buckets, scopes, collections, documents. What should be the workflow for creating a destination connector using couchbase
u
A message from kapa.ai
u
I'm sorry, but the provided knowledge sources do not contain specific information on creating a destination connector using Couchbase with Airbyte. However, you can refer to the general guide on building a new connector in the [Airbyte documentation](https://docs.airbyte.io/connector-development). This guide provides a step-by-step process on how to build a new connector. For a more specific guide related to Couchbase, you might need to refer to Couchbase's own documentation or other resources. Please note that when creating a destination connector, you would typically need to understand how to write data into the system (Couchbase in this case), handle updates, deletions, and schema changes. If you need further assistance, feel free to ask!