Search Ads 360 Reporting API-এর মাধ্যমে সত্তা পুনরুদ্ধার এবং ডেটা রিপোর্ট করার দুটি পদ্ধতি রয়েছে।
এই নির্দেশিকাটি প্রাথমিকভাবে SearchAds360Service
থেকে স্ট্রিমিং ডেটার উপর ফোকাস করে। দুটি ডেটা পুনরুদ্ধার পদ্ধতির জন্য এখানে উচ্চ-স্তরের পার্থক্য রয়েছে:
SearchAds360Service.Searchstream | SearchAds360Service.Search | |
---|---|---|
উত্পাদন কোড জন্য উপযুক্ত | হ্যাঁ | হ্যাঁ |
সেবা | SearchAds360Service | SearchAds360Service |
দৃশ্যকল্প | বস্তু এবং প্রতিবেদন আনা হচ্ছে | বস্তু এবং প্রতিবেদন আনা হচ্ছে |
প্রতিক্রিয়া | SearchAds360Row অবজেক্টের স্ট্রীম | SearchAds360Row অবজেক্টের পৃষ্ঠা |
প্রতিক্রিয়া ক্ষেত্র | শুধুমাত্র যারা ক্যোয়ারীতে উল্লেখ করা হয়েছে | শুধুমাত্র যারা ক্যোয়ারীতে উল্লেখ করা হয়েছে |
দৈনিক সীমা | API সীমা এবং কোটা দেখুন। | API সীমা এবং কোটা দেখুন। |
সার্চ স্ট্রিম বনাম অনুসন্ধান
Search
সম্পূর্ণ রিপোর্ট ডাউনলোড করার জন্য একাধিক পেজিনেটেড অনুরোধ পাঠাতে পারে, SearchStream
একটি একক অনুরোধ পাঠায় এবং রিপোর্টের আকার নির্বিশেষে Search Ads 360 Reporting API-এর সাথে একটি অবিরাম সংযোগ শুরু করে।
SearchStream
এর জন্য, ডেটা প্যাকেটগুলি ডাটা বাফারে ক্যাশে থাকা সম্পূর্ণ ফলাফলের সাথে সাথে সাথেই ডাউনলোড হতে শুরু করে৷ সম্পূর্ণ স্ট্রীম শেষ হওয়ার জন্য অপেক্ষা না করেই আপনার কোডটি বাফার করা ডেটা পড়া শুরু করতে পারে।
আপনার অ্যাপের উপর নির্ভর করে Search
প্রতিক্রিয়ার প্রতিটি পৃথক পৃষ্ঠার অনুরোধ করার জন্য প্রয়োজনীয় রাউন্ড-ট্রিপ নেটওয়ার্ক সময় বাদ দিয়ে, SearchStream
পেজিং এর উপর উন্নত কর্মক্ষমতা অফার করতে পারে, বিশেষ করে বড় রিপোর্টের জন্য।
উদাহরণ
উদাহরণস্বরূপ 100,000
সারি নিয়ে গঠিত একটি প্রতিবেদন নিন। নিম্নলিখিত সারণী দুটি পদ্ধতির মধ্যে অ্যাকাউন্টিং পার্থক্য ভেঙ্গে দেয়।
সার্চ স্ট্রীম | অনুসন্ধান করুন | |
---|---|---|
পৃষ্ঠার আকার | প্রযোজ্য নয় | প্রতি পৃষ্ঠায় 10,000 সারি |
API অনুরোধের সংখ্যা | 1 অনুরোধ | 10টি অনুরোধ |
API প্রতিক্রিয়ার সংখ্যা | 1 একটানা প্রবাহ | 10টি প্রতিক্রিয়া |
কর্মক্ষমতা কারণ
সাধারণভাবে, আমরা নিম্নলিখিত কারণগুলির জন্য Search
উপর SearchStream
সুপারিশ করি৷
একক পৃষ্ঠার রিপোর্টের জন্য (10,000 সারির নিচে): দুটি পদ্ধতির মধ্যে কোনো উল্লেখযোগ্য পারফরম্যান্স পার্থক্য নেই।
একাধিক পৃষ্ঠা প্রতিবেদনের জন্য:
SearchStream
সাধারণত দ্রুততর হয় কারণ একাধিক রাউন্ডট্রিপ এড়ানো হয় এবং ডিস্ক ক্যাশে থেকে পড়া/লেখার কারণ কম।
হারের সীমা
উভয় পদ্ধতির জন্য দৈনিক সীমা মান API সীমা এবং কোটা মেনে চলে। ফলাফল পৃষ্ঠা বা স্ট্রিম করা যাই হোক না কেন একটি একক প্রশ্ন বা প্রতিবেদনকে একটি অপারেশন হিসাবে গণনা করা হয়।
স্ট্রিমিং উদাহরণ
জাভা
// Copyright 2022 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // https://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package sample; import com.beust.jcommander.Parameter; import com.google.ads.searchads360.v0.lib.SearchAds360Client; import com.google.ads.searchads360.v0.services.SearchAds360Row; import com.google.ads.searchads360.v0.services.SearchAds360ServiceClient; import com.google.ads.searchads360.v0.services.SearchSearchAds360StreamRequest; import com.google.ads.searchads360.v0.services.SearchSearchAds360StreamResponse; import com.google.api.gax.rpc.ServerStream; /** Get campaign details using SearchStream. */ public class GetCampaignsStream { private static class GetCampaignsStreamParams extends CodeSampleParams { @Parameter(names = "--customerId", required = true) private String customerId; @Parameter(names = "--loginCustomerId") private String loginCustomerId; } public static void main(String[] args) { GetCampaignsStreamParams params = new GetCampaignsStreamParams(); if (!params.parseArguments(args)) { // Optional: You may pass the loginCustomerId on the command line or specify a loginCustomerId // here (10 digits, no dashes). If neither are set, customerId will be used as // loginCustomerId. // params.loginCustomerId = Long.parseLong("INSERT_LOGIN_CUSTOMER_ID_HERE"); } final String loginCustomerId = params.loginCustomerId; final String customerId = params.customerId; try { // Creates a SearchAds360Client with the specified loginCustomerId. If there's // no loginCustomerId, customerId will be used instead. final SearchAds360Client searchAds360Client = SearchAds360Client.newBuilder() .setLoginCustomerId(loginCustomerId == null ? customerId : loginCustomerId) .fromPropertiesFile() .build(); // Creates the Search Ads 360 Service client. SearchAds360ServiceClient client = searchAds360Client.create(); new GetCampaignsStream().runExample(client, customerId); } catch (Exception exception) { System.err.printf("Failed with exception: %s%n", exception); exception.printStackTrace(); System.exit(1); } } private void runExample(SearchAds360ServiceClient searchAds360ServiceClient, String customerId) { // Creates a query that retrieves all campaigns under the customerId. String query = "SELECT campaign.name, campaign.id, campaign.status FROM campaign"; SearchSearchAds360StreamRequest request = SearchSearchAds360StreamRequest.newBuilder() .setCustomerId(customerId) .setQuery(query) .build(); // Issues a search stream request. ServerStream<SearchSearchAds360StreamResponse> stream = searchAds360ServiceClient.searchStreamCallable().call(request); for (SearchSearchAds360StreamResponse response : stream) { for (SearchAds360Row element : response.getResultsList()) { System.out.printf( "Campaign found with name '%s', ID %d, and status: %s.%n", element.getCampaign().getName(), element.getCampaign().getId(), element.getCampaign().getStatus()); } } } }
পাইথন
#!/usr/bin/env python # Copyright 2022 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Retrieves campaigns for a customer using a stream request.""" import argparse import traceback from google.ads.searchads360.v0.services.types.search_ads360_service import SearchSearchAds360StreamRequest from util_searchads360 import SearchAds360Client def main(client, customer_id) -> None: search_ads_360_service = client.get_service() query = """ SELECT campaign.name, campaign.id, campaign.status FROM campaign""" request = SearchSearchAds360StreamRequest() request.customer_id = customer_id request.query = query # Issues a search stream request. results = search_ads_360_service.search_stream(request=request) for response in results: for result in response.results: campaign = result.campaign print( f'campaign "{campaign.name}" has id {campaign.id} and status {campaign.status.name}' ) if __name__ == "__main__": # SearchAds360Client will read the search-ads-360.yaml configuration file in # the home directory if none is specified. search_ads_360_client = SearchAds360Client.load_from_file() parser = argparse.ArgumentParser( description=("Retrieves campaigns for a customer.")) # Arguments to provide to run the example. parser.add_argument( "-c", "--customer_id", type=str, required=True, help="The Search Ads 360 customer ID (10 digits, no dashes).", ) parser.add_argument( "-l", "--login_customer_id", type=str, required=False, help="The Search Ads 360 login customer ID (10 digits, no dashes).", ) args = parser.parse_args() search_ads_360_client.set_ids(args.customer_id, args.login_customer_id) try: main(search_ads_360_client, args.customer_id) except Exception: # pylint: disable=broad-except traceback.print_exc()