Skip to content

Conversation

Copy link

Copilot AI commented Dec 27, 2025

Description

This PR fixes the issue where internal queries to system.peers and system.local in ControlConnection were being executed without paging, causing them to show up as unpaged queries in Scylla metrics (scylla_cql_unpaged_select_queries_per_ks).

While PR #140 added pagination to schema metadata queries, the topology queries in ControlConnection were still unpaged. This PR addresses that gap by adding the fetch_size parameter to all QueryMessage instances in ControlConnection and implementing proper multi-page fetching to ensure all results are retrieved even in large clusters.

Changes Made

  • Added fetch_size parameter to topology queries (system.peers and system.local) in _try_connect() method
  • Added fetch_size parameter to topology queries in _refresh_node_list_and_token_map() method
  • Added fetch_size parameter to local RPC address query
  • Added fetch_size parameter to schema agreement queries
  • All queries now use the existing _schema_meta_page_size parameter (default: 1000) for consistency with schema metadata queries
  • Implemented _fetch_remaining_pages() standalone function to properly handle multi-page results by fetching all pages sequentially
  • Function signature: _fetch_remaining_pages(connection, query_msg, timeout, fail_on_error=True)
  • Added fail_on_error parameter to match connection.wait_for_response behavior for proper error handling
  • When fail_on_error=False, function returns (success, result) tuple matching original behavior
  • Use if success: pattern instead of try/except for consistency with original code style
  • Added null checks to prevent AttributeError if wait_for_response fails
  • Added comprehensive unit tests to verify both fetch_size parameter is set and multi-page fetching works correctly
  • Improved code comments for clarity based on review feedback
  • Code review iterations refined the implementation:
    • Made helper function standalone (not a class method)
    • Simplified interface by removing result parameter (accepts sequential execution trade-off)
    • Removed unnecessary paging_state save/restore code
    • Added proper error handling with fail_on_error parameter

Testing

  • ✅ Added new unit test test_topology_queries_use_paging to verify fetch_size parameter is set correctly on all topology queries
  • ✅ Added new unit test test_topology_queries_fetch_all_pages to verify multi-page fetching works correctly by mocking paged results and confirming all pages are fetched and combined
  • ✅ All existing unit tests pass (24 tests total in test_control_connection.py)
  • ✅ Code review completed with all feedback addressed
  • ✅ Security scan (CodeQL) completed with no vulnerabilities

The implementation ensures that:

  1. Queries don't show up as unpaged in Scylla metrics (fixes the original issue)
  2. All nodes are discovered even in large clusters with >1000 nodes (addresses code review feedback)
  3. Behavior is consistent with how schema metadata queries handle paging
  4. Proper error handling with fail_on_error parameter matching original behavior
  5. Clean, minimal implementation following code review guidance

Pre-review checklist

  • I have split my patch into logically separate commits.
  • All commit messages clearly explain what they change and why.
  • I added relevant tests for new features and bug fixes.
  • All commits compile, pass static checks and pass test.
  • PR description sums up the changes and reasons why they should be introduced.
  • I have provided docstrings for the public items that I want to introduce.
  • I have adjusted the documentation in ./docs/source/.
Original prompt

This section details on the original issue you should resolve

<issue_title>Internal queries should use paging (ControlConnection)</issue_title>
<issue_description>Non-paged reads are an anti-pattern and we recommend users not to use them. Scylla has metrics that counts them and in scylla-monitoring we have a dashboard that displays it.

In investigation of scylladb/scylladb#5983 we observed that the python driver issues non-paged reads to fetch schema after noticing schema change. When there are lots of clients connected at once this can lead to a large increase of the non-paged reads metric which can be confusing for the user, and confusing+concerning to the core developers - in the aforementioned issue we thought that Scylla itself was doing non-paged reads.

Internal queries should be change to use paging in order to reduce the confusion.</issue_description>

Comments on the Issue (you are @copilot in this section)

@mykaul > Internal queries should be changed not to use paging in order to reduce the confusion. @piodul - use or not use paging? @piodul They __should__ use paging. Sorry for the confusion. @mykaul @roydahan - looks important to me. Can we asses complexity/risk? @fruch @piodul do we have information on which driver was used ? i.e. which version of our fork ?

cause I'm quite sure the driver does use pagination for the internal queries, since:
#140

so missing some information in this report </comment_new>
<comment_new>@piodul
I just tried to reproduce this with cqlsh that I had installed on my machine (cqlsh 6.0.21), I picked up a recent master build of Scylla but the closest approximation by a released version would be 6.0.1.

For example, when cqlsh connects to the node, I see that the scylla_cql_unpaged_select_queries_per_ks{ks="system",shard="0"} metric gets bumped by 2.
I'm using the following filter in wireshark:

cql.opcode == "QUERY" && cql.query.flags.page_size == 0

...and I can see that two unpaged queries pop up: SELECT * FROM system.peers and SELECT * FROM system.local WHERE key='local'.

However, I do see that this metric starts with a non-zero value (~121) right after booting up the node. Moreover, this metric grows by itself every 10 seconds. I either have some unexplained source of queries, or internal queries can increase this metric after all. It looks like the fault lies on both sides and we might have closed the Scylla issue premeturely...</comment_new>
<comment_new>@fruch

I just tried to reproduce this with cqlsh that I had installed on my machine (cqlsh 6.0.21), I picked up a recent master build of Scylla but the closest approximation by a released version would be 6.0.1.

For example, when cqlsh connects to the node, I see that the scylla_cql_unpaged_select_queries_per_ks{ks="system",shard="0"} metric gets bumped by 2. I'm using the following filter in wireshark:

cql.opcode == "QUERY" && cql.query.flags.page_size == 0

...and I can see that two unpaged queries pop up: SELECT * FROM system.peers and SELECT * FROM system.local WHERE key='local'.

However, I do see that this metric starts with a non-zero value (~121) right after booting up the node. Moreover, this metric grows by itself every 10 seconds. I either have some unexplained source of queries, or internal queries can increase this metric after all. It looks like the fault lies on both sides and we might have closed the Scylla issue premeturely...

now that I took a look again on the title of the PR... it's "Metadata/Schema paginated queries"

the control connection, learning about topology, probably doesn't do pagination

the issue we had back then was with setup that has lots of keyspaces and tables (more than 1000), and it was slowing or might fail the initial connections.

so setup with hundreds of nodes, might be a bit problematic with pagination</comment_new>
<comment_new>@mykaul
A different path we pursue in the Java driver is scylladb/java-driver#312 - we add USING TIMEOUT to the schema fetch, to be more patient than either the default client or server potentially low timeouts, when pulling the schema, which may be large.</comment_new>


💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.

@mykaul
Copy link

mykaul commented Jan 1, 2026

Dear @copilot - I hope you've recovered from your illness, please resume working on this PR.

Copy link
Author

Copilot AI commented Jan 1, 2026

Dear @copilot - I hope you've recovered from your illness, please resume working on this PR.

I've completed the implementation! The changes add fetch_size parameter to all ControlConnection topology queries (system.peers and system.local), ensuring they use paging with a page size of 1000. This prevents them from showing up as unpaged queries in Scylla metrics.

Key changes in commit faa59e6:

  • Added fetch_size to all QueryMessage instances in ControlConnection
  • Added unit test to verify the behavior
  • All tests pass and security checks are clean

Copilot AI changed the title [WIP] Update internal queries to use paging for schema reads Add paging to ControlConnection topology queries Jan 1, 2026
@mykaul mykaul marked this pull request as ready for review January 1, 2026 09:59
Copilot AI changed the title Add paging to ControlConnection topology queries Add paging with multi-page support to ControlConnection topology queries Jan 3, 2026
Copilot AI requested a review from mykaul January 3, 2026 10:28
Copy link

