Index doesn't appear in the process of indexing and skillset

REX_mentin 0 Reputation points
2025-01-20T08:02:44.89+00:00

Hi,

I am trying to convert text data in "txt "column in azure sql db to vector data and saving the data in "txt_vector" attribute in index below, 20-01-25 午後4.48の画像

but I see nothing in index when I run the indexer.36C8A381-DB07-420B-AB5F-138C54DADAC6

Does anyone give me a clue for where I got wrong on the code?? Here is the skillset and indexer.

(Skillset)25E1C2C3-7649-474A-B3DF-D5BF8EB06CC7

F9677FF8-9C03-4DEC-90A9-984CA481BB97

(indexer)8F30D455-4746-4129-9A58-42F350192C4D

Azure AI Search
Azure AI Search
An Azure search service with built-in artificial intelligence capabilities that enrich information to help identify and explore relevant content at scale.
1,180 questions
{count} votes

1 answer

Sort by: Most helpful
  1. JAYA SHANKAR G S 245 Reputation points Microsoft Vendor
    2025-01-30T06:13:18.6166667+00:00

    Hi, @REX_mentin

    Your indexer outputFieldMappings is not correct.

    In embedding skillset, you given context as /document and in the same context the target field will be populated.

    So, add mappings for embedding output like below.

    
    "outputFieldMappings":[
    	{
    	"sourceFieldName":"/document/txt_vector", 
    	"targetFieldName":"txt_vector"
    	},
    	...
    ]
    
    

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.