René's URL Explorer Experiment


Title: Major refactoring of Timeout logic introduced incompatibility about RPC Timeout · Issue #654 · googleapis/python-api-core · GitHub

Open Graph Title: Major refactoring of Timeout logic introduced incompatibility about RPC Timeout · Issue #654 · googleapis/python-api-core

X Title: Major refactoring of Timeout logic introduced incompatibility about RPC Timeout · Issue #654 · googleapis/python-api-core

Description: Hello, I'm using the python-pubsub library and noticed that the timeout behavior is strange. After some investigation, I believe it is due to an incompatibility introduced by #462. The default retry and timeout settings in the python-pub...

Open Graph Description: Hello, I'm using the python-pubsub library and noticed that the timeout behavior is strange. After some investigation, I believe it is due to an incompatibility introduced by #462. The default retr...

X Description: Hello, I'm using the python-pubsub library and noticed that the timeout behavior is strange. After some investigation, I believe it is due to an incompatibility introduced by #462. The default ...

Opengraph URL: https://github.com/googleapis/python-api-core/issues/654

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Major refactoring of Timeout logic introduced incompatibility about RPC Timeout","articleBody":"Hello,\r\n\r\nI'm using the python-pubsub library and noticed that the timeout behavior is strange. After some investigation, I believe it is due to an incompatibility introduced by https://github.com/googleapis/python-api-core/pull/462.\r\n\r\nThe default retry and timeout settings in the python-pubsub library are as follows:\r\nhttps://github.com/googleapis/python-pubsub/blob/v2.21.1/google/pubsub_v1/services/publisher/transports/base.py#L166-L181\r\n```python\r\ndefault_retry=retries.Retry(\r\n    initial=0.1,\r\n    maximum=60.0,\r\n    multiplier=4,\r\n    predicate=retries.if_exception_type(\r\n        core_exceptions.Aborted,\r\n        core_exceptions.Cancelled,\r\n        core_exceptions.DeadlineExceeded,\r\n        core_exceptions.InternalServerError,\r\n        core_exceptions.ResourceExhausted,\r\n        core_exceptions.ServiceUnavailable,\r\n        core_exceptions.Unknown,\r\n    ),\r\n    deadline=600.0,\r\n),\r\ndefault_timeout=60.0,\r\n```\r\n\r\nBefore #462 was introduced, `default_timeout=60.0` was interpreted as `default_timeout=ConstantTimeout(60)`.\r\nThis should be intended to set the RPC Timeout, i.e., the timeout for a single RPC call not including retries, to 60 seconds.\r\nHowever, after the introduction of #462, this line is now interpreted as `default_timeout=TimeToDeadlineTimeout(60)`.\r\nSince TimeToDeadlineTimeout determines the total timeout time across retries rather than determining the RPC Timeout, I don't believe that it can be used as a direct replacement for ConstantTimeout.\r\n\r\nThe strange behavior I mentioned at the beginning came from this: when the server did not respond in the first 60 seconds, the remaining timeout for RPC call was 0 seconds, and the gRPC client returned a 504 Deadline Exceeded on every retry.\r\n\r\nTimeToDeadlineTimeout by itself is useful, but given the original intent, I think it is necessary to specify the RPC Timeout as well as the total timeout.\r\n\r\nFinally, in my project, I implemented the following ClampMaxTimeout so that the RPC Timeout can be set while respecting the behavior of TimeToDeadlineTimeout.\r\n\r\n```python\r\nRPC_TIMEOUT_SECS   = 60.0\r\nTOTAL_TIMEOUT_SECS = 600.0\r\n...\r\npublisher_options=pubsub_v1.types.PublisherOptions(\r\n    timeout=compose(\r\n        api_core.timeout.TimeToDeadlineTimeout(TOTAL_TIMEOUT_SECS),\r\n        ClampMaxTimeout(RPC_TIMEOUT_SECS),\r\n    ),\r\n    ...\r\n...\r\nclass ClampMaxTimeout(object):\r\n    def __init__(self, max_timeout: float):\r\n        self._max_timeout = max_timeout\r\n\r\n    def __call__(self, func: Callable) -\u003e Callable:\r\n        @functools.wraps(func)\r\n        def func_with_max_timeout(*args, **kwargs):\r\n            if kwargs.get(\"timeout\") is not None:\r\n                kwargs[\"timeout\"] = min(kwargs[\"timeout\"], self._max_timeout)\r\n            else:\r\n                kwargs[\"timeout\"] = self._max_timeout\r\n            return func(*args, **kwargs)\r\n\r\n        return func_with_max_timeout\r\n\r\n    def __str__(self) -\u003e str:\r\n        return \"\u003cClampMaxTimeout max_timeout={:.1f}\u003e\".format(self._max_timeout)\r\n\r\ndef compose(f: Callable, g: Callable) -\u003e Callable:\r\n    return lambda x: f(g(x))\r\n```\r\n\r\nTo keep backward compatibility, I believe it is desirable to introduce a similar process in python-api-core.\r\n","author":{"url":"https://github.com/yoshizow","@type":"Person","name":"yoshizow"},"datePublished":"2024-05-10T06:52:13.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/654/python-api-core/issues/654"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:5a5278bb-0ca3-4f25-3d25-dbe6e289463f
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA5B2:62240:184E2EF:2359047:6A4E554F
html-safe-noncea81cfe30baa145f9cecdd6238bdb217e852fc6493a0a545a410f534f7bd35647
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBNUIyOjYyMjQwOjE4NEUyRUY6MjM1OTA0Nzo2QTRFNTU0RiIsInZpc2l0b3JfaWQiOiIzMjc2MzczMjc5MDY1OTIwODQ3IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac643091f2c314c5732b38a147d1f5df9db8f1c3402bd18a390b948477ae6e4b34
hovercard-subject-tagissue:2289068997
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/googleapis/python-api-core/654/issue_layout
twitter:imagehttps://opengraph.githubassets.com/0addc65f7f14831b37dac8cdf66c55ce1b9c51fcd27ceaa5ef2944031fdd5f1a/googleapis/python-api-core/issues/654
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/0addc65f7f14831b37dac8cdf66c55ce1b9c51fcd27ceaa5ef2944031fdd5f1a/googleapis/python-api-core/issues/654
og:image:altHello, I'm using the python-pubsub library and noticed that the timeout behavior is strange. After some investigation, I believe it is due to an incompatibility introduced by #462. The default retr...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameyoshizow
hostnamegithub.com
expected-hostnamegithub.com
None030096ee0db095447bfe77409d33bfac127ca7128299c58deef27c52eaa1b1f0
turbo-cache-controlno-preview
go-importgithub.com/googleapis/python-api-core git https://github.com/googleapis/python-api-core.git
octolytics-dimension-user_id16785467
octolytics-dimension-user_logingoogleapis
octolytics-dimension-repository_id226992456
octolytics-dimension-repository_nwogoogleapis/python-api-core
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id226992456
octolytics-dimension-repository_network_root_nwogoogleapis/python-api-core
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasef344f1eab54fc7dfc02d0d018cda7e158c3db65c
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/googleapis/python-api-core/issues/654#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgoogleapis%2Fpython-api-core%2Fissues%2F654
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgoogleapis%2Fpython-api-core%2Fissues%2F654
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=googleapis%2Fpython-api-core
Reloadhttps://github.com/googleapis/python-api-core/issues/654
Reloadhttps://github.com/googleapis/python-api-core/issues/654
Reloadhttps://github.com/googleapis/python-api-core/issues/654
Please reload this pagehttps://github.com/googleapis/python-api-core/issues/654
googleapis https://github.com/googleapis
python-api-corehttps://github.com/googleapis/python-api-core
Notifications https://github.com/login?return_to=%2Fgoogleapis%2Fpython-api-core
Fork 97 https://github.com/login?return_to=%2Fgoogleapis%2Fpython-api-core
Star 144 https://github.com/login?return_to=%2Fgoogleapis%2Fpython-api-core
Code https://github.com/googleapis/python-api-core
Issues 0 https://github.com/googleapis/python-api-core/issues
Pull requests 0 https://github.com/googleapis/python-api-core/pulls
Actions https://github.com/googleapis/python-api-core/actions
Projects https://github.com/googleapis/python-api-core/projects
Security and quality 0 https://github.com/googleapis/python-api-core/security
Insights https://github.com/googleapis/python-api-core/pulse
Code https://github.com/googleapis/python-api-core
Issues https://github.com/googleapis/python-api-core/issues
Pull requests https://github.com/googleapis/python-api-core/pulls
Actions https://github.com/googleapis/python-api-core/actions
Projects https://github.com/googleapis/python-api-core/projects
Security and quality https://github.com/googleapis/python-api-core/security
Insights https://github.com/googleapis/python-api-core/pulse
#776https://github.com/googleapis/python-api-core/pull/776
Major refactoring of Timeout logic introduced incompatibility about RPC Timeouthttps://github.com/googleapis/python-api-core/issues/654#top
#776https://github.com/googleapis/python-api-core/pull/776
https://github.com/parthea
priority: p2Moderately-important priority. Fix may not be included in next release.https://github.com/googleapis/python-api-core/issues?q=state%3Aopen%20label%3A%22priority%3A%20p2%22
type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.https://github.com/googleapis/python-api-core/issues?q=state%3Aopen%20label%3A%22type%3A%20bug%22
https://github.com/yoshizow
yoshizowhttps://github.com/yoshizow
on May 10, 2024https://github.com/googleapis/python-api-core/issues/654#issue-2289068997
#462https://github.com/googleapis/python-api-core/pull/462
https://github.com/googleapis/python-pubsub/blob/v2.21.1/google/pubsub_v1/services/publisher/transports/base.py#L166-L181https://github.com/googleapis/python-pubsub/blob/v2.21.1/google/pubsub_v1/services/publisher/transports/base.py#L166-L181
#462https://github.com/googleapis/python-api-core/pull/462
#462https://github.com/googleapis/python-api-core/pull/462
partheahttps://github.com/parthea
priority: p2Moderately-important priority. Fix may not be included in next release.https://github.com/googleapis/python-api-core/issues?q=state%3Aopen%20label%3A%22priority%3A%20p2%22
type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.https://github.com/googleapis/python-api-core/issues?q=state%3Aopen%20label%3A%22type%3A%20bug%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.