Table of Contents | ||||
---|---|---|---|---|
|
Info |
---|
실제 개발자들이 default 가 아닌 확장 컬럼을 사용할 수 도 있을 것 같습니다. 그래서, 별도로 본인들의 lake를 구성할 수 있는 여지를 줘야합니다.
|
note
Info |
---|
This API creates a data lake for the user to use. Define the Tag of the data lake to be created, its extended columns and Values, and its definite columns. And, don't forget to design well in advance because the data structure determined in this way cannot be changed. The last created Data Lake incurs an immediate cost, so call it with caution. |
...
Prerequisites | ||||
---|---|---|---|---|
Key | Type | Description | ||
lake_name | string | lake name | ||
lake_plan | string | tiny / basic / business/ enterprise | ||
owner | string | Lake's Owner (When omitted, the user who calls the API) | ||
region | string | AWS region name | ||
timezone | string | |||
storage_size | int | Storage size | ||
tag_schema | JSON | Columns for this lake's Tag meta. Each column have the three sub component: col_name, col_type, col_length. col_name : column name col_type : column type
col_length : if varchar type, assign the max length of column
The data type of the first column , “col_type” must be “varchar”. But, additional meta column can have any data type. | ||
value_schema | JSON | Columns for this lake’s values. In this field, you have to assign two essential columns for time and default value. The first column datatype must be “datetime”. The second column datatype must be “double” keeping numeric data as default.
However, beginning with the third column information, you can have the option of specifying additional column information. |
...