-
Notifications
You must be signed in to change notification settings - Fork 167
ED-2069: Add OCI oss support superseed PR 1617,1615,1608,1602 #1620
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
12de5e6
ea2c778
852a610
3ee3b85
3ee652e
4ffea4d
8a70a47
69f2e83
4ce637d
2733374
2e4cf61
2bbab17
d0d1b1d
cc11113
2e11eaf
054d9db
b1de737
07d4e5e
17de1fa
9ba6497
5fa0e00
329e820
86b024d
51894db
cbb93c1
47ccff0
d3b24a9
3c79310
5e4749e
b7daec6
4dbefc9
7b7854d
8fd5084
6a4f551
ea1e665
b80f4d0
e46a818
0ec7478
61c4c17
b9ddecd
e83136b
5ced039
426036f
3ffd0e4
9a8e39f
6d0fb19
4f6a9b0
7c24828
d149abc
3b55ac1
ac6d377
60a50c3
033b160
2a5050f
58dec82
f53d043
898177c
8a64d3e
f451d45
0a4380a
06a5bad
bb5fa35
0394d1b
bf7d6b6
746aada
21f1a85
673d2f1
214ee74
f808208
7eff73f
6910f88
24ab958
458acc4
14f2a40
24920cc
4bddaab
f546aea
6813a3b
3970257
e743f81
0cd35ac
5515f77
b21d7d2
419f9f4
ddadf4c
84b1b85
f779811
230b286
04bf9d4
6604a0b
366ad61
8e1f04a
00eef69
6c76fbf
cc12811
ce11e92
21b8166
15832a5
20ca43d
e278a68
5ebf329
d584d8f
4c152bd
6ae6963
47946eb
341ef4f
11d111c
dfde179
4a4de7e
640ff44
36d96d5
2fa3df1
444108d
d53cdbd
de04dd9
3be2530
4325d72
3df3cbc
70fc149
afec78c
9367598
7f717db
71531b4
f63f5b9
eb653b2
8ffb87f
46f5d8a
729f6fa
7cb0be4
988b7bb
b84e7ea
054e5c4
37ed411
021c239
e823083
21c1327
223af2d
1d19f60
8f99438
4399d57
fe2d983
a0c9134
5c70881
057b7d7
fe245ea
0166b61
c4ca689
678b01d
d595656
26838b5
1f144b7
5a379ba
4f9883f
64a720e
039499c
896410c
9418fb9
8458fa9
e16a826
6091d89
8594c4b
659d56a
6a58691
7bc050f
8776207
0f302d7
a33d716
d473b14
2a22b19
81de8ec
2e6a5aa
907dc00
150cd65
c62af7b
7e5427b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
- hosts: local | ||
become: yes | ||
vars_files: | ||
- "{{inventory_dir}}/secrets.yml" | ||
roles: | ||
- oci-bds-spark-cluster | ||
tags: | ||
- copy-script | ||
|
||
- hosts: bds-livy-node | ||
become: yes | ||
gather_facts: no | ||
vars_files: | ||
- "{{inventory_dir}}/secrets.yml" | ||
roles: | ||
- provision-oci-spark-cluster | ||
tags: | ||
- spark-provision |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
dependencies: | ||
- { role: jdk11 , become: yes } | ||
- { role: azure-cli , become: yes } | ||
- { role: azure-cli , become: yes, when: cloud_service_provider == "azure" } | ||
- { role: oci-cli , become: yes, when: cloud_service_provider == "oci" } | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ analytics: | |
soft_path: /mount/data/analytics | ||
base_path: /home/analytics | ||
scala_version: 2.12.10 | ||
spark_version: 3.1.3 | ||
spark_version: 3.2.1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ddevadat - We have tried executing the provision script in our dev environment however, we have encountered some exceptions and couldn't provision the spark to the latest version. @santhosh-tg / @tsprasath - Could you please retry running the spark provision script in the dev environment and share the error information here if possible? cc: @anandp504 @maheshkumargangula @gandham-santhosh @sowmya-dixit There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Could you please share the exception that you got. One thing that i noted was that at the task: "Download Kafka-2.11" .. the url is hardcoded and not working any more http://downloads.mesosphere.com/kafka/assets/kafka_2.11-0.10.1.0.tgz if you could share the exception , we can triage it further |
||
model_version: "2.0" | ||
spark: | ||
home: "{{ analytics.home }}/spark-{{ spark_version }}-bin-hadoop2.7" | ||
|
Uh oh!
There was an error while loading. Please reload this page.