Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reapply 8644 on 9260 #9313

Open
wants to merge 11 commits into
base: yy-beat-itest-optimize
Choose a base branch
from

Conversation

aakselrod
Copy link
Contributor

@aakselrod aakselrod commented Nov 27, 2024

Rebase of #9242 on #9260. Now includes btcsuite/btcwallet#967.

Copy link
Contributor

coderabbitai bot commented Nov 27, 2024

Important

Review skipped

Auto reviews are limited to specific labels.

🏷️ Labels to auto review (1)
  • llm-review

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR. (Experiment)
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@aakselrod aakselrod mentioned this pull request Nov 27, 2024
8 tasks
@aakselrod aakselrod force-pushed the reapply-8644-on-9260 branch 2 times, most recently from 81e4188 to 9452cf8 Compare November 27, 2024 18:06
@aakselrod
Copy link
Contributor Author

Looks like a postgres itest failed. Looking into it. Doesn't appear to be related to the btcwallet deadlock fixed recently, so that's good!

@saubyk saubyk requested review from bhandras and Roasbeef November 27, 2024 20:51
@saubyk saubyk added this to the v0.19.0 milestone Nov 27, 2024
@aakselrod
Copy link
Contributor Author

aakselrod commented Nov 27, 2024

It looks like the shutdown came too early and the sweeper in monitorFeeBumpResult didn't get time to process the result of the sweep broadcast (exited at sweeper.go:1665). I don't think that's related to the SQL DB?

This seems to happen rarely enough that I can't seem to reproduce it locally.

Copy link
Collaborator

@bhandras bhandras left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks really good! I think we just need some comments and perhaps some direct coverage for the batch package, then it's good to go!

// sqldb retry and still re-execute the
// failing request individually.
dbErr := sqldb.MapSQLError(err)
if !sqldb.IsSerializationError(dbErr) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: It'd be nice to cover batch with a simple unit test to make sure the serialization errors are correctly handled and we don't regress later.

channeldb/graph.go Outdated Show resolved Hide resolved
channeldb/graph.go Outdated Show resolved Hide resolved
sqldb/sqlerrors.go Show resolved Hide resolved
Makefile Outdated
# each can run concurrently. Note that many of the settings here are
# specifically for integration testing and are not fit for running
# production nodes.
docker run --name lnd-postgres -e POSTGRES_PASSWORD=postgres -p 6432:5432 -d postgres:13-alpine -N 1500 -c max_pred_locks_per_transaction=1024 -c max_locks_per_transaction=128 -c jit=off -c work_mem=8MB -c checkpoint_timeout=10min -c enable_seqscan=off
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does settings work_mem=8MB and jit=off add to the test case stability? If yes could you please add some comments why these were changed (along with other params)?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I got those settings from @djkazic's suggestions. I think it's likely they're unnecessary for the itests because the databases they're working with are pretty small. Will try running without them to see how it goes, and add comments for the rest.

Copy link
Contributor

@djkazic djkazic Nov 28, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, for context those are the settings I'm using in my production postgres backed LND. DB size is ~5GB. jit=off should help in all scenarios as JIT'ing mostly benefits long-running queries whereas postgres_kvdb tends to spawn many small and fast-executing queries. work_mem=8MB on the other hand benefits larger DBs as it gives postgres more breathing room for each individual query to do sorts etc.

@aakselrod aakselrod force-pushed the reapply-8644-on-9260 branch from 9452cf8 to a94aa1c Compare November 27, 2024 23:34
@aakselrod
Copy link
Contributor Author

Updated to address comments, add release notes, and do a CI run. I'm still running this locally to see if the new DB settings give me any trouble.

@aakselrod
Copy link
Contributor Author

aakselrod commented Nov 28, 2024

Got a postgres unit test failure. Looking into it...

Error is here. Looks similar to errors (chain notification-related) that happened on both postgres and sqlite unit test runs on #9260, which doesn't have parallel DB transactions re-enabled.

I believe this is actually related to a flake in chainntnfs where a certain series of events makes the notifier attempt to send one more event than the (unread) channel has room for. The easiest fix is to add 2 to the channel allocation here, which has eliminated similar errors from all of our (Lightspark) CI runs in our private fork. This is in lieu of actually tracking down the flake further and fixing it "properly." I'll push it as soon as this CI run is complete.

