-
Notifications
You must be signed in to change notification settings - Fork 299
Conversation
- Add --tag-volumes option - Apply --additional-tags to any EBS volumes that are attached to any master or slave instances.
Thanks @aaronj1331 - I was wondering if there was any harm in always applying the tags without the new flag, but I guess some users might be relying on the old behavior. Code LGTM. I'll try out this snippet and then merge |
Yeah, you're right, @shivaram. This way allows users to rely on old behavior, if necessary. But the other way you mentioned would at least be more consistent with current behavior, and would eliminate the need for another flag.
I don't have a firm opinion as to which way is better. |
Yeah i think its fine to have an additional option just to avoid any regressions. I tried out the code locally and it seems to work fine. Merging this |
Spark-ec2 used to be part of the spark distribution. It now seems to be It does not seem to be listed on https://spark-packages.org/ Does anyone know what the status is? There is a readme.md how ever I am Does it support spark-2.x? Is there anything in particular I need to be aware of If I want to upgrade a What little I know about upgrading is based on [ec2-user ~]$ ls /root ephemeral-hdfs hadoop-native mapreduce persistent-hdfs scala spark My naïve guess at how to upgrade would be to 1 back up my copy of /root/spark/conf/spark-env.sh (I use java8, and python3, and changed logging config) 2 /root/spark/conf/log4j.properties 3 extract spark-2.0 to /root/spark and leave everything else alone? 4 copy my version of spark-env.sh and log4j.properties Kind regards Andy
|
@AEDWIP There is no separate user mailing list. You can just email the Spark user / dev mailing or open a new issue on this repo if you have a feature request. Regarding upgrading a cluster, there is no officially supported way to do this -- and this was the case before 2.0 as well. This is not tested but in addition to what you have I would just suggest backing up all the config files from /root/spark/conf . Also you'll need to do these steps on all the machines in the cluster. |
Thanks Andy From: Shivaram Venkataraman notifications@github.com
|
My company requires me to track ALL of my EC2 usage. That includes EBS volumes.
However, --additional-tags does NOT apply tags to EBS volumes that are attached to instances.
This patch does the following:
The contribution is my original work and that I license the work to the project under the project's open source license.