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

Revert 288 docs to old theme #269

Merged
merged 1 commit into from
Jul 15, 2024
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 4 additions & 0 deletions website/static/docs/0.288/_sources/functions/array.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ Array Functions
.. function:: array_has_duplicates(array(T)) -> boolean

Returns a boolean: whether ``array`` has any elements that occur more than once.
Throws an exception if any of the elements are rows or arrays that contain nulls. ::

SELECT array_has_duplicates(ARRAY[1, 2, null, 1, null, 3]) -- true
SELECT array_has_duplicates(ARRAY[ROW(1, null), ROW(1, null)]) -- "map key cannot be null or contain nulls"

.. function:: array_intersect(x, y) -> array

Expand Down
117 changes: 57 additions & 60 deletions website/static/docs/0.288/_sources/rest/node.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,36 +54,37 @@ Node Resource
**Example response with Errors**:

.. sourcecode:: http

HTTP/1.1 200 OK
Vary: Accept
Content-Type: text/javascript

[
{
"age": "4.45m",
"lastFailureInfo": {
"message": "Connect Timeout",
"stack": [
"org.eclipse.jetty.io.ManagedSelector$ConnectTimeout.run(ManagedSelector.java:683)",
....
"java.lang.Thread.run(Thread.java:745)"
],
"suppressed": [],
"type": "java.net.SocketTimeoutException"
},
"lastRequestTime": "2017-08-05T11:53:00.647Z",
"lastResponseTime": "2017-08-05T11:53:00.647Z",
"recentFailureRatio": 0.47263053472046446,
"recentFailures": 2.8445543205610617,
"recentFailuresByType": {
"java.net.SocketTimeoutException": 2.8445543205610617
},
"recentRequests": 6.018558073577414,
"recentSuccesses": 3.1746446343010297,
"uri": "http://172.19.0.3:8080"
}
]


HTTP/1.1 200 OK
Vary: Accept
Content-Type: text/javascript

[
{
"age": "4.45m",
"lastFailureInfo": {
"message": "Connect Timeout",
"stack": [
"org.eclipse.jetty.io.ManagedSelector$ConnectTimeout.run(ManagedSelector.java:683)",
....
"java.lang.Thread.run(Thread.java:745)"
],
"suppressed": [],
"type": "java.net.SocketTimeoutException"
},
"lastRequestTime": "2017-08-05T11:53:00.647Z",
"lastResponseTime": "2017-08-05T11:53:00.647Z",
"recentFailureRatio": 0.47263053472046446,
"recentFailures": 2.8445543205610617,
"recentFailuresByType": {
"java.net.SocketTimeoutException": 2.8445543205610617
},
"recentRequests": 6.018558073577414,
"recentSuccesses": 3.1746446343010297,
"uri": "http://172.19.0.3:8080"
}
]

.. function:: GET /v1/node/failed

Expand All @@ -96,33 +97,29 @@ Node Resource

.. sourcecode:: http

HTTP/1.1 200 OK
Vary: Accept
Content-Type: text/javascript

[
{
"age": "1.37m",
"lastFailureInfo": {
"message": "Connect Timeout",
"stack": [
"org.eclipse.jetty.io.ManagedSelector$ConnectTimeout.run(ManagedSelector.java:683)",
.....
"java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)",
"java.lang.Thread.run(Thread.java:745)"
],
"suppressed": [],
"type": "java.net.SocketTimeoutException"
},
"lastRequestTime": "2017-08-05T11:52:42.647Z",
"lastResponseTime": "2017-08-05T11:52:42.647Z",
"recentFailureRatio": 0.22498784153043677,
"recentFailures": 20.11558290058638,
"recentFailuresByType": {
"java.net.SocketTimeoutException": 20.11558290058638
},
"recentRequests": 89.40742203558189,
"recentSuccesses": 69.30583024727453,
"uri": "http://172.19.0.3:8080"
}
]
[
{
"age": "1.37m",
"lastFailureInfo": {
"message": "Connect Timeout",
"stack": [
"org.eclipse.jetty.io.ManagedSelector$ConnectTimeout.run(ManagedSelector.java:683)",
.....
"java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)",
"java.lang.Thread.run(Thread.java:745)"
],
"suppressed": [],
"type": "java.net.SocketTimeoutException"
},
"lastRequestTime": "2017-08-05T11:52:42.647Z",
"lastResponseTime": "2017-08-05T11:52:42.647Z",
"recentFailureRatio": 0.22498784153043677,
"recentFailures": 20.11558290058638,
"recentFailuresByType": {
"java.net.SocketTimeoutException": 20.11558290058638
},
"recentRequests": 89.40742203558189,
"recentSuccesses": 69.30583024727453,
"uri": "http://172.19.0.3:8080"
}
]
Loading
Loading