Interface PregelConfig

  • All Superinterfaces:
    org.neo4j.gds.config.AlgoBaseConfig, org.neo4j.gds.config.BaseConfig, org.neo4j.gds.config.ConcurrencyConfig, org.neo4j.gds.config.IterationsConfig, org.neo4j.gds.config.RelationshipWeightConfig, org.neo4j.gds.config.ToMapConvertible
    All Known Subinterfaces:
    PregelProcedureConfig

    @Configuration
    public interface PregelConfig
    extends org.neo4j.gds.config.AlgoBaseConfig, org.neo4j.gds.config.RelationshipWeightConfig, org.neo4j.gds.config.IterationsConfig, org.neo4j.gds.config.ConcurrencyConfig
    • Field Summary

      • Fields inherited from interface org.neo4j.gds.config.AlgoBaseConfig

        NODE_LABELS_KEY, RELATIONSHIP_TYPES_KEY
      • Fields inherited from interface org.neo4j.gds.config.BaseConfig

        SUDO_KEY
      • Fields inherited from interface org.neo4j.gds.config.ConcurrencyConfig

        CONCURRENCY_KEY, CONCURRENCY_LIMITATION, DEFAULT_CONCURRENCY
      • Fields inherited from interface org.neo4j.gds.config.RelationshipWeightConfig

        RELATIONSHIP_WEIGHT_PROPERTY
    • Method Summary

      All Methods Static Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default boolean isAsynchronous()  
      static PregelConfig of​(org.neo4j.gds.core.CypherMapWrapper userInput)  
      default Partitioning partitioning()  
      default boolean useForkJoin()  
      • Methods inherited from interface org.neo4j.gds.config.AlgoBaseConfig

        graphStoreValidation, internalRelationshipTypes, nodeLabelIdentifiers, nodeLabels, relationshipTypes
      • Methods inherited from interface org.neo4j.gds.config.BaseConfig

        configKeys, sudo, toMap, usernameOverride
      • Methods inherited from interface org.neo4j.gds.config.ConcurrencyConfig

        concurrency, minBatchSize, validateConcurrency
      • Methods inherited from interface org.neo4j.gds.config.IterationsConfig

        maxIterations
      • Methods inherited from interface org.neo4j.gds.config.RelationshipWeightConfig

        hasRelationshipWeightProperty, relationshipWeightProperty, relationshipWeightValidation
    • Method Detail

      • isAsynchronous

        @Default
        default boolean isAsynchronous()
      • partitioning

        @Default
        @ConvertWith("org.neo4j.gds.beta.pregel.Partitioning#parse")
        @ToMapValue("org.neo4j.gds.beta.pregel.Partitioning#toString")
        default Partitioning partitioning()
      • useForkJoin

        @Derived
        @Ignore
        default boolean useForkJoin()
      • of

        static PregelConfig of​(org.neo4j.gds.core.CypherMapWrapper userInput)