2017-11-28 20 views
0

Microsoft.Azure.Search (v3.0.3)의 "SearchAsync"및 "Search"메서드를 사용하여 인덱싱 된 항목을 반환하면 , SDK는 모든 패싯을 반환하지 않습니다.Microsoft.Azure.Search (sdk v3.0.3)가 모든 패싯을 올바르게 반환하지 않음

그러나; 우편 배달부를 사용하여 같은 것을 시도 할 때 모든 패싯을 올바르게 반환합니다.

이것은 sdk의 버그 일 수 있습니까 (저는 이것이 sdk 메소드에 대한 직접 호출로서 모든면을 올바르게 리턴하지 못하지만이 가능한 버그에 대한 레코드를 찾을 수 없다고 생각합니다). 그렇다면 sdk에 대한 수정 사항이 있습니까? 어떤 도움을 주셔서 감사합니다.

업데이트 : 더 많은 시간을 보낸 후 .NET SDK와 관련하여 버그가 발견되지 않았습니다.

.NET SDK 및 REST API 모두이 문제가있는 것으로 나타나며 그 중 하나도 모든 패싯을 반환하지 않습니다. 이 문제에 대한 알려진 버그가 있으며 그 해결 방법은 무엇입니까?

다음 예제를 참조하십시오.

2 개의 코칭면이 있어야하지만 Azure Search Service에서 1 개만 돌아오고 있어야합니다.

새로운 검색 쿼리 (패싯 전공 추가)

https://MYPROJECT-search.search.windows.net/indexes/myproject-directory-qa/docs?api-version=2016-09-01&$count=true&facet=specialisms&$filter=listingType eq 'Therapist' 
"Coaching:Development coaching", --> This doesn't return as a facet. 
"Coaching:Executive coaching", -->This returns fine. 


    "@search.facets": { 
     "[email protected]": "#Collection(Microsoft.Azure.Search.V2016_09_01.QueryResultFacet)", 
     "specialisms": [ 
      { 
       "count": 5, 
       "value": "Anxiety, depression and trauma:Depression" 
      }, 
      { 
       "count": 4, 
       "value": "Addiction, self-harm and eating disorders:Obsessions" 
      }, 
      { 
       "count": 4, 
       "value": "Anxiety, depression and trauma:Post-traumatic stress" 
      }, 
      { 
       "count": 4, 
       "value": "Coaching:Executive coaching" 
      }, 
      { 
       "count": 4, 
       "value": "Identity, culture and spirituality:Self esteem" 
      }, 
      { 
       "count": 4, 
       "value": "Relationships, family and children:Pregnancy related issues" 
      }, 
      { 
       "count": 4, 
       "value": "Stress and work:Redundancy" 
      }, 
      { 
       "count": 3, 
       "value": "Addiction, self-harm and eating disorders:Eating disorders" 
      }, 
      { 
       "count": 3, 
       "value": "Anxiety, depression and trauma:Bereavement" 
      }, 
      { 
       "count": 3, 
       "value": "Anxiety, depression and trauma:Loss" 
      } 
     ] 
    }, 


{ 
      "@search.score": 1, 
      "contactId": "df394997-6e94-e711-80ed-3863bb34db00", 
      "location": { 
       "type": "Point", 
       "coordinates": [ 
        -2.58586, 
        51.47873 
       ], 
       "crs": { 
        "type": "name", 
        "properties": { 
         "name": "EPSG:4326" 
        } 
       } 
      }, 
      "profileImageUrl": "https://myprojectwebqa.blob.core.windows.net/profileimage/3e31457c-5113-4062-b960-30f038ce7bfc.jpg", 
      "locationText": "Bristol", 
      "listingType": "Therapist", 
      "disabledAccess": true, 
      "flexibleHours": true, 
      "offersConcessionaryRates": false, 
      "homeVisits": true, 
      "howIWillWork": "<p>Some test data</p>", 
      "specialisms": [ 
       "Health related issues:Asperger syndrome", 
       "Health related issues:Chronic fatigue syndrome/ME", 
       "Addiction, self-harm and eating disorders:Addictions", 
       "Addiction, self-harm and eating disorders:Eating disorders", 
       "Addiction, self-harm and eating disorders:Obsessions", 
       "Anxiety, depression and trauma:Bereavement", 
       "Anxiety, depression and trauma:Depression", 
       "Anxiety, depression and trauma:Loss", 
       "Coaching:Development coaching", 
       "Coaching:Executive coaching", 
       "Identity, culture and spirituality:Self esteem", 
       "Identity, culture and spirituality:Sexuality", 
       "Relationships, family and children:Infertility", 
       "Relationships, family and children:Relationships", 
       "Stress and work:Redundancy" 
      ], 
      "clientele": [ 
       "Adults", 
       "Children", 
       "Groups" 
      ], 
      "approaches": [ 
       "CBT", 
       "Cognitive", 
       "Psychoanalytic", 
       "Psychosynthesis" 
      ], 
      "sessionTypes": [ 
       "Home visits", 
       "Long-term face to face work" 
      ], 
      "hourlyRate": 50, 
      "fullName": "Test Name", 
      "id": "ZWUwNGIyNjYtYjQ5Ny1lNzExLTgwZTktMzg2M2JiMzY0MGI4" 
     } 

은 자세한 내용은 아래를 참조하시기 바랍니다; 내 경우를 들어 enter image description here

답변

0

enter image description here

enter image description here

가 나는 기본적으로 푸른 검색 서비스는 측면의 열 반환 사실을 발견했다. 그래서 내 모든면을 볼 수 없었습니다.

다음과 같이 검색어를 업데이트하면 문제가 해결되어 검색 결과에 내 패싯이 모두 표시됩니다. 패싯 = 전문성, 개수 : 9999.

https://MYPROJECTNAME-search.search.windows.net/indexes/MYPROJECTNAME-directory-qa/docs?api-version=2016-09-01&$count=true&facet=specialisms, count:9999&facet=clientele, count:9999&$filter=listingType eq 'Therapist' 

Microsoft 설명서는 다음 링크를 참조하십시오.

,

https://docs.microsoft.com/en-us/rest/api/searchservice/search-documents

"패싯 용어의 최대 # 기본값은 10입니다"