ヒストグラム(v3)

Cloud Talent Solution では、特定の検索に関連付けられた求人の数をヒストグラムで表現できます。ヒストグラム検索では、特定のクエリに一致するすべての求人の数が、リクエストした searchType 別に分類されて返されます。たとえば、ヒストグラムの検索で、カリフォルニア州のマウンテン ビューに存在する求人の数が雇用タイプ(フルタイム、パートタイムなど)ごとに分けて返されます。ヒストグラムの次元とパラメータを定義するには、このガイドに従ってください。

ヒストグラムは通常、同じ JobQueryrequestMetadata を使用して、検索呼び出しと並列に実行されます。

リクエスト

ヒストグラムはその基盤になる search API から取得できます。この操作を行うには、histogramFacetssearch を設定し、リクエストのフィルタを定義します。ヒストグラムには、検索クエリで定義されているすべてのフィルタが適用されます。次の例は、ヒストグラムを取得する仕組みを示しています。

必須フィールド

  • searchTypes は、カウント数を返す対象となるカテゴリのリストです。たとえば、EMPLOYMENT_TYPE を指定すると、雇用タイプ(フルタイムやパートタイムなど)のカウント数が返されます。列挙型の詳細なリストについては、SearchType をご覧ください。

省略可能フィールド

  • jobQuery は、この検索で行う求人クエリです。詳細については、検索フィルタをご覧ください。この例では、クエリは適用されません。

  • requestMetadata には、検索を開始したユーザーに関する情報が含まれます。詳細については、求人検索ページのRequestMetadata セクションをご覧ください。

  • enableBroadening は、より多くの結果を返すために、検索リクエストの場所と職種の制限を緩和します。たとえば、リクエストで特定の場所から半径 20 マイル以内の求人が指定されている場合、このフラグを true に設定すると、その半径の範囲外の求人が返される可能性があります。次の例には、範囲を広めた結果は含まれていません。

次の例では、COMPANY_ID と customAttribute someFieldName1 に該当する求人カウントのリストが返されます。

Java

Cloud Talent Solution クライアントのインストールと作成の詳細については、Cloud Talent Solution クライアント ライブラリをご覧ください。


/** Histogram search */
public static void histogramSearch(String companyName) throws IOException, InterruptedException {
  // Make sure to set the requestMetadata the same as the associated search request
  RequestMetadata requestMetadata =
      new RequestMetadata()
          // Make sure to hash your userID
          .setUserId("HashedUserId")
          // Make sure to hash the sessionID
          .setSessionId("HashedSessionID")
          // Domain of the website where the search is conducted
          .setDomain("www.google.com");

  HistogramFacets histogramFacets =
      new HistogramFacets()
          .setSimpleHistogramFacets(Arrays.asList("COMPANY_ID"))
          .setCustomAttributeHistogramFacets(
              Arrays.asList(
                  new CustomAttributeHistogramRequest()
                      .setKey("someFieldName1")
                      .setStringValueHistogram(true)));

  // conducted.
  SearchJobsRequest searchJobsRequest =
      new SearchJobsRequest()
          .setRequestMetadata(requestMetadata)
          .setSearchMode("JOB_SEARCH")
          .setHistogramFacets(histogramFacets);
  if (companyName != null) {
    searchJobsRequest.setJobQuery(new JobQuery().setCompanyNames(Arrays.asList(companyName)));
  }

  SearchJobsResponse searchJobsResponse =
      talentSolutionClient
          .projects()
          .jobs()
          .search(DEFAULT_PROJECT_ID, searchJobsRequest)
          .execute();
  Thread.sleep(1000);

  System.out.printf("Histogram search results: %s\n", searchJobsResponse);
}

Python

Cloud Talent Solution クライアントのインストールと作成の詳細については、Cloud Talent Solution クライアント ライブラリをご覧ください。

def histogram_search(client_service, company_name):
    request_metadata = {
        "user_id": "HashedUserId",
        "session_id": "HashedSessionId",
        "domain": "www.google.com",
    }
    custom_attribute_histogram_facet = {
        "key": "someFieldName1",
        "string_value_histogram": True,
    }
    histogram_facets = {
        "simple_histogram_facets": ["COMPANY_ID"],
        "custom_attribute_histogram_facets": [custom_attribute_histogram_facet],
    }
    request = {
        "search_mode": "JOB_SEARCH",
        "request_metadata": request_metadata,
        "histogram_facets": histogram_facets,
    }
    if company_name is not None:
        request.update({"job_query": {"company_names": [company_name]}})
    response = (
        client_service.projects().jobs().search(parent=parent, body=request).execute()
    )
    print(response)

Go

Cloud Talent Solution クライアントのインストールと作成の詳細については、Cloud Talent Solution クライアント ライブラリをご覧ください。


// histogramSearch searches for jobs with histogram facets.
func histogramSearch(w io.Writer, projectID, companyName string) (*talent.SearchJobsResponse, error) {
	ctx := context.Background()

	client, err := google.DefaultClient(ctx, talent.CloudPlatformScope)
	if err != nil {
		return nil, fmt.Errorf("google.DefaultClient: %w", err)
	}
	// Create the jobs service client.
	service, err := talent.New(client)
	if err != nil {
		return nil, fmt.Errorf("talent.New: %w", err)
	}

	parent := "projects/" + projectID
	req := &talent.SearchJobsRequest{
		// Make sure to set the RequestMetadata the same as the associated
		// search request.
		RequestMetadata: &talent.RequestMetadata{
			// Make sure to hash your userID.
			UserId: "HashedUsrId",
			// Make sure to hash the sessionID.
			SessionId: "HashedSessionId",
			// Domain of the website where the search is conducted.
			Domain: "www.googlesample.com",
		},
		HistogramFacets: &talent.HistogramFacets{
			SimpleHistogramFacets: []string{"COMPANY_ID"},
			CustomAttributeHistogramFacets: []*talent.CustomAttributeHistogramRequest{
				{
					Key:                  "someFieldString",
					StringValueHistogram: true,
				},
			},
		},
		// Set the search mode to a regular search.
		SearchMode:               "JOB_SEARCH",
		RequirePreciseResultSize: true,
	}
	if companyName != "" {
		req.JobQuery = &talent.JobQuery{
			CompanyNames: []string{companyName},
		}
	}

	resp, err := service.Projects.Jobs.Search(parent, req).Do()
	if err != nil {
		return nil, fmt.Errorf("failed to search for jobs with Historgram Facets: %w", err)
	}

	fmt.Fprintln(w, "Jobs:")
	for _, j := range resp.MatchingJobs {
		fmt.Fprintf(w, "\t%q\n", j.Job.Name)
	}

	return resp, nil
}

関連性のしきい値の設定

ヒストグラム リクエストでは、関連性のしきい値の設定は使用されません。ヒストグラム検索と同一の求人検索の間でカウントが整合するように、求人検索の disableKeywordMatchfalse にする必要があります。