-
Notifications
You must be signed in to change notification settings - Fork 0
/
bulkloader.yaml
530 lines (427 loc) · 18.6 KB
/
bulkloader.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
243
244
245
246
247
248
249
250
251
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
279
280
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
324
325
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
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
# Autogenerated bulkloader.yaml file.
# You must edit this file before using it. TODO: Remove this line when done.
# At a minimum address the items marked with TODO:
# * Fill in connector and connector_options
# * Review the property_map.
# - Ensure the 'external_name' matches the name of your CSV column,
# XML tag, etc.
# - Check that __key__ property is what you want. Its value will become
# the key name on import, and on export the value will be the Key
# object. If you would like automatic key generation on import and
# omitting the key on export, you can remove the entire __key__
# property from the property map.
# If you have module(s) with your model classes, add them here. Also
# change the kind properties to model_class.
python_preamble:
- import: base64
- import: re
- import: google.appengine.ext.bulkload.transform
- import: google.appengine.ext.bulkload.bulkloader_wizard
- import: google.appengine.ext.db
- import: google.appengine.api.datastore
- import: google.appengine.api.users
transformers:
- kind: AnnouncementEntity
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: date
external_name: date
# Type: Date/Time Stats: 2 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: html
external_name: html
# Type: Text Stats: 2 properties of this type in this kind.
import_transform: db.Text
- property: is_draft
external_name: is_draft
# Type: Boolean Stats: 2 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: title
external_name: title
# Type: String Stats: 2 properties of this type in this kind.
- kind: ConfigPropertyEntity
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: is_draft
external_name: is_draft
# Type: Boolean Stats: 2 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: value
external_name: value
# Type: Text Stats: 2 properties of this type in this kind.
import_transform: db.Text
- kind: DurableJobEntity
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: execution_time_sec
external_name: execution_time_sec
# Type: Integer Stats: 4 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: output
external_name: output
# Type: Text Stats: 4 properties of this type in this kind.
import_transform: db.Text
- property: status_code
external_name: status_code
# Type: Integer Stats: 4 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: updated_on
external_name: updated_on
# Type: Date/Time Stats: 4 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- kind: EventEntity
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: data
external_name: data
# Type: Text Stats: 28 properties of this type in this kind.
import_transform: db.Text
- property: recorded_on
external_name: recorded_on
# Type: Date/Time Stats: 28 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: source
external_name: source
# Type: String Stats: 28 properties of this type in this kind.
- property: user_id
external_name: user_id
# Type: String Stats: 28 properties of this type in this kind.
- kind: FileDataEntity
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: data
external_name: data
# Type: Blob Stats: 119 properties of this type in this kind.
import_transform: transform.blobproperty_from_base64
export_transform: base64.b64encode
- kind: FileMetadataEntity
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: created_on
external_name: created_on
# Type: Date/Time Stats: 119 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: is_draft
external_name: is_draft
# Type: Boolean Stats: 119 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: size
external_name: size
# Type: Integer Stats: 119 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: updated_on
external_name: updated_on
# Type: Date/Time Stats: 119 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- kind: StudentAnswersEntity
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: data
external_name: data
# Type: Text Stats: 7 properties of this type in this kind.
import_transform: db.Text
- property: updated_on
external_name: updated_on
# Type: Date/Time Stats: 7 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- kind: StudentPropertyEntity
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: name
external_name: name
# Type: String Stats: 17 properties of this type in this kind.
- property: updated_on
external_name: updated_on
# Type: Date/Time Stats: 8 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: value
external_name: value
# Type: Text Stats: 8 properties of this type in this kind.
import_transform: db.Text
- kind: Student
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: additional_fields
external_name: additional_fields
# Type: Text Stats: 8 properties of this type in this kind.
import_transform: db.Text
- property: enrolled_on
external_name: enrolled_on
# Type: Date/Time Stats: 16 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: is_enrolled
external_name: is_enrolled
# Type: Boolean Stats: 16 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: name
external_name: name
# Type: String Stats: 16 properties of this type in this kind.
- property: scores
external_name: scores
# Type: Text Stats: 6 properties of this type in this kind.
import_transform: db.Text
- property: user_id
external_name: user_id
# Type: String Stats: 16 properties of this type in this kind.
- kind: Submission
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: contents
external_name: contents
# Type: Text Stats: 6 properties of this type in this kind.
import_transform: db.Text
- property: reviewee_key
external_name: reviewee_key
# Type: Key Stats: 6 properties of this type in this kind.
import_transform: transform.create_foreign_key('TODO: fill in Kind name')
export_transform: transform.key_id_or_name_as_string
- property: unit_id
external_name: unit_id
# Type: String Stats: 6 properties of this type in this kind.
- kind: _AE_Backup_Information_Kind_Files
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: files
external_name: files
# Type: String Stats: 233 properties of this type in this kind.
- kind: _AE_Backup_Information_Kind_Type_Info
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: entity_type_info
external_name: entity_type_info
# Type: Text Stats: 233 properties of this type in this kind.
import_transform: db.Text
- property: is_partial
external_name: is_partial
# Type: Boolean Stats: 233 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- kind: _AE_Backup_Information
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: complete_time
external_name: complete_time
# Type: Date/Time Stats: 8 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: completed_jobs
external_name: completed_jobs
# Type: String Stats: 78 properties of this type in this kind.
- property: filesystem
external_name: filesystem
# Type: String Stats: 8 properties of this type in this kind.
- property: kinds
external_name: kinds
# Type: String Stats: 78 properties of this type in this kind.
- property: name
external_name: name
# Type: String Stats: 8 properties of this type in this kind.
- property: start_time
external_name: start_time
# Type: Date/Time Stats: 8 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- kind: _AE_DatastoreAdmin_Operation
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: active_job_ids
external_name: active_job_ids
# Type: String Stats: 30 properties of this type in this kind.
- property: active_jobs
external_name: active_jobs
# Type: Integer Stats: 15 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: completed_jobs
external_name: completed_jobs
# Type: Integer Stats: 15 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: description
external_name: description
# Type: Text Stats: 15 properties of this type in this kind.
import_transform: db.Text
- property: last_updated
external_name: last_updated
# Type: Date/Time Stats: 15 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: status
external_name: status
# Type: String Stats: 15 properties of this type in this kind.
- property: status_info
external_name: status_info
# Type: String Stats: 15 properties of this type in this kind.
- kind: _GAE_MR_MapreduceState
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: aborted_shards
external_name: aborted_shards
# Type: Integer Stats: 30 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: active
external_name: active
# Type: Boolean Stats: 30 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: active_shards
external_name: active_shards
# Type: Integer Stats: 30 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: chart_url
external_name: chart_url
# Type: Text Stats: 30 properties of this type in this kind.
import_transform: db.Text
- property: chart_width
external_name: chart_width
# Type: Integer Stats: 30 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: counters_map
external_name: counters_map
# Type: Text Stats: 30 properties of this type in this kind.
import_transform: db.Text
- property: failed_shards
external_name: failed_shards
# Type: Integer Stats: 30 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: last_poll_time
external_name: last_poll_time
# Type: Date/Time Stats: 30 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: mapreduce_spec
external_name: mapreduce_spec
# Type: Text Stats: 30 properties of this type in this kind.
import_transform: db.Text
- property: sparkline_url
external_name: sparkline_url
# Type: Text Stats: 30 properties of this type in this kind.
import_transform: db.Text
- property: start_time
external_name: start_time
# Type: Date/Time Stats: 30 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- kind: _GAE_MR_ShardState
connector: # TODO: Choose a connector here: csv, simplexml, etc...
connector_options:
# TODO: Add connector options here--these are specific to each connector.
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: active
external_name: active
# Type: Boolean Stats: 312 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: counters_map
external_name: counters_map
# Type: Text Stats: 312 properties of this type in this kind.
import_transform: db.Text
- property: last_work_item
external_name: last_work_item
# Type: Text Stats: 312 properties of this type in this kind.
import_transform: db.Text
- property: mapreduce_id
external_name: mapreduce_id
# Type: String Stats: 312 properties of this type in this kind.
- property: retries
external_name: retries
# Type: Integer Stats: 312 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: shard_description
external_name: shard_description
# Type: Text Stats: 312 properties of this type in this kind.
import_transform: db.Text
- property: slice_id
external_name: slice_id
# Type: Integer Stats: 312 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: slice_retries
external_name: slice_retries
# Type: Integer Stats: 312 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: update_time
external_name: update_time
# Type: Date/Time Stats: 312 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')