Redirects for the plugins
This commit is contained in:
parent
fc998e3956
commit
ce0ebe1948
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Asynchronous search
|
||||
nav_order: 51
|
||||
has_children: true
|
||||
redirect_from: /docs/async/
|
||||
---
|
||||
|
||||
# Asynchronous search
|
||||
|
|
|
@ -4,6 +4,7 @@ title: Asynchronous search security
|
|||
nav_order: 2
|
||||
parent: Asynchronous search
|
||||
has_children: false
|
||||
redirect_from: /docs/async/security/
|
||||
---
|
||||
|
||||
# Asynchronous search security
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Settings
|
||||
parent: Asynchronous search
|
||||
nav_order: 4
|
||||
redirect_from: /docs/async/settings/
|
||||
---
|
||||
|
||||
# Settings
|
||||
|
|
|
@ -4,6 +4,7 @@ title: API
|
|||
nav_order: 5
|
||||
parent: k-NN
|
||||
has_children: false
|
||||
redirect_from: /docs/knn/api/
|
||||
---
|
||||
|
||||
# k-NN plugin API
|
||||
|
@ -22,7 +23,7 @@ Statistic | Description
|
|||
:--- | :---
|
||||
`circuit_breaker_triggered` | Indicates whether the circuit breaker is triggered. This statistic is only relevant to approximate k-NN search.
|
||||
`total_load_time` | The time in nanoseconds that k-NN has taken to load graphs into the cache. This statistic is only relevant to approximate k-NN search.
|
||||
`eviction_count` | The number of graphs that have been evicted from the cache due to memory constraints or idle time. This statistic is only relevant to approximate k-NN search. <br /> **Note**: Explicit evictions that occur because of index deletion aren't counted.
|
||||
`eviction_count` | The number of graphs that have been evicted from the cache due to memory constraints or idle time. This statistic is only relevant to approximate k-NN search. <br /> **Note**: Explicit evictions that occur because of index deletion aren't counted.
|
||||
`hit_count` | The number of cache hits. A cache hit occurs when a user queries a graph that's already loaded into memory. This statistic is only relevant to approximate k-NN search.
|
||||
`miss_count` | The number of cache misses. A cache miss occurs when a user queries a graph that isn't loaded into memory yet. This statistic is only relevant to approximate k-NN search.
|
||||
`graph_memory_usage` | Current cache size (total size of all graphs in memory) in kilobytes. This statistic is only relevant to approximate k-NN search.
|
||||
|
|
|
@ -5,6 +5,7 @@ nav_order: 2
|
|||
parent: k-NN
|
||||
has_children: false
|
||||
has_math: true
|
||||
redirect_from: /docs/knn/approximate-knn/
|
||||
---
|
||||
|
||||
# Approximate k-NN search
|
||||
|
@ -44,7 +45,7 @@ PUT my-knn-index-1
|
|||
"parameters": {
|
||||
"ef_construction": 128,
|
||||
"m": 24
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"my_vector2": {
|
||||
|
@ -57,7 +58,7 @@ PUT my-knn-index-1
|
|||
"parameters": {
|
||||
"ef_construction": 256,
|
||||
"m": 48
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -4,6 +4,7 @@ title: k-NN
|
|||
nav_order: 50
|
||||
has_children: true
|
||||
has_toc: false
|
||||
redirect_from: /docs/knn/
|
||||
---
|
||||
|
||||
# k-NN
|
||||
|
|
|
@ -4,6 +4,7 @@ title: JNI library
|
|||
nav_order: 6
|
||||
parent: k-NN
|
||||
has_children: false
|
||||
redirect_from: /docs/knn/jni-library/
|
||||
---
|
||||
|
||||
# JNI library
|
||||
|
|
|
@ -4,6 +4,7 @@ title: k-NN Index
|
|||
nav_order: 1
|
||||
parent: k-NN
|
||||
has_children: false
|
||||
redirect_from: /docs/knn/knn-index/
|
||||
---
|
||||
|
||||
# k-NN Index
|
||||
|
|
|
@ -5,6 +5,7 @@ nav_order: 3
|
|||
parent: k-NN
|
||||
has_children: false
|
||||
has_math: true
|
||||
redirect_from: /docs/knn/knn-score-script/
|
||||
---
|
||||
|
||||
# Exact k-NN with scoring script
|
||||
|
@ -313,8 +314,8 @@ A space corresponds to the function used to measure the distance between two poi
|
|||
</tr>
|
||||
<tr>
|
||||
<td>innerproduct</td>
|
||||
<td>\[ Distance(X, Y) = -{A · B} \]</td>
|
||||
<td>if (Distance Function >= 0) 1 / (1 + Distance Function) else -Distance Function + 1</td>
|
||||
<td>\[ Distance(X, Y) = \sum_{i=1}^n (X_i - Y_i) \]</td>
|
||||
<td>1 / (1 + Distance Function)</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>hammingbit</td>
|
||||
|
|
|
@ -5,6 +5,7 @@ nav_order: 4
|
|||
parent: k-NN
|
||||
has_children: false
|
||||
has_math: true
|
||||
redirect_from: /docs/knn/painless-functions/
|
||||
---
|
||||
|
||||
# k-NN Painless Scripting extensions
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Performance tuning
|
||||
parent: k-NN
|
||||
nav_order: 8
|
||||
redirect_from: /docs/knn/performance-tuning/
|
||||
---
|
||||
|
||||
# Performance tuning
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Settings
|
||||
parent: k-NN
|
||||
nav_order: 7
|
||||
redirect_from: /docs/knn/settings/
|
||||
---
|
||||
|
||||
# k-NN settings
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Commands
|
||||
parent: Piped processing language
|
||||
nav_order: 4
|
||||
redirect_from: /docs/ppl/commands/
|
||||
---
|
||||
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Data Types
|
||||
parent: Piped processing language
|
||||
nav_order: 6
|
||||
redirect_from: /docs/ppl/datatypes/
|
||||
---
|
||||
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Endpoint
|
||||
parent: Piped processing language
|
||||
nav_order: 1
|
||||
redirect_from: /docs/ppl/endpoint/
|
||||
---
|
||||
|
||||
# Endpoint
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Functions
|
||||
parent: Piped processing language
|
||||
nav_order: 10
|
||||
redirect_from: /docs/ppl/functions/
|
||||
---
|
||||
|
||||
# Functions
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Identifiers
|
||||
parent: Piped processing language
|
||||
nav_order: 7
|
||||
redirect_from: /docs/ppl/identifiers/
|
||||
---
|
||||
|
||||
|
||||
|
|
|
@ -4,6 +4,7 @@ title: Piped processing language
|
|||
nav_order: 42
|
||||
has_children: true
|
||||
has_toc: false
|
||||
redirect_from: /docs/ppl/
|
||||
---
|
||||
|
||||
# Piped Processing Language
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Protocol
|
||||
parent: Piped processing language
|
||||
nav_order: 2
|
||||
redirect_from: /docs/ppl/protocol/
|
||||
---
|
||||
|
||||
# Protocol
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Settings
|
||||
parent: Piped processing language
|
||||
nav_order: 3
|
||||
redirect_from: /docs/ppl/settings/
|
||||
---
|
||||
|
||||
# Settings
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Aggregation Functions
|
||||
parent: SQL
|
||||
nav_order: 11
|
||||
redirect_from: /docs/sql/aggregations/
|
||||
---
|
||||
|
||||
# Aggregation functions
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Basic Queries
|
||||
parent: SQL
|
||||
nav_order: 5
|
||||
redirect_from: /docs/sql/basic/
|
||||
---
|
||||
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: SQL CLI
|
||||
parent: SQL
|
||||
nav_order: 2
|
||||
redirect_from: /docs/sql/cli/
|
||||
---
|
||||
|
||||
# SQL CLI
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Complex Queries
|
||||
parent: SQL
|
||||
nav_order: 6
|
||||
redirect_from: /docs/sql/complex/
|
||||
---
|
||||
|
||||
# Complex queries
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Data Types
|
||||
parent: SQL
|
||||
nav_order: 73
|
||||
redirect_from: /docs/sql/datatypes/
|
||||
---
|
||||
|
||||
# Data types
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Delete
|
||||
parent: SQL
|
||||
nav_order: 12
|
||||
redirect_from: /docs/sql/delete/
|
||||
---
|
||||
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Endpoint
|
||||
parent: SQL
|
||||
nav_order: 13
|
||||
redirect_from: /docs/sql/endpoints/
|
||||
---
|
||||
|
||||
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Functions
|
||||
parent: SQL
|
||||
nav_order: 10
|
||||
redirect_from: /docs/sql/functions/
|
||||
---
|
||||
|
||||
# Functions
|
||||
|
|
|
@ -4,6 +4,7 @@ title: SQL
|
|||
nav_order: 38
|
||||
has_children: true
|
||||
has_toc: false
|
||||
redirect_from: /docs/sql/
|
||||
---
|
||||
|
||||
# SQL
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: JDBC Driver
|
||||
parent: SQL
|
||||
nav_order: 71
|
||||
redirect_from: /docs/sql/jdbc/
|
||||
---
|
||||
|
||||
# JDBC driver
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Limitations
|
||||
parent: SQL
|
||||
nav_order: 18
|
||||
redirect_from: /docs/sql/limitation/
|
||||
---
|
||||
|
||||
# Limitations
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Metadata Queries
|
||||
parent: SQL
|
||||
nav_order: 9
|
||||
redirect_from: /docs/sql/metadata/
|
||||
---
|
||||
|
||||
# Metadata queries
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Monitoring
|
||||
parent: SQL
|
||||
nav_order: 15
|
||||
redirect_from: /docs/sql/monitoring/
|
||||
---
|
||||
|
||||
# Monitoring
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: ODBC Driver
|
||||
parent: SQL
|
||||
nav_order: 72
|
||||
redirect_from: /docs/sql/obdc/
|
||||
---
|
||||
|
||||
# ODBC driver
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: JSON Support
|
||||
parent: SQL
|
||||
nav_order: 7
|
||||
redirect_from: /docs/sql/partiql/
|
||||
---
|
||||
|
||||
# JSON Support
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Protocol
|
||||
parent: SQL
|
||||
nav_order: 14
|
||||
redirect_from: /docs/sql/protocol/
|
||||
---
|
||||
|
||||
# Protocol
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Settings
|
||||
parent: SQL
|
||||
nav_order: 16
|
||||
redirect_from: /docs/sql/settings/
|
||||
---
|
||||
|
||||
# Settings
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Full-Text Search
|
||||
parent: SQL
|
||||
nav_order: 8
|
||||
redirect_from: /docs/sql/sql-full-text/
|
||||
---
|
||||
|
||||
# Full-text search
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Troubleshooting
|
||||
parent: SQL
|
||||
nav_order: 17
|
||||
redirect_from: /docs/sql/troubleshoot/
|
||||
---
|
||||
|
||||
# Troubleshooting
|
||||
|
|
|
@ -3,9 +3,9 @@ layout: default
|
|||
title: Workbench
|
||||
parent: SQL
|
||||
nav_order: 1
|
||||
redirect_from: /docs/sql/workbench/
|
||||
---
|
||||
|
||||
|
||||
# Workbench
|
||||
|
||||
Use the SQL workbench to easily run on-demand SQL queries, translate SQL into its REST equivalent, and view and save results as text, JSON, JDBC, or CSV.
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: API
|
||||
parent: Access Control
|
||||
nav_order: 90
|
||||
redirect_from: /docs/security/access-control/api/
|
||||
---
|
||||
|
||||
# API
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Cross-Cluster Search
|
||||
parent: Access Control
|
||||
nav_order: 40
|
||||
redirect_from: /docs/security/access-control/cross-cluster-search/
|
||||
---
|
||||
|
||||
# Cross-cluster search
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Default Action Groups
|
||||
parent: Access Control
|
||||
nav_order: 51
|
||||
redirect_from: /docs/security/access-control/default-action-groups/
|
||||
---
|
||||
|
||||
# Default action groups
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Document-Level Security
|
||||
parent: Access Control
|
||||
nav_order: 10
|
||||
redirect_from: /docs/security/access-control/document-level-security/
|
||||
---
|
||||
|
||||
# Document-level security
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Field-Level Security
|
||||
parent: Access Control
|
||||
nav_order: 11
|
||||
redirect_from: /docs/security/access-control/field-level-security/
|
||||
---
|
||||
|
||||
# Field-level security
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Field Masking
|
||||
parent: Access Control
|
||||
nav_order: 12
|
||||
redirect_from: /docs/security/access-control/field-masking/
|
||||
---
|
||||
|
||||
# Field masking
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: User Impersonation
|
||||
parent: Access Control
|
||||
nav_order: 20
|
||||
redirect_from: /docs/security/access-control/impersonation/
|
||||
---
|
||||
|
||||
# User impersonation
|
||||
|
|
|
@ -4,6 +4,7 @@ title: Access Control
|
|||
nav_order: 10
|
||||
has_children: true
|
||||
has_toc: false
|
||||
redirect_from: /docs/security/access-control/
|
||||
---
|
||||
|
||||
# Access control
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: OpenSearch Dashboards Multi-Tenancy
|
||||
parent: Access Control
|
||||
nav_order: 30
|
||||
redirect_from: /docs/security/access-control/multi-tenancy/
|
||||
---
|
||||
|
||||
# OpenSearch Dashboards multi-tenancy
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Permissions
|
||||
parent: Access Control
|
||||
nav_order: 50
|
||||
redirect_from: /docs/security/access-control/permissions/
|
||||
---
|
||||
|
||||
# Permissions
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Users and Roles
|
||||
parent: Access Control
|
||||
nav_order: 1
|
||||
redirect_from: /docs/security/access-control/users-roles/
|
||||
---
|
||||
|
||||
# Users and roles
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Audit Log Field Reference
|
||||
parent: Audit Logs
|
||||
nav_order: 1
|
||||
redirect_from: /docs/security/audit-logs/field-reference/
|
||||
---
|
||||
|
||||
# Audit log field reference
|
||||
|
|
|
@ -4,6 +4,7 @@ title: Audit Logs
|
|||
nav_order: 90
|
||||
has_children: true
|
||||
has_toc: false
|
||||
redirect_from: /docs/security/audit-logs/
|
||||
---
|
||||
|
||||
# Audit logs
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Audit Log Storage Types
|
||||
parent: Audit Logs
|
||||
nav_order: 10
|
||||
redirect_from: /docs/security/audit-logs/storage-types/
|
||||
---
|
||||
|
||||
# Audit log storage types
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Client certificate authentication
|
||||
parent: Configuration
|
||||
nav_order: 50
|
||||
redirect_from: /docs/security/configuration/client-auth/
|
||||
---
|
||||
|
||||
# Client certificate authentication
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Authentication flow
|
||||
parent: Configuration
|
||||
nav_order: 1
|
||||
redirect_from: /docs/security/configuration/concepts/
|
||||
---
|
||||
|
||||
# Authentication flow
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Backend Configuration
|
||||
parent: Configuration
|
||||
nav_order: 2
|
||||
redirect_from: /docs/security/configuration/configuration/
|
||||
---
|
||||
|
||||
# Backend configuration
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Disable Security
|
||||
parent: Configuration
|
||||
nav_order: 99
|
||||
redirect_from: /docs/security/configuration/disable/
|
||||
---
|
||||
|
||||
# Disable security
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Generate Certificates
|
||||
parent: Configuration
|
||||
nav_order: 11
|
||||
redirect_from: /docs/security/configuration/generate-certificates/
|
||||
---
|
||||
|
||||
# Generate certificates
|
||||
|
|
|
@ -4,6 +4,7 @@ title: Configuration
|
|||
nav_order: 1
|
||||
has_children: true
|
||||
has_toc: false
|
||||
redirect_from: /docs/security/configuration/
|
||||
---
|
||||
|
||||
# Security configuration
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Active Directory and LDAP
|
||||
parent: Configuration
|
||||
nav_order: 30
|
||||
redirect_from: /docs/security/configuration/ldap/
|
||||
---
|
||||
|
||||
# Active Directory and LDAP
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: OpenID Connect
|
||||
parent: Configuration
|
||||
nav_order: 32
|
||||
redirect_from: /docs/security/configuration/openid-connect/
|
||||
---
|
||||
|
||||
# OpenID Connect
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Proxy-based authentication
|
||||
parent: Configuration
|
||||
nav_order: 40
|
||||
redirect_from: /docs/security/configuration/proxy/
|
||||
---
|
||||
|
||||
# Proxy-based authentication
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: SAML
|
||||
parent: Configuration
|
||||
nav_order: 31
|
||||
redirect_from: /docs/security/configuration/saml/
|
||||
---
|
||||
|
||||
# SAML
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: Apply Changes with securityadmin.sh
|
||||
parent: Configuration
|
||||
nav_order: 20
|
||||
redirect_from: /docs/security/configuration/security-admin/
|
||||
---
|
||||
|
||||
# Apply configuration changes using securityadmin.sh
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: System Indices
|
||||
parent: Configuration
|
||||
nav_order: 15
|
||||
redirect_from: /docs/security/configuration/system-indices/
|
||||
---
|
||||
|
||||
# System indices
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: TLS Certificates
|
||||
parent: Configuration
|
||||
nav_order: 10
|
||||
redirect_from: /docs/security/configuration/tls/
|
||||
---
|
||||
|
||||
# Configure TLS certificates
|
||||
|
|
|
@ -3,6 +3,7 @@ layout: default
|
|||
title: YAML Files
|
||||
parent: Configuration
|
||||
nav_order: 3
|
||||
redirect_from: /docs/security/configuration/yaml/
|
||||
---
|
||||
|
||||
# YAML files
|
||||
|
|
|
@ -2,8 +2,9 @@
|
|||
layout: default
|
||||
title: About the security plugin
|
||||
nav_order: 1
|
||||
has_children: true
|
||||
has_children: false
|
||||
has_toc: false
|
||||
redirect_from: /docs/security/
|
||||
---
|
||||
|
||||
# About the security plugin
|
||||
|
|
Loading…
Reference in New Issue