টাইমআউট

পাইথনের জন্য ক্লায়েন্ট লাইব্রেরি কোনো ডিফল্ট টাইমআউট নির্দিষ্ট করে না, বা gRPC ট্রান্সপোর্ট লেয়ারে কোনো ডিফল্ট নির্দিষ্ট করা হয় না। এর মানে হল, ডিফল্টরূপে, পাইথনের জন্য ক্লায়েন্ট লাইব্রেরি সার্ভারে টাইমআউট আচরণ সম্পূর্ণরূপে অর্পণ করে।

এটি বেশিরভাগ ব্যবহারের ক্ষেত্রে পর্যাপ্ত; যাইহোক, যদি ক্লায়েন্ট-সাইড টাইমআউট নির্দিষ্ট করার প্রয়োজন হয়, পাইথনের ক্লায়েন্ট লাইব্রেরি স্ট্রিমিং এবং ইউনারি কল উভয়ের জন্য টাইমআউট ওভাররাইড সমর্থন করে।

আপনি টাইমআউট 2 ঘন্টা বা তার বেশি সেট করতে পারেন, কিন্তু API এখনও অত্যন্ত দীর্ঘমেয়াদী অনুরোধের সময় শেষ করতে পারে এবং একটি DEADLINE_EXCEEDED ত্রুটি ফেরত দিতে পারে৷ যদি এটি একটি সমস্যা হয়ে ওঠে, আপনি ক্যোয়ারীটি বিভক্ত করতে পারেন এবং সমান্তরালভাবে অংশগুলি চালাতে পারেন; এটি এমন পরিস্থিতি এড়ায় যেখানে একটি দীর্ঘস্থায়ী অনুরোধ ব্যর্থ হয় এবং পুনরুদ্ধারের একমাত্র উপায় হল অনুরোধটি পুনরায় চালু করা।

স্ট্রিমিং কল টাইমআউট

একমাত্র Google Ads API পরিষেবা পদ্ধতি যা এই ধরনের কল ব্যবহার করে তা হল GoogleAdsService.SearchStream

ডিফল্ট টাইমআউট ওভাররাইড করতে, পদ্ধতিতে কল করার সময় আপনাকে একটি অতিরিক্ত প্যারামিটার যোগ করতে হবে:

def make_server_streaming_call(client, customer_id):
    """Makes a server streaming call using a custom client timeout.

    Args:
        client: An initialized GoogleAds client.
        customer_id: The str Google Ads customer ID.
    """
    ga_service = client.get_service("GoogleAdsService")
    campaign_ids = []

    try:
        search_request = client.get_type("SearchGoogleAdsStreamRequest")
        search_request.customer_id = customer_id
        search_request.query = _QUERY
        stream = ga_service.search_stream(
            request=search_request,
            # When making any request, an optional "timeout" parameter can be
            # provided to specify a client-side response deadline in seconds.
            # If not set, then no timeout will be enforced by the client and
            # the channel will remain open until the response is completed or
            # severed, either manually or by the server.
            timeout=_CLIENT_TIMEOUT_SECONDS,
        )

        for batch in stream:
            for row in batch.results:
                campaign_ids.append(row.campaign.id)

        print("The server streaming call completed before the timeout.")
    except DeadlineExceeded as ex:
        print("The server streaming call did not complete before the timeout.")
        sys.exit(1)
    except GoogleAdsException as ex:
        print(
            f"Request with ID '{ex.request_id}' failed with status "
            f"'{ex.error.code().name}' and includes the following errors:"
        )
        for error in ex.failure.errors:
            print(f"\tError with message '{error.message}'.")
            if error.location:
                for field_path_element in error.location.field_path_elements:
                    print(f"\t\tOn field: {field_path_element.field_name}")
        sys.exit(1)

    print(f"Total # of campaign IDs retrieved: {len(campaign_ids)}")
      

ইউনারি কল টাইমআউট

Google Ads API পরিষেবার বেশিরভাগ পদ্ধতিই ইউনারী কল ব্যবহার করে; সাধারণ উদাহরণ হল GoogleAdsService.Search এবং GoogleAdsService.Mutate

ডিফল্ট টাইমআউট ওভাররাইড করতে, পদ্ধতিতে কল করার সময় আপনাকে একটি অতিরিক্ত প্যারামিটার যোগ করতে হবে:

def make_unary_call(client, customer_id):
    """Makes a unary call using a custom client timeout.

    Args:
        client: An initialized GoogleAds client.
        customer_id: The Google Ads customer ID.
    """
    ga_service = client.get_service("GoogleAdsService")
    campaign_ids = []

    try:
        search_request = client.get_type("SearchGoogleAdsRequest")
        search_request.customer_id = customer_id
        search_request.query = _QUERY
        results = ga_service.search(
            request=search_request,
            # When making any request, an optional "retry" parameter can be
            # provided to specify its retry behavior. Complete information about
            # these settings can be found here:
            # https://googleapis.dev/python/google-api-core/latest/retry.html
            retry=Retry(
                # Sets the maximum accumulative timeout of the call; it
                # includes all tries.
                deadline=_CLIENT_TIMEOUT_SECONDS,
                # Sets the timeout that is used for the first try to one tenth
                # of the maximum accumulative timeout of the call.
                # Note: This overrides the default value and can lead to
                # RequestError.RPC_DEADLINE_TOO_SHORT errors when too small. We
                # recommend changing the value only if necessary.
                initial=_CLIENT_TIMEOUT_SECONDS / 10,
                # Sets the maximum timeout that can be used for any given try
                # to one fifth of the maximum accumulative timeout of the call
                # (two times greater than the timeout that is needed for the
                # first try).
                maximum=_CLIENT_TIMEOUT_SECONDS / 5,
            ),
        )

        for row in results:
            campaign_ids.append(row.campaign.id)

        print("The unary call completed before the timeout.")
    except DeadlineExceeded as ex:
        print("The unary call did not complete before the timeout.")
        sys.exit(1)
    except GoogleAdsException as ex:
        print(
            f"Request with ID '{ex.request_id}' failed with status "
            f"'{ex.error.code().name}' and includes the following errors:"
        )
        for error in ex.failure.errors:
            print(f"\tError with message '{error.message}'.")
            if error.location:
                for field_path_element in error.location.field_path_elements:
                    print(f"\t\tOn field: {field_path_element.field_name}")
        sys.exit(1)

    print(f"Total # of campaign IDs retrieved: {len(campaign_ids)}")