Mongodb source
MongoDBSource
Bases: DataSource
Source code in blue/data/sources/mongodb_source.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | |
execute_query(query, database=None, collection=None, optional_properties={})
Execute a MongoDB query on a specific collection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
query
|
str
|
JSON-formatted MongoDB query string. |
required |
database
|
str
|
Target database name. |
None
|
collection
|
str
|
Target collection name. |
None
|
optional_properties
|
dict
|
Extra query parameters. |
{}
|
Returns:
| Type | Description |
|---|---|
|
list[dict]: List of documents matching the query, with |
Raises:
| Type | Description |
|---|---|
Exception
|
If |
Source code in blue/data/sources/mongodb_source.py
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | |
extract_schema(sample, schema=None, source=None)
Recursively infer schema structure from a sample MongoDB document.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sample
|
dict
|
Sample document for inference. |
required |
schema
|
DataSchema
|
Existing schema object to update. |
None
|
source
|
str
|
Current entity source node. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
DataSchema |
Inferred or updated schema object. |
Source code in blue/data/sources/mongodb_source.py
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | |
fetch_database_collection_entities(database, collection)
Fetch entities (document structures) for a collection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
database
|
str
|
Database name. |
required |
collection
|
str
|
Collection name. |
required |
Returns:
| Type | Description |
|---|---|
|
list[str]: Entity names in the collection schema. |
Source code in blue/data/sources/mongodb_source.py
141 142 143 144 145 146 147 148 149 150 151 152 153 | |
fetch_database_collection_metadata(database, collection)
Fetch metadata for a specific collection within a database.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
database
|
str
|
Name of the database. |
required |
collection
|
str
|
Name of the collection. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Metadata for the collection (default empty). |
Source code in blue/data/sources/mongodb_source.py
112 113 114 115 116 117 118 119 120 121 122 123 | |
fetch_database_collection_relations(database, collection)
Fetch relations (document nesting relationships) for a collection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
database
|
str
|
Database name. |
required |
collection
|
str
|
Collection name. |
required |
Returns:
| Type | Description |
|---|---|
|
list[str]: Relations between entities. |
Source code in blue/data/sources/mongodb_source.py
155 156 157 158 159 160 161 162 163 164 165 166 167 | |
fetch_database_collections(database)
List all collections within a database.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
database
|
str
|
Database name. |
required |
Returns:
| Type | Description |
|---|---|
|
list[str]: Names of collections. |
Source code in blue/data/sources/mongodb_source.py
99 100 101 102 103 104 105 106 107 108 109 110 | |
fetch_database_metadata(database)
Fetch metadata for a specific database.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
database
|
str
|
Database name. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Database-level metadata (default empty). |
Source code in blue/data/sources/mongodb_source.py
73 74 75 76 77 78 79 80 81 82 83 | |
fetch_database_schema(database)
Fetch schema information for a specific database.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
database
|
str
|
Database name. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Schema definition for all collections in the database. Currently returns an empty dictionary. |
Source code in blue/data/sources/mongodb_source.py
85 86 87 88 89 90 91 92 93 94 95 96 | |
fetch_databases()
List all databases in the MongoDB source.
Returns:
| Type | Description |
|---|---|
|
list[str]: Names of all available databases. |
Source code in blue/data/sources/mongodb_source.py
63 64 65 66 67 68 69 70 71 | |
fetch_metadata()
Fetch metadata for the MongoDB source.
Returns:
| Name | Type | Description |
|---|---|---|
dict |
General metadata about the MongoDB source. Currently returns an empty dictionary. |
Source code in blue/data/sources/mongodb_source.py
42 43 44 45 46 47 48 49 50 | |
fetch_schema()
Fetch schema for the MongoDB source.
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Schema information for the entire MongoDB source. Currently returns an empty dictionary. |
Source code in blue/data/sources/mongodb_source.py
52 53 54 55 56 57 58 59 60 | |