-
Notifications
You must be signed in to change notification settings - Fork 220
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
Allow for multiple automatic sharding keys #388
base: main
Are you sure you want to change the base?
Conversation
@@ -618,8 +627,13 @@ impl QueryRouter { | |||
// The key is fully qualified in the query, | |||
// it will exist or Postgres will throw an error. | |||
if idents.len() == 2 { | |||
found = &sharding_key[0].value == &idents[0].value | |||
&& &sharding_key[1].value == &idents[1].value; | |||
found = sharding_keys |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You want to break here on found = true
. If the loop continues, the second key that's not in the query will set the state as "sharding key not found", which isn't true.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not entirely sure what you mean. The find()
method breaks on the first entry for which the predicate is true. Maybe you mean that.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're right. Hmm. In that case, I'm puzzled as to why the sharding integration Ruby test failed... Any ideas?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Which pgcat.toml file do the ruby tests use? Does it use the automatic sharding keys? Because if not maybe I'm handling the None wrong? I will have closer look tomorrow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't really get the ruby tests running locally. I tried to simulate what the ruby test is doing in rust. The following tests succeed both on the main branch and on my branch. So it seems like the shards are inferred correctly.
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 1")));
assert_eq!(qr.shard(), 2);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 2")));
assert_eq!(qr.shard(), 0);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 3")));
assert_eq!(qr.shard(), 1);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 4")));
assert_eq!(qr.shard(), 0);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 5")));
assert_eq!(qr.shard(), 2);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 6")));
assert_eq!(qr.shard(), 0);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 7")));
assert_eq!(qr.shard(), 1);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 8")));
assert_eq!(qr.shard(), 0);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 9")));
assert_eq!(qr.shard(), 2);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 10")));
assert_eq!(qr.shard(), 1);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 11")));
assert_eq!(qr.shard(), 2);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 12")));
assert_eq!(qr.shard(), 2);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 13")));
assert_eq!(qr.shard(), 1);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 14")));
assert_eq!(qr.shard(), 1);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 15")));
assert_eq!(qr.shard(), 0);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 16")));
assert_eq!(qr.shard(), 0);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 17")));
assert_eq!(qr.shard(), 2);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 18")));
assert_eq!(qr.shard(), 0);
assert!(qr.infer(&simple_query("SELECT * FROM data WHERE id = 19")));
assert_eq!(qr.shard(), 0);
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's curious. You can run the tests locally with Docker:
bash dev/scripts/console
cargo build
cd tests/ruby
bundle install
bundle exec rspec *_spec.rb
Ruby tests are very helpful for debugging issues - they run a real app that connects to PgCat externally and provide really good integration tests with real world use cases.
244ad13
to
fdaa94b
Compare
fdaa94b
to
bfbf794
Compare
bfbf794
to
9faf48e
Compare
9faf48e
to
90701a9
Compare
90701a9
to
72ac559
Compare
Please let me know if you think some changes are required.