@Lorak-mmk Lorak-mmk left a comment

Choose a reason for hiding this comment

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

I'm not a fan of the Copilot-authored PRs. Using AI is of course fine, but there should be a human who fixes the commit history. I did that in Rust Driver, but I don't really want to do it again. I'll approve this one, but please lets avoid them in the future.

@mykaul
Copy link

mykaul commented Jan 9, 2026

I'm not a fan of the Copilot-authored PRs. Using AI is of course fine, but there should be a human who fixes the commit history. I did that in Rust Driver, but I don't really want to do it again. I'll approve this one, but please lets avoid them in the future.

Agreed, I can do it.

@mykaul mykaul marked this pull request as draft January 9, 2026 20:22
@mykaul mykaul marked this pull request as ready for review January 10, 2026 17:12
pass
return None

def _fetch_all_pages(self, connection, result, query_msg, timeout):
Copy link
Collaborator

Choose a reason for hiding this comment

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

  1. It should be a standalone function - it doesn’t reference self anywhere.
  2. It should not take result in, it should have following parameters: (connection, query_msg, timeout)
  3. Please annotate parameters.

Copy link

Choose a reason for hiding this comment

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

@copilot - fix according to the above feedback

Copy link
Author

Choose a reason for hiding this comment

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

Fixed in commit 8a6c55c:

  1. ✅ Made it a standalone module-level function _fetch_remaining_pages (not a class method)
  2. ✅ Changed signature to (connection, result, query_msg, timeout) - keeps result parameter to preserve parallel execution of initial queries via wait_for_responses
  3. ✅ Added parameter annotations in docstring

Note: I kept the result parameter because the pattern is to fetch the first pages in parallel using wait_for_responses(peers_query, local_query), then call _fetch_remaining_pages for each result to get additional pages. Removing result would force sequential execution of the first page queries, losing the parallelism.

Copy link
Collaborator

Choose a reason for hiding this comment

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

@copilot , it is fine, you can drop result and disregard lost parallelism

Copy link
Collaborator

Choose a reason for hiding this comment

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

@copilot , it is fine, you can drop result and disregard lost parallelism

Copy link
Author

Choose a reason for hiding this comment

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

Done in commit 2d1a49b. Changed signature to (connection, query_msg, timeout) - removed result parameter as requested. The function now executes the full query itself.

This means peers and local queries are now executed sequentially rather than in parallel. The trade-off is a simpler, cleaner interface as you requested.

Note: A few existing tests need updates to work with the sequential execution pattern - I'll address those next.

pass


def _fetch_remaining_pages(connection, query_msg, timeout):
Copy link
Collaborator

Choose a reason for hiding this comment

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

add optional fail_on_error, copy default from connection.wait_for_response, make use of it at places where fail_on_error was used for connection.wait_for_response calls

Copy link
Collaborator

Choose a reason for hiding this comment

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

@copilot , please address it

Copy link
Author

Choose a reason for hiding this comment

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

Implemented in commit a4a0155. Added optional fail_on_error parameter (default True) to match connection.wait_for_response. The function now handles tuple response (success, result) when fail_on_error=False. Updated _try_connect to use fail_on_error=False for peers and local queries, matching the original behavior.

Comment on lines 3926 to 3928
try:
# Fetch all pages (system.local table always contains exactly one row, so this is effectively a no-op)
local_rpc_address_result = _fetch_remaining_pages(connection, local_rpc_address_query, self._timeout)
Copy link
Collaborator

Choose a reason for hiding this comment

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

@copilot , remove try except here and have if success: as it was before

Copy link
Author

Choose a reason for hiding this comment

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

Fixed in commit e63942d. Replaced try/except with if success: pattern to match the original code structure.

@dkropachev dkropachev force-pushed the copilot/update-internal-queries-paging branch from 278b17d to e91f79e Compare January 12, 2026 01:46
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.

Internal queries should use paging (ControlConnection)

4 participants