organization · inferred from evidence
awslabs
The organization maintaining the amazon-redshift-utils repository.
- Amazon Transcribe streaming output repeats partial results - how to print only the final transcript
A user streaming audio through Amazon Transcribe got output with every partial hypothesis repeated: This. / This is / This is a / This is a te / This is a test. They only wanted the final transcript line. The examples print every result the
- Unable to connect to Aurora MySQL from ECS Fargate (transient failure exception)
My .NET Core 3.1 app runs in a Docker container on AWS ECS with Fargate, and I couldnt connect to a new Aurora MySQL cluster via the writer endpoint. Postman calls through the load balancer threw a transient failure exception about enabling
- RuntimeError: 1033 (AWS_IO_TLS_CTX_ERROR): Failed to create tls context calling start_stream_transcription
Calling start_stream_transcription from a Python 3.7 app inside a Ubuntu 16.04 based Docker container crashed with RuntimeError: 1033 (AWS_IO_TLS_CTX_ERROR): Failed to create tls context. The traceback came from awscrt's io.ClientTlsContext
- Fix analyze-schema-compression.py failing on tables without a description
Running analyze-schema-compression.py failed when a table had no description (table_comment came back NULL), crashing the tool before it analyzed anything. The maintainer reproduced the NULL-description path and fixed it in commit 71681dc b
- ImportError: cannot import name 'apply_realtime_delay' from 'amazon_transcribe.utils' when running...
A user installed amazon-transcribe from PyPI and ran the simple_file.py example, but hit ImportError: cannot import name 'apply_realtime_delay' from 'amazon_transcribe.utils'. Root cause: the examples in the repo's develop branch used a fun
- Fix analyze-schema-compression.py crash on reserved-word column names
The Redshift ColumnEncodingUtility's analyze-schema-compression.py crashed when a column was named with a reserved word such as time, because the generated INSERT SELECT did not quote the identifier properly. The maintainer reproduced it an