Firehose supports database as a source in all AWS Regions except China Regions, AWS GovCloud (US) Regions, and Asia Pacific (Malaysia). This feature is in preview and is subject to change. Do not use it for your production workloads.
Convert input data format in Amazon Data Firehose
Amazon Data Firehose can convert the format of your input data from JSON to Apache Parquet
You can convert the format of your data even if you aggregate your records before sending them to Amazon Data Firehose.
Amazon Data Firehose requires the following three elements to convert the format of your record data:
Deserializer
Amazon Data Firehose requires a deserializer to read the JSON of your input data. You can choose one of the following two types of deserializer.
When combining multiple JSON documents into the same record, make sure that your input is still presented in the supported JSON format. An array of JSON documents is not a valid input.
For example, this is the correct input: {"a":1}{"a":2}
And this is the incorrect input: [{"a":1}, {"a":2}]
Choose the OpenX JSON
SerDe
-
yyyy-MM-dd'T'HH:mm:ss[.S]'Z', where the fraction can have up to 9 digits – For example,
2017-02-07T15:13:01.39256Z
. -
yyyy-[M]M-[d]d HH:mm:ss[.S], where the fraction can have up to 9 digits – For example,
2017-02-07 15:13:01.14
. -
Epoch seconds – For example,
1518033528
. -
Epoch milliseconds – For example,
1518033528123
. -
Floating point epoch seconds – For example,
1518033528.123
.
The OpenX JSON SerDe can convert periods (.
) to underscores
(_
). It can also convert JSON keys to lowercase before deserializing
them. For more information about the options that are available with this deserializer
through Amazon Data Firehose, see OpenXJsonSerDe.
If you're not sure which deserializer to choose, use the OpenX JSON SerDe, unless you have time stamps that it doesn't support.
If you have time stamps in formats other than those listed previously, use the Apache Hive JSON SerDeDateTimeFormat
format strings. For more information, see Class DateTimeFormat
You can also use the special value millis
to parse time stamps in epoch
milliseconds. If you don't specify a format, Amazon Data Firehose uses
java.sql.Timestamp::valueOf
by default.
The Hive JSON SerDe doesn't allow the following:
-
Periods (
.
) in column names. -
Fields whose type is
uniontype
. -
Fields that have numerical types in the schema, but that are strings in the JSON. For example, if the schema is (an int), and the JSON is
{"a":"123"}
, the Hive SerDe gives an error.
The Hive SerDe doesn't convert nested JSON into strings. For example, if you have
{"a":{"inner":1}}
, it doesn't treat {"inner":1}
as a
string.
Schema
Amazon Data Firehose requires a schema to determine how to interpret that data. Use AWS Glue to create a schema in the AWS Glue Data Catalog. Amazon Data Firehose then references that schema and uses it to interpret your input data. You can use the same schema to configure both Amazon Data Firehose and your analytics software. For more information, see Populating the AWS Glue Data Catalog in the AWS Glue Developer Guide.
Note
The schema created in AWS Glue Data Catalog should match the input data structure. Otherwise, the converted data will not contain attributes that are not specified in the schema. If you use nested JSON, use a STRUCT type in the schema that mirrors the structure of your JSON data. See this example for how to handle nested JSON with a STRUCT type.
Important
For data types that do not specify a size limit, there is a practical limit of 32 MBs for all of the data in a single row.
If you specify length for CHAR
or VARCHAR
, Firehose
truncates the strings at the specified length when it reads the input data. If the
underlying data string is longer, it remains unchanged.
Serializer
Firehose requires a serializer to convert the data to the target columnar storage format (Parquet or ORC) – You can choose one of the following two types of serializers.
The serializer that you choose depends on your business needs. To learn more about the
two serializer options, see ORC
SerDe