objectstorage
개요
objectstorage 읽기 및 쓰기를 하는 명령어 입니다.
타입
설명
해당 명령어를 통해 objectstorage 로 데이터를 읽기 및 쓰기를 할 수 있습니다.
Parameters
... | objectstorage SOURCE [WRITE|READ] (OPTION(key 'value' (, key 'value')*))?
이름 |
설명 |
필수/옵션 |
---|---|---|
|
데이터의 타입을 나타내며 |
필수 |
[WRITE / READ] |
|
필수 |
|
|
옵션 |
OPTION
의 종류
이름 |
설명 |
기본 값 |
---|---|---|
header |
uses the first line as names of columns |
True |
inferSchema |
infers the input schema automatically from data. It requires one extra pass over the data |
False |
ignoreLeadingWhiteSpace |
a flag indicating whether or not leading whitespaces from values being read should be skipped. |
True |
ignoreTrailingWhiteSpace |
a flag indicating whether or not trailing whitespaces from values being read should be skipped |
True |
multiLine |
parse one record, which may span multiple lines |
False |
sep |
sets a single character as a separator for each field and value |
‘,’ |
Examples
아래 예제는 앞서 처리된 값을
/tmp/path.csv
라는 파일로 write하는 예제 입니다.
... | objectstorage csv write /tmp/path option(connector_id '177')
/tmp/path/test.csv
를 read 하는 예제입니다.
... | objectstorage csv read /tmp/path/test.csv option(connector_id '177')