loading.py
SQL_update(df, model, index=None, columns=None)
¶
Generate the SQL code required to update the database.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
df | DataFrame | DataFrame containing the new data to be uploaded to the database. The columns to be updated need to have the same headers between the df and the table in the database. | required |
model | Model | The model that is being updated. | required |
index | Optional[str] | Header of the column to join on, determines which rows in the different tables match. If None, then use the primary key column. | None |
columns | Optional[List[str]] | The column headers of the columns to be updated. If None, updates all columns except the index column. | None |
Returns:
Type | Description |
---|---|
str | The SQL command to update the database. |
Source code in vast_pipeline/pipeline/loading.py
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 |
|
bulk_upload_model(djmodel, generator, batch_size=10000, return_ids=False)
¶
Bulk upload a list of generator objects of django models to db.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
djmodel | Model | The Django pipeline model to be uploaded. | required |
generator | Iterable[Generator[Model, None, None]] | The generator objects of the model to upload. | required |
batch_size | int | How many records to upload at once. | 10000 |
return_ids | bool | When set to True, the database IDs of the uploaded objects are returned. | False |
Returns:
Type | Description |
---|---|
List[int] | None or a list of the database IDs of the uploaded objects. |
Source code in vast_pipeline/pipeline/loading.py
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 |
|
make_upload_associations(associations_df)
¶
Uploads the associations from the supplied associations DataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
associations_df | DataFrame | DataFrame containing the associations information from the pipeline. | required |
Returns:
Type | Description |
---|---|
None | None. |
Source code in vast_pipeline/pipeline/loading.py
225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
|
make_upload_images(paths, image_config)
¶
Carry the first part of the pipeline, by uploading all the images to the image table and populated band and skyregion objects.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
paths | Dict[str, Dict[str, str]] | Dictionary containing the image, noise and background paths of all the images in the pipeline run. The primary keys are | required |
image_config | Dict | Dictionary of configuration options for the image ingestion. | required |
Returns:
Type | Description |
---|---|
List[Image] | A list of Image objects that have been uploaded. |
List[SkyRegion] | A list of SkyRegion objects that have been uploaded. |
List[Band] | A list of Band objects that have been uploaded. |
Source code in vast_pipeline/pipeline/loading.py
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 |
|
make_upload_measurements(measurements_df)
¶
Uploads the measurements from the supplied measurements DataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
measurements_df | DataFrame | DataFrame containing the measurements information from the pipeline. | required |
Returns:
Type | Description |
---|---|
DataFrame | Original DataFrame with the database ID attached to each row. |
Source code in vast_pipeline/pipeline/loading.py
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
|
make_upload_related_sources(related_df)
¶
Uploads the related sources from the supplied related sources DataFrame.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
related_df | DataFrame | DataFrame containing the related sources information from the pipeline. | required |
Returns:
Type | Description |
---|---|
None | None. |
Source code in vast_pipeline/pipeline/loading.py
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
|
make_upload_sources(sources_df, pipeline_run, add_mode=False)
¶
Delete previous sources for given pipeline run and bulk upload new found sources as well as related sources.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sources_df | DataFrame | Holds the measurements associated into sources. The output of of thE association step. | required |
pipeline_run | Run | The pipeline Run object. | required |
add_mode | bool | Whether the pipeline is running in add image mode. | False |
Returns:
Type | Description |
---|---|
DataFrame | The input dataframe with the 'id' column added. |
Source code in vast_pipeline/pipeline/loading.py
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 |
|
update_sources(sources_df, batch_size=10000)
¶
Update database using SQL code. This function opens one connection to the database, and closes it after the update is done.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
sources_df | DataFrame | DataFrame containing the new data to be uploaded to the database. The columns to be updated need to have the same headers between the df and the table in the database. | required |
batch_size | int | The df rows are broken into chunks, each chunk is executed in a separate SQL command, batch_size determines the maximum size of the chunk. | 10000 |
Returns:
Type | Description |
---|---|
DataFrame | DataFrame containing the new data to be uploaded to the database. |
Source code in vast_pipeline/pipeline/loading.py
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 |
|