You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -118,3 +119,66 @@ import CodeBlock from '@theme/CodeBlock';
118
119
The following SNMP OIDs provide relevant metrics:
119
120
*[5.1.11.25](../../../server/administration/snmp/snmp-overview.mdx#511125) – Total number of enabled embeddings generation tasks.
120
121
*[5.1.11.26](../../../server/administration/snmp/snmp-overview.mdx#511126) – Total number of active embeddings generation tasks.
122
+
123
+
## Get embeddings generation task details
124
+
125
+
* Besides viewing the list of tasks in the [AI Tasks - list view](../../../ai-integration/ai-tasks-list-view.mdx) in the Studio,
126
+
you can also retrieve embeddings generation task details programmatically.
127
+
128
+
* This is useful when issuing a vector search query that references an embeddings generation task,
129
+
where it's important to verify that the task exists beforehand. For example:
130
+
* when [Querying pre-made embeddings generated by tasks](../../../ai-integration/vector-search/vector-search-using-dynamic-query#querying-pre-made-embeddings-generated-by-tasks)
131
+
* or when [Indexing numerical data and querying using text input](../../../ai-integration/vector-search/vector-search-using-static-index#indexing-numerical-data-and-querying-using-text-input)
132
+
133
+
* There are two ways to check if an embeddings generation task exists:
134
+
* Using `GetOngoingTaskInfoOperation`.
135
+
* Accessing the full list of embeddings generation tasks from the database record.
0 commit comments