From 9f1da7e91a54371bc9d6809bbee049ccf00aa5a8 Mon Sep 17 00:00:00 2001 From: Austin Liu Date: Wed, 24 Apr 2024 02:53:02 +0800 Subject: [PATCH] clean up Signed-off-by: Austin Liu --- .../user_guide/data_types_and_io/structureddataset.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/user_guide/data_types_and_io/structureddataset.md b/docs/user_guide/data_types_and_io/structureddataset.md index 4f5548689b3..d24251b49a5 100644 --- a/docs/user_guide/data_types_and_io/structureddataset.md +++ b/docs/user_guide/data_types_and_io/structureddataset.md @@ -251,14 +251,17 @@ You can run the code locally as follows: :lines: 151-155 ``` -[flytesnacks]: https://github.com/flyteorg/flytesnacks/tree/master/examples/data_types_and_io/ - ### The nested typed columns -Most storage formats have support for nested field structures today (Avro, parquet, bq) and so is StructuredDatasets. +Like most storage formats (e.g. Avro, Parquet, and BigQuery), StructuredDataset support nested field structures. +:::{note} +Nested field StructuredDataset should be run when flytekit version > 1.11.0. +::: ```{rli} https://raw.githubusercontent.com/flyteorg/flytesnacks/master/examples/data_types_and_io/data_types_and_io/structured_dataset.py :caption: data_types_and_io/structured_dataset.py :lines: 158-296 -``` \ No newline at end of file +``` + +[flytesnacks]: https://github.com/flyteorg/flytesnacks/tree/master/examples/data_types_and_io/