The updated DB settings seem to be working OK locally on my machine as well.

@yyforyongyu
Copy link
Member

I believe this is actually related to a flake in chainntnfs where a certain series of events makes the notifier attempt to send one more event than the (unread) channel has room for.

Thanks a lot for digging into the unit test flake! That certainly was an easy way to fix and was originally used in #9258. Then I realized there's another place we need the dedup check which was fixed in 4632044. Since this PR is based on #9260 and that PR has this commit in its upstream, I'd expect it to be fixed properly there but it seems not? The other related fix is #9309 which fixed another flake.

Moving forward, I think we can focus on getting the postgres-related merged, then open new PRs to fix the unit test flakes.

@aakselrod
Copy link
Contributor Author

Moving forward, I think we can focus on getting the postgres-related merged, then open new PRs to fix the unit test flakes.

I'm off until Monday but will remove the latest commit then. Thanks!

@aakselrod aakselrod force-pushed the reapply-8644-on-9260 branch from a94aa1c to fb50cec Compare December 2, 2024 21:21
@aakselrod
Copy link
Contributor Author

I tried to take off the latest commit and force-push but GitHub got stuck on processing latest update so I rearranged the order of the remaining commits a little and force-pushed again.

@aakselrod
Copy link
Contributor Author

aakselrod commented Dec 2, 2024

The only test that failed looks irrelevant to the DB (protofsm unit-race), woohoo! We did get some coverage reductions, but the workflow isn't tracking coverage with itests that use the postgres backend. Maybe we should turn it on?

@yyforyongyu yyforyongyu force-pushed the yy-beat-itest-optimize branch 9 times, most recently from 5811026 to a0cefe4 Compare December 5, 2024 15:12
@yyforyongyu
Copy link
Member

yyforyongyu commented Dec 5, 2024

Could you do a rebase on yy-beat-itest-optimize? I made some updates there (mostly just rebase on master), and, it now almost always fails at the postgres-related itests. I also port this PR on top of it here, and the postgres-related itests are now passing. Think we just need to do a rebase and show other reviewers that this PR fixes the related itests. Once passing we can then merge #9242.

@aakselrod
Copy link
Contributor Author

Yep, I'll rebase this one, and then backport #9242/rebase it on current master. Thanks!

@aakselrod aakselrod force-pushed the reapply-8644-on-9260 branch from fb50cec to 0755e15 Compare December 5, 2024 23:08
@aakselrod
Copy link
Contributor Author

I've rebased this PR. Once CI runs, I'll backport/rebase #9242 to get it ready for merge. Thanks!

@aakselrod
Copy link
Contributor Author

The cross compilation test failed due to lack of disk space, which is also happening on #9260 CI runs. Looking into the postgres itest that failed.

@aakselrod
Copy link
Contributor Author

aakselrod commented Dec 6, 2024

In the itest that failed, it looks like maybe the funding manager is deadlocked. Going to run flakehunter locally to see if I can reproduce and get a goroutine dump from the node that deadlocked (Dave in this case, I think). Looking at just the logs without a goroutine dump, it looks like the underlying deadlock might be in chainntnfs/txnotifier.go again, but I'll know more if I see a result from flakehunter.

@yyforyongyu
Copy link
Member

Also breifly looked at the logs, think the below 90s is weird,

From Bob's log,

2024-12-05 23:47:37.243 [DBG] RPCS interceptor.go:775: [/lnrpc.Lightning/GetInfo] requested
2024-12-05 23:47:55.906 [DBG] HLCK healthcheck.go:330: Health check: chain backend invoking success callback
2024-12-05 23:48:36.841 [INF] GRPH builder.go:915: Processed channels=3 updates=5 nodes=0 in last 1m40.890821807s
2024-12-05 23:48:55.906 [DBG] HLCK healthcheck.go:330: Health check: chain backend invoking success callback

From Carol's log,

