How to Add index to a List Column (Azure cosmos ) in Azure Search2019 Community Moderator ElectionHow does database indexing work?Multiple Indexes vs Multi-Column Indexesazure search performance issueAzure Search - basic search in Czech languageAzure search with Storage table azureAzure Search Index field Id an NameSearch with multiple languages on Azure SearchAzure Search - nickname analysisAzure Search Index C# SDKAzure Search and Cosmos DB with complex structures
Happy pi day, everyone!
What are some nice/clever ways to introduce the tonic's dominant seventh chord?
It's a yearly task, alright
How to write cleanly even if my character uses expletive language?
How to simplify this time periods definition interface?
Should we release the security issues we found in our product as CVE or we can just update those on weekly release notes?
My adviser wants to be the first author
The use of "touch" and "touch on" in context
Is it true that real estate prices mainly go up?
Is it possible that AIC = BIC?
How to explain that I do not want to visit a country due to personal safety concern?
Do I need life insurance if I can cover my own funeral costs?
Is it normal that my co-workers at a fitness company criticize my food choices?
Importance of differentiation
Ban on all campaign finance?
What has been your most complicated TikZ drawing?
Calculus II Professor will not accept my correct integral evaluation that uses a different method, should I bring this up further?
How do anti-virus programs start at Windows boot?
Rules about breaking the rules. How do I do it well?
Why doesn't using two cd commands in bash script execute the second command?
Meaning of "SEVERA INDEOVI VAS" from 3rd Century slab
What are the possible solutions of the given equation?
How to answer questions about my characters?
Theorems like the Lovász Local Lemma?
How to Add index to a List Column (Azure cosmos ) in Azure Search
2019 Community Moderator ElectionHow does database indexing work?Multiple Indexes vs Multi-Column Indexesazure search performance issueAzure Search - basic search in Czech languageAzure search with Storage table azureAzure Search Index field Id an NameSearch with multiple languages on Azure SearchAzure Search - nickname analysisAzure Search Index C# SDKAzure Search and Cosmos DB with complex structures
I'm having a complex document in my Cosmos DB like below
"id": "e064a694-8e1e-4660-a3ef-6b894e9414f7",
"Name": "Lidiya Lawrence",
"languageBatchResult":
"id": "Lidiya Lawrence",
"Languages": [
"name": "English"
]
,
"keyPhraseBatchResult":
"Keys": [
"Government of India",
"Training Co-ordinator",
"customer support",
"months"
]
I'm trying to implement Azure Search with this data.
The problem is how should I able to create an index as searchable for the keyPhraseBatchResult
/Keys
which is having the list of values?
I already tried to create an index with keyPhraseBatchResult
in azure search but it's not working. The indexing is working only for Name
unfortunately
Update 1
After adding the keyphrases
how to map the field now?
indexing azure-cosmosdb azure-search
add a comment |
I'm having a complex document in my Cosmos DB like below
"id": "e064a694-8e1e-4660-a3ef-6b894e9414f7",
"Name": "Lidiya Lawrence",
"languageBatchResult":
"id": "Lidiya Lawrence",
"Languages": [
"name": "English"
]
,
"keyPhraseBatchResult":
"Keys": [
"Government of India",
"Training Co-ordinator",
"customer support",
"months"
]
I'm trying to implement Azure Search with this data.
The problem is how should I able to create an index as searchable for the keyPhraseBatchResult
/Keys
which is having the list of values?
I already tried to create an index with keyPhraseBatchResult
in azure search but it's not working. The indexing is working only for Name
unfortunately
Update 1
After adding the keyphrases
how to map the field now?
indexing azure-cosmosdb azure-search
add a comment |
I'm having a complex document in my Cosmos DB like below
"id": "e064a694-8e1e-4660-a3ef-6b894e9414f7",
"Name": "Lidiya Lawrence",
"languageBatchResult":
"id": "Lidiya Lawrence",
"Languages": [
"name": "English"
]
,
"keyPhraseBatchResult":
"Keys": [
"Government of India",
"Training Co-ordinator",
"customer support",
"months"
]
I'm trying to implement Azure Search with this data.
The problem is how should I able to create an index as searchable for the keyPhraseBatchResult
/Keys
which is having the list of values?
I already tried to create an index with keyPhraseBatchResult
in azure search but it's not working. The indexing is working only for Name
unfortunately
Update 1
After adding the keyphrases
how to map the field now?
indexing azure-cosmosdb azure-search
I'm having a complex document in my Cosmos DB like below
"id": "e064a694-8e1e-4660-a3ef-6b894e9414f7",
"Name": "Lidiya Lawrence",
"languageBatchResult":
"id": "Lidiya Lawrence",
"Languages": [
"name": "English"
]
,
"keyPhraseBatchResult":
"Keys": [
"Government of India",
"Training Co-ordinator",
"customer support",
"months"
]
I'm trying to implement Azure Search with this data.
The problem is how should I able to create an index as searchable for the keyPhraseBatchResult
/Keys
which is having the list of values?
I already tried to create an index with keyPhraseBatchResult
in azure search but it's not working. The indexing is working only for Name
unfortunately
Update 1
After adding the keyphrases
how to map the field now?
indexing azure-cosmosdb azure-search
indexing azure-cosmosdb azure-search
edited Mar 8 at 12:56
Jayendran
asked Mar 7 at 12:44
JayendranJayendran
3,43331439
3,43331439
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
To index /keyPhraseBatchResult/Keys
, you need to first create a Collection(Edm.String) index field keyphrases
to store your list.
Then you need to set up your indexer with a field mapping from /keyPhraseBatchResult/Keys
to keyphrases
.
pls see my Update 1 how to field map the/keyPhraseBatchResult/Keys
tokeyphrases
– Jayendran
Mar 8 at 12:57
Currently you can't add field mappings in the portal, so you would need to create just the index (in the portal), then create the datasource and indexer using REST APIs.
– 8163264128
Mar 8 at 19:20
the data source is already created in portal right, as a first step of creating index? do we need to create again in REST APIs ?
– Jayendran
Mar 9 at 4:40
upvoted, could you please provide me the update for the below? so that I can try that and accept your solution
– Jayendran
Mar 10 at 14:45
Depends on what you've tried already; usually nothing gets created until you configure everything. You can see if a datasource already exists in theData sources
tab.
– 8163264128
Mar 11 at 2:49
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55044113%2fhow-to-add-index-to-a-list-column-azure-cosmos-in-azure-search%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
To index /keyPhraseBatchResult/Keys
, you need to first create a Collection(Edm.String) index field keyphrases
to store your list.
Then you need to set up your indexer with a field mapping from /keyPhraseBatchResult/Keys
to keyphrases
.
pls see my Update 1 how to field map the/keyPhraseBatchResult/Keys
tokeyphrases
– Jayendran
Mar 8 at 12:57
Currently you can't add field mappings in the portal, so you would need to create just the index (in the portal), then create the datasource and indexer using REST APIs.
– 8163264128
Mar 8 at 19:20
the data source is already created in portal right, as a first step of creating index? do we need to create again in REST APIs ?
– Jayendran
Mar 9 at 4:40
upvoted, could you please provide me the update for the below? so that I can try that and accept your solution
– Jayendran
Mar 10 at 14:45
Depends on what you've tried already; usually nothing gets created until you configure everything. You can see if a datasource already exists in theData sources
tab.
– 8163264128
Mar 11 at 2:49
add a comment |
To index /keyPhraseBatchResult/Keys
, you need to first create a Collection(Edm.String) index field keyphrases
to store your list.
Then you need to set up your indexer with a field mapping from /keyPhraseBatchResult/Keys
to keyphrases
.
pls see my Update 1 how to field map the/keyPhraseBatchResult/Keys
tokeyphrases
– Jayendran
Mar 8 at 12:57
Currently you can't add field mappings in the portal, so you would need to create just the index (in the portal), then create the datasource and indexer using REST APIs.
– 8163264128
Mar 8 at 19:20
the data source is already created in portal right, as a first step of creating index? do we need to create again in REST APIs ?
– Jayendran
Mar 9 at 4:40
upvoted, could you please provide me the update for the below? so that I can try that and accept your solution
– Jayendran
Mar 10 at 14:45
Depends on what you've tried already; usually nothing gets created until you configure everything. You can see if a datasource already exists in theData sources
tab.
– 8163264128
Mar 11 at 2:49
add a comment |
To index /keyPhraseBatchResult/Keys
, you need to first create a Collection(Edm.String) index field keyphrases
to store your list.
Then you need to set up your indexer with a field mapping from /keyPhraseBatchResult/Keys
to keyphrases
.
To index /keyPhraseBatchResult/Keys
, you need to first create a Collection(Edm.String) index field keyphrases
to store your list.
Then you need to set up your indexer with a field mapping from /keyPhraseBatchResult/Keys
to keyphrases
.
answered Mar 8 at 1:58
81632641288163264128
1135
1135
pls see my Update 1 how to field map the/keyPhraseBatchResult/Keys
tokeyphrases
– Jayendran
Mar 8 at 12:57
Currently you can't add field mappings in the portal, so you would need to create just the index (in the portal), then create the datasource and indexer using REST APIs.
– 8163264128
Mar 8 at 19:20
the data source is already created in portal right, as a first step of creating index? do we need to create again in REST APIs ?
– Jayendran
Mar 9 at 4:40
upvoted, could you please provide me the update for the below? so that I can try that and accept your solution
– Jayendran
Mar 10 at 14:45
Depends on what you've tried already; usually nothing gets created until you configure everything. You can see if a datasource already exists in theData sources
tab.
– 8163264128
Mar 11 at 2:49
add a comment |
pls see my Update 1 how to field map the/keyPhraseBatchResult/Keys
tokeyphrases
– Jayendran
Mar 8 at 12:57
Currently you can't add field mappings in the portal, so you would need to create just the index (in the portal), then create the datasource and indexer using REST APIs.
– 8163264128
Mar 8 at 19:20
the data source is already created in portal right, as a first step of creating index? do we need to create again in REST APIs ?
– Jayendran
Mar 9 at 4:40
upvoted, could you please provide me the update for the below? so that I can try that and accept your solution
– Jayendran
Mar 10 at 14:45
Depends on what you've tried already; usually nothing gets created until you configure everything. You can see if a datasource already exists in theData sources
tab.
– 8163264128
Mar 11 at 2:49
pls see my Update 1 how to field map the
/keyPhraseBatchResult/Keys
to keyphrases
– Jayendran
Mar 8 at 12:57
pls see my Update 1 how to field map the
/keyPhraseBatchResult/Keys
to keyphrases
– Jayendran
Mar 8 at 12:57
Currently you can't add field mappings in the portal, so you would need to create just the index (in the portal), then create the datasource and indexer using REST APIs.
– 8163264128
Mar 8 at 19:20
Currently you can't add field mappings in the portal, so you would need to create just the index (in the portal), then create the datasource and indexer using REST APIs.
– 8163264128
Mar 8 at 19:20
the data source is already created in portal right, as a first step of creating index? do we need to create again in REST APIs ?
– Jayendran
Mar 9 at 4:40
the data source is already created in portal right, as a first step of creating index? do we need to create again in REST APIs ?
– Jayendran
Mar 9 at 4:40
upvoted, could you please provide me the update for the below? so that I can try that and accept your solution
– Jayendran
Mar 10 at 14:45
upvoted, could you please provide me the update for the below? so that I can try that and accept your solution
– Jayendran
Mar 10 at 14:45
Depends on what you've tried already; usually nothing gets created until you configure everything. You can see if a datasource already exists in the
Data sources
tab.– 8163264128
Mar 11 at 2:49
Depends on what you've tried already; usually nothing gets created until you configure everything. You can see if a datasource already exists in the
Data sources
tab.– 8163264128
Mar 11 at 2:49
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55044113%2fhow-to-add-index-to-a-list-column-azure-cosmos-in-azure-search%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown