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

cli: add locality-advertise-addr cli flag to mt start-sql command #143051

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

shaikzakiriitm
Copy link
Contributor

@shaikzakiriitm shaikzakiriitm commented Mar 18, 2025

cli: add locality-advertise-addr cli flag to ./cockroach mt start-sql command

locality-advertise-addr cli flag was disabled to mt start-sql command. We are adding this flag now, to enable sql instances have locality aware addresses which can be used by sqlInstanceDialer in the sql server process. In order to add this, we eliminated the if condition which was wrapping the addition of this cli flag to the mtStartSQLCmd.

Epic: CRDB-46923
Fixes: #138715
Part of: CRDB-46312

Release note: None

locality-advertise-addr cli flag was disabled to mt start-sql command.
We are adding this flag now, to enable sql instances have locality aware
addresses which can be used by sqlInstanceDialer in the sql server process.
In order to add this, we eliminated the if condition which was wrapping
the addition of this cli flag to the mtStartSQLCmd.

Epic: CRDB-46923
Fixes: cockroachdb#138715
Part of: CRDB-46312

Release note: None
Copy link

blathers-crl bot commented Mar 18, 2025

It looks like your PR touches production code but doesn't add or edit any test code. Did you consider adding tests to your PR?

🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf.

@cockroach-teamcity
Copy link
Member

This change is Reviewable

…m.sql_instances table

sql_instances table didn't have a way to store locality aware addresses for a sql instance
which gets bootstrapped.
Locality aware addresses will be used when dialing into a specific sql instance by the
sqlInstanceDialer.
This helps in routing the distributed sql query to the appropriate locality based address
of a selected sql instance.
As part of this change, added a column `locality_aware_address_list` of type jsonb into the
sql_instances table. Also added version gate, and a migration upgrade for adding this new column.
Included some unit tests around the same, testing addition of new column
in the table.

Epic: CRDB-46923
Fixes: cockroachdb#138715
Part of: CRDB-46312

Release note: None
@cthumuluru-crdb
Copy link
Contributor

Based on the comment here, this may not be immediately needed for external shared tenants.

We can choose to defer these changes and track it using a backlog. I think it is also okay to commit these changes since the whole mt command is hidden and is not documents. I'm fine either way.

…ess_list column

sql_instances table didn't capture list of locality addresses that can be used to dial
the instance.
Needed to add this column in order to persist locality addresses for a sql_instance, in order to
unify sqlInstanceDialer initialization for both system and application tenants. With this
unification, we don't need to depend on gossip layer to identify locality addresses
to dial into system/shared tenants.
As part of this commit, added logic to encode/decode locality_address_list column in
sql_instances table.

Epic: CRDB-46923
Fixes: cockroachdb#138715
Part of: CRDB-46312

Release note: None
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.

server,ua: add support for --locality-advertise-addr for sql-instances
3 participants