2024-12-05 23:47:37.481 [DBG] RPCS interceptor.go:775: [/lnrpc.Lightning/GetInfo] requested
2024-12-05 23:48:04.463 [DBG] HLCK healthcheck.go:330: Health check: chain backend invoking success callback
2024-12-05 23:48:36.865 [INF] GRPH builder.go:915: Processed channels=3 updates=6 nodes=0 in last 1m32.368310393s
2024-12-05 23:49:04.462 [DBG] HLCK healthcheck.go:330: Health check: chain backend invoking success callback

From Eve's log,

2024-12-05 23:47:37.715 [DBG] RPCS interceptor.go:775: [/lnrpc.Lightning/GetInfo] requested
2024-12-05 23:48:07.173 [ERR] NANN chan_status_manager.go:519: Unable to retrieve chan status for Channel(096341c34446f64bcac7215be98c78ab5a43f0ab3858c8da102e9681808b31d6:0): edge not found: op=096341c34446f64bcac7215be98c78ab5a43f0ab3858c8da102e9681808b31d6:0
2024-12-05 23:48:11.212 [DBG] HLCK healthcheck.go:330: Health check: chain backend invoking success callback
2024-12-05 23:49:07.176 [ERR] NANN chan_status_manager.go:519: Unable to retrieve chan status for Channel(096341c34446f64bcac7215be98c78ab5a43f0ab3858c8da102e9681808b31d6:0): edge not found: op=096341c34446f64bcac7215be98c78ab5a43f0ab3858c8da102e9681808b31d6:0

Looks like they are all blocked by GetInfo.

@yyforyongyu yyforyongyu force-pushed the yy-beat-itest-optimize branch from 5974d3e to 88d6c4a Compare December 6, 2024 09:44
@aakselrod
Copy link
Contributor Author

These are really similar symptoms to when we had the btcwallet deadlock. I've added some logging but had no luck reproducing the failure locally when running flakehunter. I'm going to rebase on your latest branch update, and push a commit that logs a goroutine dump when funding.(*Manager) gets shut down, and then hopefully we get a failure in CI.

@aakselrod aakselrod force-pushed the reapply-8644-on-9260 branch from 0755e15 to 3366773 Compare December 6, 2024 17:41
@aakselrod
Copy link
Contributor Author

No postgres itest errors this run, only linter complaints about line length in the temporary debug commit. I'm fixing the lint errors and pushing again to try to get an itest failure.

@aakselrod aakselrod force-pushed the reapply-8644-on-9260 branch from 3366773 to eca7d32 Compare December 6, 2024 19:07
@aakselrod
Copy link
Contributor Author

I think the unit-race error is OK since it's just a 10-second timeout, but I was a little suspicious because there are sqlite and postgres connections involved. From an initial look, though, seems like it was just too slow. I'll avoid force-pushing the next temporary commit to keep this log visible, but I'll make a minor change just to get a CI run again.

@aakselrod
Copy link
Contributor Author

This time, the error looks to be due to the fact that the payment attempts were sent while the channel between Carol and Dave was still re-establishing, causing an insufficient balance/no route error because there was not yet an active channel between the nodes.

@yyforyongyu yyforyongyu force-pushed the yy-beat-itest-optimize branch 3 times, most recently from d716d2e to df5d749 Compare December 10, 2024 07:36
@saubyk saubyk linked an issue Dec 10, 2024 that may be closed by this pull request
To make this itest work reliably with multiple parallel SQL
transactions, we need to count both the settle and final HTLC
events. Otherwise, sometimes the final events from earlier
forwards are counted before the forward events from later
forwards, causing a miscount of the settle events. If we
expect both the settle and final event for each forward,
we don't miscount.
@aakselrod aakselrod force-pushed the reapply-8644-on-9260 branch from 0d521f7 to 8acd2d5 Compare December 11, 2024 17:32
@aakselrod
Copy link
Contributor Author

aakselrod commented Dec 11, 2024

Added handling for commit unexpectedly resulted in rollback (pgx.ErrTxCommitRollback) as a serialization error and rebased on latest #9260.

@aakselrod aakselrod force-pushed the reapply-8644-on-9260 branch from 8acd2d5 to 307e059 Compare December 11, 2024 17:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Tracking issue: kvdb/postgres-Remove global application level lock
5 participants