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

          Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

          Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

          How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page