Extra Input Settings
TODO CODE
public static class CustomAdvancedInput { public List<String> groupOverrideList; // (OPTIONAL - else defaults to current community) A list of community _ids that determine, together with the source's community _id, the sharing settings for the job public String groupOverrideRegex; // (OPTIONAL - else defaults to current community), if starts with "*" then a regex applied across group titles to determine which groups share the job public Integer debugLimit; // (OPTIONAL) debug parameter that restricts the number of documents to either debugLimit, or the number of splits times debugLimit, depending on the input format public Integer numSplitsOverride; // (OPTIONAL) mostly a debug parameter for datastore queries, which forces the use of skip/limit (works well for small numbers of documents) instead of shard-based splitting public Integer docsPerSplitOverride; // (OPTIONAL) mostly a debug parameter for datastore queries, which forces the use of skip/limit (works well for small numbers of documents) instead of shard-based splitting }