Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[xa1QAhHL] Update documentation to warn about unpredictable procedures in clusters #3191

Merged
merged 1 commit into from
Oct 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ apoc.custom.declareFunction(signature, statement, forceSingle, description) - re
apoc.custom.declareFunction(signature :: STRING?, statement :: STRING?, forceSingle = false :: BOOLEAN?, description = :: STRING?) :: VOID
----

[WARNING]
====
This procedure is not intended to be used in a cluster environment, and may act unpredictably.
====

== Input parameters
[.procedures, opts=header]
|===
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ apoc.custom.declareProcedure(signature, statement, mode, description) - register
apoc.custom.declareProcedure(signature :: STRING?, statement :: STRING?, mode = read :: STRING?, description = :: STRING?) :: VOID
----

[WARNING]
====
This procedure is not intended to be used in a cluster environment, and may act unpredictably.
====

== Input parameters
[.procedures, opts=header]
|===
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ apoc.custom.removeFunction(name, type) - remove the targeted custom function
apoc.custom.removeFunction(name :: STRING?) :: VOID
----

[WARNING]
====
This procedure is not intended to be used in a cluster environment, and may act unpredictably.
====

== Input parameters
[.procedures, opts=header]
|===
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ apoc.custom.removeProcedure(name) - remove the targeted custom procedure
apoc.custom.removeProcedure(name :: STRING?) :: VOID
----

[WARNING]
====
This procedure is not intended to be used in a cluster environment, and may act unpredictably.
====

== Input parameters
[.procedures, opts=header]
|===
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ Add a virtualized resource configuration
apoc.dv.catalog.add(name :: STRING?, config = {} :: MAP?) :: (name :: STRING?, type :: STRING?, url :: STRING?, desc :: STRING?, labels :: LIST? OF STRING?, query :: STRING?, params :: LIST? OF STRING?)
----

[WARNING]
====
This procedure is not intended to be used in a cluster environment, and may act unpredictably.
====

== Input parameters
[.procedures, opts=header]
|===
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ Remove a virtualized resource config by name
apoc.dv.catalog.remove(name :: STRING?) :: (name :: STRING?, type :: STRING?, url :: STRING?, desc :: STRING?, labels :: LIST? OF STRING?, query :: STRING?, params :: LIST? OF STRING?)
----

[WARNING]
====
This procedure is not intended to be used in a cluster environment, and may act unpredictably.
====

== Input parameters
[.procedures, opts=header]
|===
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ for the provided `label` and `uuidProperty`, in case the UUID handler is already
apoc.uuid.install(label :: STRING?, config = {} :: MAP?) :: (batchComputationResult :: MAP?, label :: STRING?, installed :: BOOLEAN?, properties :: MAP?)
----

[WARNING]
====
This procedure is not intended to be used in a cluster environment, and may act unpredictably.
====

== Input parameters
[.procedures, opts=header]
|===
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ CALL apoc.uuid.remove(label) yield label, installed, properties | remove previou
apoc.uuid.remove(label :: STRING?) :: (label :: STRING?, installed :: BOOLEAN?, properties :: MAP?)
----

[WARNING]
====
This procedure is not intended to be used in a cluster environment, and may act unpredictably.
====

== Input parameters
[.procedures, opts=header]
|===
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ CALL apoc.uuid.removeAll() yield label, installed, properties | it removes all p
apoc.uuid.removeAll() :: (label :: STRING?, installed :: BOOLEAN?, properties :: MAP?)
----

[WARNING]
====
This procedure is not intended to be used in a cluster environment, and may act unpredictably.
====

== Output parameters
[.procedures, opts=header]
|===
Expand Down