You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* pack: added java_sql_timestamp, a format string used by amazon athena
This commit adds a new timestamp format, the java_sql_timestamp,
which is very similar to iso8601, except that it has a space instead
of a T between the date and the hour and does not end with Z
(or any other timestamp delimiter)
This is the format: "%Y-%m-%d %H:%M:%S"
This is unfortunatelly the only format accepted by Amazon Athena.
Signed-off-by: Marcos Diez <[email protected]>
Copy file name to clipboardExpand all lines: DEVELOPER_GUIDE.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -429,10 +429,10 @@ Config maps are an improvement to the previous Fluent Bit API that was used by p
429
429
430
430
There are various types of supported configuration types. Full list available [here](https://github.com/fluent/fluent-bit/blob/v1.4.2/include/fluent-bit/flb_config_map.h#L29). The most used ones are:
| FLB_CONFIG_MAP_INT | Represents integer data type |
435
+
| FLB_CONFIG_MAP_BOOL | Represents boolean data type |
436
436
| FLB_CONFIG_MAP_DOUBLE | Represents a double |
437
437
| FLB_CONFIG_MAP_SIZE | Provides size_type as an integer datatype large enough to represent any possible string size. |
438
438
| FLB_CONFIG_MAP_STR | Represents string data type |
@@ -441,8 +441,8 @@ There are various types of supported configuration types. Full list available [h
441
441
442
442
A config map expects certain public fields at registration.
443
443
444
-
| Public Fields | Description |
445
-
| --------------|:---------------------|
444
+
| Public Fields | Description |
445
+
| --------------|:---------------------|
446
446
| Type | This field is the data type of the property that we are writing to the config map. If the property is of type `int` we use `FLB_CONFIG_MAP_INT`, if `string``FLB_CONFIG_MAP_STR` etc. |
447
447
| Name | This field is the name of the configuration property. For example for the property flush count we use `flush_count`|
448
448
| Default Value | This field allows the user to set the default value of the property. For example, for a property of type `FLB_CONFIG_MAP_BOOL` (boolean), the default value may be false. Then we have to give `false` as default value. If there is no default value, `NULL` is given.|
0 commit comments