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

No warning on unsupported statements #621

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

mdashti
Copy link
Contributor

@mdashti mdashti commented Oct 14, 2023

Currently, not all acceptable PostgreSQL queries are parsed correctly by sqlparser. As a long-term direction, I think we should invest in making it possible. I created issue #620 to track that.

However, for now, we can avoid producing warning messages on queries that we know will fail. This removes the warning message from the test outputs, as well.

In addition, this PR applies some improvements to the test script.

… toxiproxy (if one exists). This helps with re-running the tests, even if it fails in the middle (making the tests execution idempotent).
@mdashti mdashti changed the title Avoid generating warning on unsupported statements No warning on unsupported statements Oct 16, 2023
@mdashti
Copy link
Contributor Author

mdashti commented Oct 16, 2023

@levkk This PR is ready for code-review. The changes mainly help pgcat developers to avoid seeing a lot of (unnecessary) warnings in the test outputs. It's helped me find/fix a bug (in PR #600) already.

Copy link
Contributor Author

@mdashti mdashti left a comment

Choose a reason for hiding this comment

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

More explanation about the changes.

@@ -10,7 +10,7 @@ set -o xtrace
# for inspection.
function start_pgcat() {
kill -s SIGINT $(pgrep pgcat) || true
RUST_LOG=${1} ./target/debug/pgcat .circleci/pgcat.toml &
./target/debug/pgcat .circleci/pgcat.toml --log-level ${1} &
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Without this change, the log-level is not respected.

@@ -29,6 +29,9 @@ PGPASSWORD=sharding_user pgbench -h 127.0.0.1 -U sharding_user shard2 -i
LOG_LEVEL=error toxiproxy-server &
sleep 1

# Remove toxiproxy if it exists.
toxiproxy-cli delete postgres_replica || true
Copy link
Contributor Author

Choose a reason for hiding this comment

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

It is needed for local development, if you're going to run the tests multiple times.

Comment on lines +3 to +15
set -e

CLEAN_BUILD=true

if [ $1 = "no-clean" ]; then
echo "INFO: clean build is NOT going to be performed."
CLEAN_BUILD=false
find /app/target/debug/deps -name *.gcda -exec rm {} \;
fi

if $CLEAN_BUILD ; then
rm -rf /app/target/ || true
fi
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This helps if you want to run the tests multiple times, without waiting for a clean build. You'd just pass no-clean as an argument.

@@ -26,7 +26,7 @@ UPDATE pgbench_branches SET bbalance = bbalance + :delta WHERE bid = :bid;

INSERT INTO pgbench_history (tid, bid, aid, delta, mtime) VALUES (:tid, :bid, :aid, :delta, CURRENT_TIMESTAMP);

END;
COMMIT;
Copy link
Contributor Author

Choose a reason for hiding this comment

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

END is not supported by sqlparser and leads to a pgcatWARN.

@mdashti
Copy link
Contributor Author

mdashti commented Oct 18, 2023

@levkk Any comment?

@levkk
Copy link
Contributor

levkk commented Oct 18, 2023

Why don't we just demote the warn to an info or debug? We don't need this additional machinery to hide a warning I don't think unless I'm missing some foundational change for a new feature you're thinking of adding?

@mdashti
Copy link
Contributor Author

mdashti commented Oct 18, 2023

@levkk I'm OK with changing the warning to debug (which is related to these lines: https://github.com/postgresml/pgcat/pull/621/files#diff-f078eca5d7bf721ab0c80995b0cbb209c87bfda478f20788f7289ae3b79cd8a4R393-R401), but the issue is still there that we will end up trying to parse an unsupported query (which sqlparser fails to parse) twice. The main change is to avoid parsing twice (if it fails).

@levkk
Copy link
Contributor

levkk commented Oct 18, 2023

the issue is still there that we will end up trying to parse an unsupported query

I suspect the list of unsupported queries is not exhaustive and we'll end up maintaining our own list while sqlparser will continue to improve and eventually parse what we consider an unsupported query. I think the right thing to do here is to submit a patch for sqlparser with the fix. Considering we are looking at moving away from sqlparser, having an intermediate state just to hide a warning seems odd. I would rather we continue to log errors to let the user know this is an unsupported query instead of hiding it and having unexpected side effects. E.g. vacuum needs to run on the primary, while set can run on a replica, and the query router should be able to handle this or notify the user very loudly that something went wrong.

@levkk
Copy link
Contributor

levkk commented Oct 18, 2023

Now that I'm thinking more about this, I would rather we log a warning than nothing at all. This is an error condition that we're currently not handling well, so we need to either fix it or notify users that we aren't doing something they expect us to do.

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.

2 participants