Constant Field Values

Contents

com.netflix.*

  • com.netflix.genie.agent.execution.CleanupStrategy
    Modifier and Type
    Constant Field
    Value
    public static final String
    "JOB DIRECTORY CLEANUP:\nThe default cleanup behavior is to delete downloaded dependencies after job execution completed\n(whether or not it was successful). A different strategy (no cleanup, full cleanup, ...) can be\nselected via command-line flags"
  • com.netflix.genie.agent.properties.AgentProperties
    Modifier and Type
    Constant Field
    Value
    public static final String
    "genie.agent.runtime"
  • com.netflix.genie.web.data.services.impl.jpa.repositories.JpaApplicationRepository
    Modifier and Type
    Constant Field
    Value
    public static final String
    "SELECT id FROM applications WHERE created < :createdThreshold AND id NOT IN (SELECT DISTINCT(application_id) FROM commands_applications) AND id NOT IN (SELECT DISTINCT(application_id) FROM jobs_applications) LIMIT :limit"
  • com.netflix.genie.web.data.services.impl.jpa.repositories.JpaClusterRepository
    Modifier and Type
    Constant Field
    Value
    public static final String
    "SELECT id FROM clusters WHERE status IN (:unusedStatuses) AND created < :clusterCreatedThreshold AND id NOT IN (SELECT DISTINCT(cluster_id) FROM jobs WHERE cluster_id IS NOT NULL) LIMIT :limit"
  • com.netflix.genie.web.data.services.impl.jpa.repositories.JpaCommandRepository
    Modifier and Type
    Constant Field
    Value
    public static final String
    "SELECT id FROM commands WHERE status IN (:statuses) AND created < :commandCreatedThreshold AND id NOT IN (SELECT DISTINCT(command_id) FROM jobs WHERE command_id IS NOT NULL) LIMIT :limit"
  • com.netflix.genie.web.data.services.impl.jpa.repositories.JpaFileRepository
    Modifier and Type
    Constant Field
    Value
    public static final String
    "SELECT id FROM files WHERE id NOT IN (SELECT DISTINCT(setup_file) FROM applications WHERE setup_file IS NOT NULL) AND id NOT IN (SELECT DISTINCT(file_id) FROM applications_configs) AND id NOT IN (SELECT DISTINCT(file_id) FROM applications_dependencies) AND id NOT IN (SELECT DISTINCT(setup_file) FROM clusters WHERE setup_file IS NOT NULL) AND id NOT IN (SELECT DISTINCT(file_id) FROM clusters_configs) AND id NOT IN (SELECT DISTINCT(file_id) FROM clusters_dependencies) AND id NOT IN (SELECT DISTINCT(setup_file) FROM commands WHERE setup_file IS NOT NULL) AND id NOT IN (SELECT DISTINCT(file_id) FROM commands_configs) AND id NOT IN (SELECT DISTINCT(file_id) FROM commands_dependencies) AND id NOT IN (SELECT DISTINCT(setup_file) FROM jobs WHERE setup_file IS NOT NULL) AND id NOT IN (SELECT DISTINCT(file_id) FROM jobs_configs) AND id NOT IN (SELECT DISTINCT(file_id) FROM jobs_dependencies) AND created <= :createdThresholdUpperBound AND created >= :createdThresholdLowerBound LIMIT :limit FOR UPDATE;"
  • com.netflix.genie.web.data.services.impl.jpa.repositories.JpaJobRepository
    Modifier and Type
    Constant Field
    Value
    public static final String
    "SELECT id FROM jobs WHERE created < :createdThreshold AND status NOT IN (:excludedStatuses) LIMIT :batchSize"
  • com.netflix.genie.web.data.services.impl.jpa.repositories.JpaTagRepository
    Modifier and Type
    Constant Field
    Value
    public static final String
    "SELECT id FROM tags WHERE id NOT IN (SELECT DISTINCT(tag_id) FROM applications_tags) AND id NOT IN (SELECT DISTINCT(tag_id) FROM clusters_tags) AND id NOT IN (SELECT DISTINCT(tag_id) FROM commands_tags) AND id NOT IN (SELECT DISTINCT(tag_id) FROM criteria_tags) AND id NOT IN (SELECT DISTINCT(tag_id) FROM jobs_tags) AND created <= :createdThresholdUpperBound AND created >= :createdThresholdLowerBound LIMIT :limit FOR UPDATE;"