ferruzzi commented on code in PR #38693:
URL: https://github.com/apache/airflow/pull/38693#discussion_r1552529331
##########
tests/system/providers/amazon/aws/example_bedrock.py:
##########
@@ -37,30 +81,84 @@
) as dag:
test_context = sys_test_context_task()
env_id = test_context["ENV_ID"]
+ bucket_name = f"{env_id}-bedrock"
+ input_data_s3_key = f"{env_id}/train.jsonl"
Review Comment:
Good catch, but the filename came straight out of the Bedrock docs page. I
hadn't hard of it either and thought it was odd as well, but Google said it is
a known file format and it works in manual testing. So I'm reasonably sure
it's not a typo.
```
The key difference [between json and jsonl] is in how they handle multiple
JSON objects. Regular JSON files are typically a single, self-contained
structure, while JSON Lines use a line-by-line format, allowing for easier
streaming and processing of individual objects.
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]