Skip to content

Commit 3738378

Browse files
committed
Minor improvement to the codec.binary setting description
1 parent 8bb97fa commit 3738378

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

manual/application.template.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -941,8 +941,8 @@ dsbulk {
941941
################################################################################################
942942

943943
# Strategy to use when converting binary data to strings. Only applicable when unloading columns
944-
# of CQL type `blob`, and only if the connector in use requires stringification. Valid values
945-
# are:
944+
# of CQL type `blob`, or columns of geometry types, if the value of `codec.geo` is `WKB`; and
945+
# only if the connector in use requires stringification. Valid values are:
946946
#
947947
# - BASE64: Encode the binary data into a Base-64 string. This is the default strategy.
948948
# - HEX: Encode the binary data as CQL blob literals. CQL blob literals follow the general

manual/settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -926,7 +926,7 @@ When counting, these settings are ignored.
926926

927927
#### --codec.binary<br />--dsbulk.codec.binary _&lt;string&gt;_
928928

929-
Strategy to use when converting binary data to strings. Only applicable when unloading columns of CQL type `blob`, and only if the connector in use requires stringification. Valid values are:
929+
Strategy to use when converting binary data to strings. Only applicable when unloading columns of CQL type `blob`, or columns of geometry types, if the value of `codec.geo` is `WKB`; and only if the connector in use requires stringification. Valid values are:
930930

931931
- BASE64: Encode the binary data into a Base-64 string. This is the default strategy.
932932
- HEX: Encode the binary data as CQL blob literals. CQL blob literals follow the general syntax: `0[xX][0-9a-fA-F]+`, that is, `0x` followed by hexadecimal characters, for example: `0xcafebabe`. This format produces lengthier strings than BASE64, but is also the only format compatible with CQLSH.

workflow/commons/src/main/resources/dsbulk-reference.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ dsbulk {
618618
# - MAX: Generates the biggest possible type 1 UUID for a given timestamp. Warning: this strategy doesn't guarantee uniquely generated UUIDs and should be used with caution.
619619
uuidStrategy = RANDOM
620620

621-
# Strategy to use when converting binary data to strings. Only applicable when unloading columns of CQL type `blob`, and only if the connector in use requires stringification. Valid values are:
621+
# Strategy to use when converting binary data to strings. Only applicable when unloading columns of CQL type `blob`, or columns of geometry types, if the value of `codec.geo` is `WKB`; and only if the connector in use requires stringification. Valid values are:
622622
#
623623
# - BASE64: Encode the binary data into a Base-64 string. This is the default strategy.
624624
# - HEX: Encode the binary data as CQL blob literals. CQL blob literals follow the general syntax: `0[xX][0-9a-fA-F]+`, that is, `0x` followed by hexadecimal characters, for example: `0xcafebabe`. This format produces lengthier strings than BASE64, but is also the only format compatible with CQLSH.

0 commit comments

Comments
 (0)