You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On my ARM machine (M1 MacBook Pro), when I call the execute (such as SELECT * FROM test;) function, it returns me an unserializable table. On x86 machines, it can return a serializable table.
After my investigation, if there is a column in my Cassandra table schema that is of map<timestamp, text> or map<timestamp, int> type, it will not be serialized on ARM, but it will be normal on x86.
I found that on an x86 machine, it can convert a number key to a string type, but on an arm machine, it cannot, which may be the reason why the table cannot be serialized.
How can I find out the real reason? Any suggestions? grateful.
The text was updated successfully, but these errors were encountered:
On my ARM machine (M1 MacBook Pro), when I call the
execute
(such asSELECT * FROM test;
) function, it returns me anunserializable table
. On x86 machines, it can return a serializable table.After my investigation, if there is a column in my Cassandra table schema that is of
map<timestamp, text>
ormap<timestamp, int>
type, it will not be serialized on ARM, but it will be normal on x86.I found that on an x86 machine, it can convert a number key to a string type, but on an arm machine, it cannot, which may be the reason why the table cannot be serialized.
How can I find out the real reason? Any suggestions? grateful.
The text was updated successfully, but these errors were encountered: