René's URL Explorer Experiment


Title: tests.system.test_session_api: test_transaction_execute_update_read_commit failed · Issue #999 · googleapis/python-spanner · GitHub

Open Graph Title: tests.system.test_session_api: test_transaction_execute_update_read_commit failed · Issue #999 · googleapis/python-spanner

X Title: tests.system.test_session_api: test_transaction_execute_update_read_commit failed · Issue #999 · googleapis/python-spanner

Description: Note: #959 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky. commit: 5d91a28 buildURL: Build Status, Sponge status: failed Test outputargs = (session: "projects/precise-truck-742/instances/googl...

Open Graph Description: Note: #959 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky. commit: 5d91a28 buildURL: Build Status, Sponge status: failed Test outputargs = (session: "pr...

X Description: Note: #959 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky. commit: 5d91a28 buildURL: Build Status, Sponge status: failed Test outputargs = (session:...

Opengraph URL: https://github.com/googleapis/python-spanner/issues/999

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"tests.system.test_session_api: test_transaction_execute_update_read_commit failed","articleBody":"Note: #959 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky.\n\n----\n\ncommit: 5d91a2874e056d73b32526c40fdbc942d602efc5\nbuildURL: [Build Status](https://source.cloud.google.com/results/invocations/53165163-edb8-4e57-b33e-d670fefdc264), [Sponge](http://sponge2/53165163-edb8-4e57-b33e-d670fefdc264)\nstatus: failed\n\u003cdetails\u003e\u003csummary\u003eTest output\u003c/summary\u003e\u003cbr\u003e\u003cpre\u003eargs = (session: \"projects/precise-truck-742/instances/google-cloud-1691643863048/databases/test_sessions_1691644077777/sessi...8ExdWveZCKww9sP6K59fGQqV_Q\"\ntransaction_id: \"AH67Lq5fE94ayY0EETbrFr0sAVy6J6VsWYfcjRCxzHTapE2RTA\"\nrequest_options {\n}\n,)\nkwargs = {'metadata': [('google-cloud-resource-prefix', 'projects/precise-truck-742/instances/google-cloud-1691643863048/databa...K59fGQqV_Q'), ('x-goog-api-client', 'gl-python/3.8.13 grpc/1.57.0rc1 gax/2.12.0.dev0 gccl/3.40.0')], 'timeout': 3600.0}\n\n    @functools.wraps(callable_)\n    def error_remapped_callable(*args, **kwargs):\n        try:\n\u003e           return callable_(*args, **kwargs)\n\n.nox/prerelease_deps-3-8-database_dialect-postgresql/lib/python3.8/site-packages/google/api_core/grpc_helpers.py:72: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n.nox/prerelease_deps-3-8-database_dialect-postgresql/lib/python3.8/site-packages/grpc/_channel.py:1161: in __call__\n    return _end_unary_response_blocking(state, call, False, None)\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nstate = \u003cgrpc._channel._RPCState object at 0x7f4a877b76a0\u003e\ncall = \u003cgrpc._cython.cygrpc.SegregatedCall object at 0x7f4a877b9500\u003e\nwith_call = False, deadline = None\n\n    def _end_unary_response_blocking(\n        state: _RPCState,\n        call: cygrpc.SegregatedCall,\n        with_call: bool,\n        deadline: Optional[float],\n    ) -\u003e Union[ResponseType, Tuple[ResponseType, grpc.Call]]:\n        if state.code is grpc.StatusCode.OK:\n            if with_call:\n                rendezvous = _MultiThreadedRendezvous(state, call, None, deadline)\n                return state.response, rendezvous\n            else:\n                return state.response\n        else:\n\u003e           raise _InactiveRpcError(state)  # pytype: disable=not-instantiable\nE           grpc._channel._InactiveRpcError: \u003c_InactiveRpcError of RPC that terminated with:\nE           \tstatus = StatusCode.ABORTED\nE           \tdetails = \"Transaction was aborted.\"\nE           \tdebug_error_string = \"UNKNOWN:Error received from peer ipv4:74.125.197.95:443 {grpc_message:\"Transaction was aborted.\", grpc_status:10, created_time:\"2023-08-10T05:08:35.45655307+00:00\"}\"\nE           \u003e\n\n.nox/prerelease_deps-3-8-database_dialect-postgresql/lib/python3.8/site-packages/grpc/_channel.py:1004: _InactiveRpcError\n\nThe above exception was the direct cause of the following exception:\n\nsessions_database = \u003cgoogle.cloud.spanner_v1.database.Database object at 0x7f4a877dcc70\u003e\nsessions_to_delete = [\u003cgoogle.cloud.spanner_v1.session.Session object at 0x7f4a877ae640\u003e]\n\n    @_helpers.retry_mabye_conflict\n    def test_transaction_execute_update_read_commit(sessions_database, sessions_to_delete):\n        # [START spanner_test_dml_read_your_writes]\n        sd = _sample_data\n    \n        session = sessions_database.session()\n        session.create()\n        sessions_to_delete.append(session)\n    \n        with session.batch() as batch:\n            batch.delete(sd.TABLE, sd.ALL)\n    \n        with session.transaction() as transaction:\n            rows = list(transaction.read(sd.TABLE, sd.COLUMNS, sd.ALL))\n            assert rows == []\n    \n            for insert_statement in _generate_insert_statements():\n                row_count = transaction.execute_update(insert_statement)\n                assert row_count == 1\n    \n            # Rows inserted via DML *can* be read before commit.\n            during_rows = list(transaction.read(sd.TABLE, sd.COLUMNS, sd.ALL))\n\u003e           sd._check_rows_data(during_rows)\n\ntests/system/test_session_api.py:747: \n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \ngoogle/cloud/spanner_v1/transaction.py:528: in __exit__\n    self.commit()\ngoogle/cloud/spanner_v1/transaction.py:239: in commit\n    response = _retry(\ngoogle/cloud/spanner_v1/_helpers.py:334: in _retry\n    raise exc\ngoogle/cloud/spanner_v1/_helpers.py:320: in _retry\n    return func()\ngoogle/cloud/spanner_v1/services/spanner/client.py:1805: in commit\n    response = rpc(\n.nox/prerelease_deps-3-8-database_dialect-postgresql/lib/python3.8/site-packages/google/api_core/gapic_v1/method.py:113: in __call__\n    return wrapped_func(*args, **kwargs)\n.nox/prerelease_deps-3-8-database_dialect-postgresql/lib/python3.8/site-packages/google/api_core/retry.py:365: in retry_wrapped_func\n    return retry_func(\n.nox/prerelease_deps-3-8-database_dialect-postgresql/lib/python3.8/site-packages/google/api_core/retry.py:192: in retry_target\n    return target()\n.nox/prerelease_deps-3-8-database_dialect-postgresql/lib/python3.8/site-packages/google/api_core/timeout.py:120: in func_with_timeout\n    return func(*args, **kwargs)\n_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \n\nargs = (session: \"projects/precise-truck-742/instances/google-cloud-1691643863048/databases/test_sessions_1691644077777/sessi...8ExdWveZCKww9sP6K59fGQqV_Q\"\ntransaction_id: \"AH67Lq5fE94ayY0EETbrFr0sAVy6J6VsWYfcjRCxzHTapE2RTA\"\nrequest_options {\n}\n,)\nkwargs = {'metadata': [('google-cloud-resource-prefix', 'projects/precise-truck-742/instances/google-cloud-1691643863048/databa...K59fGQqV_Q'), ('x-goog-api-client', 'gl-python/3.8.13 grpc/1.57.0rc1 gax/2.12.0.dev0 gccl/3.40.0')], 'timeout': 3600.0}\n\n    @functools.wraps(callable_)\n    def error_remapped_callable(*args, **kwargs):\n        try:\n            return callable_(*args, **kwargs)\n        except grpc.RpcError as exc:\n\u003e           raise exceptions.from_grpc_error(exc) from exc\nE           google.api_core.exceptions.Aborted: 409 Transaction was aborted. [retry_delay {\nE             nanos: 27868319\nE           }\nE           ]\n\n.nox/prerelease_deps-3-8-database_dialect-postgresql/lib/python3.8/site-packages/google/api_core/grpc_helpers.py:74: Aborted\u003c/pre\u003e\u003c/details\u003e","author":{"url":"https://github.com/flaky-bot[bot]","@type":"Person","name":"flaky-bot[bot]"},"datePublished":"2023-08-10T05:09:44.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/999/python-spanner/issues/999"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:3e57c4f4-af74-e72b-aecb-608b4a3145ef
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idAA5C:FB1CA:3CD3B3:53B685:6A4DA02C
html-safe-nonceb0cf78ab0af96f655f3eeba8afb4e9fd43aeffc9a2db326837382df947e34ebd
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBQTVDOkZCMUNBOjNDRDNCMzo1M0I2ODU6NkE0REEwMkMiLCJ2aXNpdG9yX2lkIjoiNTk2Njk0MjgwNTkzODQyMjIwIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac7d0f20f2a2ac3277a805f40d19022b9b8b8454df1a501f24723da5cdfb4dd39b
hovercard-subject-tagissue:1844424902
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-spanner/999/issue_layout
twitter:imagehttps://opengraph.githubassets.com/3049bfaa8c8f2ef822f6bdd8a0229b1886b339fb079b5f5bb807a195e4e5b1e2/googleapis/python-spanner/issues/999
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/3049bfaa8c8f2ef822f6bdd8a0229b1886b339fb079b5f5bb807a195e4e5b1e2/googleapis/python-spanner/issues/999
og:image:altNote: #959 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky. commit: 5d91a28 buildURL: Build Status, Sponge status: failed Test outputargs = (session: "pr...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameflaky-bot[bot]
hostnamegithub.com
expected-hostnamegithub.com
None06b8a6144231bf3a234f1c2e9993861e07ce98a905912b114aa386c2d7e84b33
turbo-cache-controlno-preview
go-importgithub.com/googleapis/python-spanner git https://github.com/googleapis/python-spanner.git
octolytics-dimension-user_id16785467
octolytics-dimension-user_logingoogleapis
octolytics-dimension-repository_id226992630
octolytics-dimension-repository_nwogoogleapis/python-spanner
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id226992630
octolytics-dimension-repository_network_root_nwogoogleapis/python-spanner
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
release7f13faa65cccc9b729d674da83335d5dcfdfd193
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/googleapis/python-spanner/issues/999#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fgoogleapis%2Fpython-spanner%2Fissues%2F999
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-spanner%2Fissues%2F999
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-spanner
Reloadhttps://github.com/googleapis/python-spanner/issues/999
Reloadhttps://github.com/googleapis/python-spanner/issues/999
Reloadhttps://github.com/googleapis/python-spanner/issues/999
Please reload this pagehttps://github.com/googleapis/python-spanner/issues/999
googleapis https://github.com/googleapis
python-spannerhttps://github.com/googleapis/python-spanner
Notifications https://github.com/login?return_to=%2Fgoogleapis%2Fpython-spanner
Fork 103 https://github.com/login?return_to=%2Fgoogleapis%2Fpython-spanner
Star 155 https://github.com/login?return_to=%2Fgoogleapis%2Fpython-spanner
Code https://github.com/googleapis/python-spanner
Issues 0 https://github.com/googleapis/python-spanner/issues
Pull requests 0 https://github.com/googleapis/python-spanner/pulls
Actions https://github.com/googleapis/python-spanner/actions
Projects https://github.com/googleapis/python-spanner/projects
Security and quality 0 https://github.com/googleapis/python-spanner/security
Insights https://github.com/googleapis/python-spanner/pulse
Code https://github.com/googleapis/python-spanner
Issues https://github.com/googleapis/python-spanner/issues
Pull requests https://github.com/googleapis/python-spanner/pulls
Actions https://github.com/googleapis/python-spanner/actions
Projects https://github.com/googleapis/python-spanner/projects
Security and quality https://github.com/googleapis/python-spanner/security
Insights https://github.com/googleapis/python-spanner/pulse
tests.system.test_session_api: test_transaction_execute_update_read_commit failedhttps://github.com/googleapis/python-spanner/issues/999#top
api: spannerIssues related to the googleapis/python-spanner API.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22api%3A%20spanner%22
flakybot: flakyTells the Flaky Bot not to close or comment on this issue.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22flakybot%3A%20flaky%22
flakybot: issueAn issue filed by the Flaky Bot. Should not be added manually.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22flakybot%3A%20issue%22
priority: p1Important issue which blocks shipping the next release. Will be fixed prior to next release.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22priority%3A%20p1%22
type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22type%3A%20bug%22
https://github.com/apps/flaky-bot
flaky-bothttps://github.com/apps/flaky-bot
on Aug 10, 2023https://github.com/googleapis/python-spanner/issues/999#issue-1844424902
#959https://github.com/googleapis/python-spanner/issues/959
5d91a28https://github.com/googleapis/python-spanner/commit/5d91a2874e056d73b32526c40fdbc942d602efc5
Build Statushttps://source.cloud.google.com/results/invocations/53165163-edb8-4e57-b33e-d670fefdc264
Spongehttp://sponge2/53165163-edb8-4e57-b33e-d670fefdc264
api: spannerIssues related to the googleapis/python-spanner API.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22api%3A%20spanner%22
flakybot: flakyTells the Flaky Bot not to close or comment on this issue.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22flakybot%3A%20flaky%22
flakybot: issueAn issue filed by the Flaky Bot. Should not be added manually.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22flakybot%3A%20issue%22
priority: p1Important issue which blocks shipping the next release. Will be fixed prior to next release.https://github.com/googleapis/python-spanner/issues?q=state%3Aopen%20label%3A%22priority%3A%20p1%22
type: bugError or flaw in code with unintended results or allowing sub-optimal usage patterns.https://github.com/googleapis/python-spanner/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.