Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

dvc.yaml 1.7 KB

You have to be logged in to leave a comment. Sign In
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
  1. # This file uses the two-stage status design, so new command stages
  2. # need to be accompanied by an entry in the status stage at the end
  3. stages:
  4. init-status:
  5. cmd: python ../run.py stage-status -o init.status init
  6. always_changed: true
  7. outs:
  8. - init.status
  9. common-schema:
  10. cmd: python ../run.py sql-script common-schema.sql
  11. deps:
  12. - common-schema.sql
  13. - init.status
  14. outs:
  15. - common-schema.transcript
  16. az-schema:
  17. cmd: python ../run.py sql-script az-schema.sql
  18. deps:
  19. - az-schema.sql
  20. - common-schema.status
  21. outs:
  22. - az-schema.transcript
  23. bx-schema:
  24. cmd: python ../run.py sql-script bx-schema.sql
  25. deps:
  26. - bx-schema.sql
  27. - common-schema.status
  28. outs:
  29. - bx-schema.transcript
  30. gr-schema:
  31. cmd: python ../run.py sql-script gr-schema.sql
  32. deps:
  33. - gr-schema.sql
  34. - common-schema.status
  35. outs:
  36. - gr-schema.transcript
  37. loc-mds-schema:
  38. cmd: python ../run.py sql-script loc-mds-schema.sql
  39. deps:
  40. - loc-mds-schema.sql
  41. - common-schema.status
  42. outs:
  43. - loc-mds-schema.transcript
  44. ol-schema:
  45. cmd: python ../run.py sql-script ol-schema.sql
  46. deps:
  47. - ol-schema.sql
  48. - common-schema.status
  49. outs:
  50. - ol-schema.transcript
  51. viaf-schema:
  52. cmd: python ../run.py sql-script viaf-schema.sql
  53. deps:
  54. - viaf-schema.sql
  55. - common-schema.status
  56. outs:
  57. - viaf-schema.transcript
  58. status:
  59. foreach:
  60. - common-schema
  61. - az-schema
  62. - ol-schema
  63. - bx-schema
  64. - gr-schema
  65. - loc-mds-schema
  66. - ol-schema
  67. - viaf-schema
  68. do:
  69. cmd: python ../run.py stage-status -o ${item}.status ${item}
  70. always_changed: true
  71. outs:
  72. - ${item}.status
  73. deps:
  74. - ${item}.transcript
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...