1. Disable the MySQL client and LZO library by default when building the Doris.
MySQL client library is used for MySQL external table feature.
This feature will be replaced by the new ODBC external table soon.
LZO library is used to compress/decompress data of some old data format of Doris,
which is no longer used anymore.
2. Add missing license to some files.
3. For all non-Apache-License code, all are explained in NOTICE file and the corresponding license is declared.
4. Remove the js source code from webroot, it will be downloaded as thirdparty
Steps of row-to-column conversion:
-
Modify the corresponding cluster configuration in
conf. -
Run
python convert_row_to_column.pyto generate all row storage to column storage commands. -
If the script runs without any results, it means that there is no row storage table in the cluster, so nothing need to be done.
-
If there is a table in the script that fails to obtain information.
Please use
show create tablein the cluster to see thestorage_typeof the table. If it is row storage, please manually convert it. -
After the schema change is completed, the old schema needs to be deleted after 10 minutes.
Please wait for a while to make sure that the data of the old schema has been deleted, and then upgrade. Otherwise, the BE process will exit with an error when it is automatically detected when it starts.
-
Run
python convert_row_to_column.pyagain to verify that there are no rows in the table before upgrading.