-
Notifications
You must be signed in to change notification settings - Fork 606
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
248,632 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Description | ||
The build environment does not support automatic generation of thrift files, unlike protobufs. Therefore, these files need to be generated manually. | ||
|
||
1. To do this, the thrift compiler needs to be installed. Full information about the compiler can be found at https://thrift.apache.org/. If you are using the Ubuntu operating system and the apt package manager, you can run the following commands: | ||
``` | ||
sudo apt-get update | ||
sudo apt-get -y install thrift-compiler | ||
``` | ||
|
||
2. After installing the compiler, run the command `thrift -r --gen cpp hive_metastore.thrift` in the directory `ydb/core/external_sources` hive_metastore. | ||
|
||
3. If there are any compilation problems after generating the files, please fix them manually |
Oops, something went wrong.