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










0















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?



enter image description here










share|improve this question




























    0















    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?



    enter image description here










    share|improve this question


























      0












      0








      0








      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?



      enter image description here










      share|improve this question
















      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?



      enter image description here







      indexing azure-cosmosdb azure-search






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 8 at 12:56







      Jayendran

















      asked Mar 7 at 12:44









      JayendranJayendran

      3,43331439




      3,43331439






















          1 Answer
          1






          active

          oldest

          votes


















          1














          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.






          share|improve this answer























          • 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











          • 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 the Data sources tab.

            – 8163264128
            Mar 11 at 2:49










          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
          );



          );













          draft saved

          draft discarded


















          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









          1














          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.






          share|improve this answer























          • 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











          • 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 the Data sources tab.

            – 8163264128
            Mar 11 at 2:49















          1














          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.






          share|improve this answer























          • 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











          • 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 the Data sources tab.

            – 8163264128
            Mar 11 at 2:49













          1












          1








          1







          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.






          share|improve this answer













          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.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 8 at 1:58









          81632641288163264128

          1135




          1135












          • 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











          • 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 the Data 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











          • 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 the Data 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



















          draft saved

          draft discarded
















































          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.




          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

          Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

          2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived