File tree Expand file tree Collapse file tree 4 files changed +32
-0
lines changed
proc/centrality/src/main/java/org/neo4j/gds/influenceMaximization Expand file tree Collapse file tree 4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,10 @@ public Stream<MutateResult> betaMutate(
7575 @ Name (value = "graphName" ) String graphName ,
7676 @ Name (value = "configuration" , defaultValue = "{}" ) Map <String , Object > configuration
7777 ) {
78+ executionContext ()
79+ .metricsFacade ()
80+ .deprecatedProcedures ().called ("gds.beta.influenceMaximization.celf.mutate" );
81+
7882 executionContext ()
7983 .log ()
8084 .warn (
@@ -94,6 +98,10 @@ public Stream<MemoryEstimateResult> betaEstimate(
9498 @ Name (value = "graphNameOrConfiguration" ) Object graphNameOrConfiguration ,
9599 @ Name (value = "algoConfiguration" ) Map <String , Object > algoConfiguration
96100 ) {
101+ executionContext ()
102+ .metricsFacade ()
103+ .deprecatedProcedures ().called ("gds.beta.influenceMaximization.celf.mutate.estimate" );
104+
97105 executionContext ()
98106 .log ()
99107 .warn (
Original file line number Diff line number Diff line change @@ -74,6 +74,10 @@ public Stream<StatsResult> betaStats(
7474 @ Name (value = "graphName" ) String graphName ,
7575 @ Name (value = "configuration" , defaultValue = "{}" ) Map <String , Object > configuration
7676 ) {
77+ executionContext ()
78+ .metricsFacade ()
79+ .deprecatedProcedures ().called ("gds.beta.influenceMaximization.celf.stats" );
80+
7781 executionContext ()
7882 .log ()
7983 .warn (
@@ -93,6 +97,10 @@ public Stream<MemoryEstimateResult> betaEstimate(
9397 @ Name (value = "graphNameOrConfiguration" ) Object graphNameOrConfiguration ,
9498 @ Name (value = "algoConfiguration" ) Map <String , Object > algoConfiguration
9599 ) {
100+ executionContext ()
101+ .metricsFacade ()
102+ .deprecatedProcedures ().called ("gds.beta.influenceMaximization.celf.stats.estimate" );
103+
96104 executionContext ()
97105 .log ()
98106 .warn (
Original file line number Diff line number Diff line change @@ -76,6 +76,10 @@ public Stream<StreamResult> betaStream(
7676 @ Name (value = "graphName" ) String graphName ,
7777 @ Name (value = "configuration" , defaultValue = "{}" ) Map <String , Object > configuration
7878 ) {
79+ executionContext ()
80+ .metricsFacade ()
81+ .deprecatedProcedures ().called ("gds.beta.influenceMaximization.celf.stream" );
82+
7983 executionContext ()
8084 .log ()
8185 .warn (
@@ -95,6 +99,10 @@ public Stream<MemoryEstimateResult> betaEstimate(
9599 @ Name (value = "graphName" ) Object graphName ,
96100 @ Name (value = "configuration" , defaultValue = "{}" ) Map <String , Object > configuration
97101 ) {
102+ executionContext ()
103+ .metricsFacade ()
104+ .deprecatedProcedures ().called ("gds.beta.influenceMaximization.celf.stream.estimate" );
105+
98106 executionContext ()
99107 .log ()
100108 .warn (
Original file line number Diff line number Diff line change @@ -82,6 +82,10 @@ public Stream<WriteResult> betaWrite(
8282 @ Name (value = "graphName" ) String graphName ,
8383 @ Name (value = "configuration" , defaultValue = "{}" ) Map <String , Object > configuration
8484 ) {
85+ executionContext ()
86+ .metricsFacade ()
87+ .deprecatedProcedures ().called ("gds.beta.influenceMaximization.celf.write" );
88+
8589 executionContext ()
8690 .log ()
8791 .warn (
@@ -101,6 +105,10 @@ public Stream<MemoryEstimateResult> betaEstimate(
101105 @ Name (value = "graphNameOrConfiguration" ) Object graphNameOrConfiguration ,
102106 @ Name (value = "algoConfiguration" ) Map <String , Object > algoConfiguration
103107 ) {
108+ executionContext ()
109+ .metricsFacade ()
110+ .deprecatedProcedures ().called ("gds.beta.influenceMaximization.celf.write.estimate" );
111+
104112 executionContext ()
105113 .log ()
106114 .warn (
You can’t perform that action at this time.
0 commit comments