Was this page helpful?
Caution
You're viewing documentation for an unstable version of ScyllaDB Open Source. Switch to the latest stable version.
ScyllaDB payload, which refers to the actual network packets transferred from the ScyllaDB server to the client as a result of a query, contains duplicate static columns.
TCP trace analysis of the response for a query like the one listed below shows duplicate data (e.g., the current timestamp) was sent by the server.
select some_column, currentTimestamp() from some_table where pk = ?
In another perspective, if you have 10 rows with a static column and a 10KB blob, the entire payload with all non-static columns included will exceed 100KB.
A workaround for this issue would be to select the static column in a second request with LIMIT 1.
Was this page helpful?