Hello,
I was asked to provide export to CSV from one of the tables from DataStax. I decided to use COPY TO command Exactly:
cqlsh 192.168.1.10 copy keyspace.table to 'keyspace.table_20210426.csv';
For each exported line I am getting following debug message (1000 rows in table, 1000 messages like this during COPY TO in cqlsh> ):
... cqlshlib.copyutil.ExportProcess.write_rows_to_csv(): writing row cqlshlib.copyutil.ExportProcess.write_rows_to_csv(): writing row cqlshlib.copyutil.ExportProcess.write_rows_to_csv(): writing row ...
We have multiple DataStax clusters, but only this one is showing such debug info for each line exported. Can you please advise where to look for to suppress such informational messages while COPY TO is running?
Thank you.