You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fmt.Printf("Failed to profile %s: %s\n", curDataSet, err)
62
68
} else {
@@ -76,11 +82,12 @@ and helps in making better decisions about data processing and analysis.
76
82
},
77
83
}
78
84
79
-
cmd.Flags().StringVarP(&dataSource, "datasource", "d", "", "Datasource in which datasets will be profiled")
85
+
cmd.Flags().StringVarP(&dataSource, "datasource", "d", "", "datasource in which datasets will be profiled")
80
86
_=cmd.MarkFlagRequired("datasource")
81
87
82
-
cmd.Flags().StringVarP(&dataSet, "dataset", "s", "", "Dataset within specified data source")
83
-
cmd.Flags().BoolVarP(&sample, "sample", "m", false, "Include data samples in profiling report")
88
+
cmd.Flags().StringVarP(&dataSet, "dataset", "s", "", "dataset within specified data source")
89
+
cmd.Flags().BoolVarP(&sample, "sample", "m", false, "include data samples in profiling report")
90
+
cmd.Flags().IntVarP(&maxConcurrent, "jobs", "j", runtime.NumCPU(), "set the maximum number of jobs to execute against the datasource during profiling. By default, this is equal to the number of CPUs on the host machine.")
0 commit comments