Skip to content

Commit

Permalink
Merge dev into main
Browse files Browse the repository at this point in the history
Signed-off-by: spark-rapids automation <[email protected]>
  • Loading branch information
nvauto committed Jul 28, 2023
2 parents 86c44a3 + 8e43055 commit 7d96f24
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ package com.nvidia.spark.rapids.tool.profiling
import org.rogach.scallop.{ScallopConf, ScallopOption}
import org.rogach.scallop.exceptions.ScallopException

import org.apache.spark.internal.Logging
import org.apache.spark.sql.rapids.tool.AppFilterImpl

class ProfileArgs(arguments: Seq[String]) extends ScallopConf(arguments) {
class ProfileArgs(arguments: Seq[String]) extends ScallopConf(arguments) with Logging {

banner("""
Profiling Tool for the RAPIDS Accelerator and Apache Spark
Expand Down Expand Up @@ -122,6 +123,26 @@ Usage: java -cp rapids-4-spark-tools_2.12-<version>.jar:$SPARK_HOME/jars/*
"are min(minute),h(hours),d(days),w(weeks),m(months).")
}

/**
* Assumption: Event-log files do not begin with a '-'.
*
* Inform the user that all options after the event-logs will be ignored.
* Eg, Arguments: '--output-directory result_dir /path-to-log --timeout 50 --num-threads 100'
* Result: Option '--timeout 50 --num-threads 100' will be ignored.
*/
validate(eventlog) { log =>
// `log/eventlog` is a trailing argument.
// Drop all elements in it until the first occurrence of '-'.
val ignoredOptions = log.dropWhile(s => !s.startsWith("-"))
// If any elements exist in the `ignored` list, these are additional options that
// will be skipped by EventLogPathProcessor
if (ignoredOptions.nonEmpty) {
logWarning(s"Options provided after event logs will be ignored: " +
s"${ignoredOptions.mkString(" ")}")
}
Right(Unit)
}

verify()

override def onError(e: Throwable) = e match {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ package com.nvidia.spark.rapids.tool.qualification
import org.rogach.scallop.{ScallopConf, ScallopOption}
import org.rogach.scallop.exceptions.ScallopException

import org.apache.spark.internal.Logging
import org.apache.spark.sql.rapids.tool.AppFilterImpl

class QualificationArgs(arguments: Seq[String]) extends ScallopConf(arguments) {
class QualificationArgs(arguments: Seq[String]) extends ScallopConf(arguments) with Logging {

banner("""
RAPIDS Accelerator for Apache Spark qualification tool
Expand Down Expand Up @@ -176,6 +177,26 @@ Usage: java -cp rapids-4-spark-tools_2.12-<version>.jar:$SPARK_HOME/jars/*
"are min(minute),h(hours),d(days),w(weeks),m(months).")
}

/**
* Assumption: Event-log files do not begin with a '-'.
*
* Inform the user that all options after the event-logs will be ignored.
* Eg, Arguments: '--output-directory result_dir /path-to-log --timeout 50 --num-threads 100'
* Result: Option '--timeout 50 --num-threads 100' will be ignored.
*/
validate(eventlog) { log =>
// `log/eventlog` is a trailing argument.
// Drop all elements in it until the first occurrence of '-'.
val ignoredOptions = log.dropWhile(s => !s.startsWith("-"))
// If any elements exist in the `ignored` list, these are additional options that
// will be skipped by EventLogPathProcessor
if (ignoredOptions.nonEmpty) {
logWarning(s"Options provided after event logs will be ignored: " +
s"${ignoredOptions.mkString(" ")}")
}
Right(Unit)
}

verify()

override def onError(e: Throwable) = e match {
Expand Down

0 comments on commit 7d96f24

Please sign in to comment.