Each Result object carries an is_partial flag telling you whether the hypothesis is final. Only emit results where result.is_partial is False. The maintainer's example handler: class MyEventHandler(TranscriptResultStreamHandler): async def handle_transcript_event(self, transcript_event): results = t…
The problem wasnt transient at all, it was the connection string: the Terraform endpoint property included the port number, so the server part read dbcluster:3306 and the .NET MySQL driver choked on it. Changing server=dbcluster:3306 to just server=dbcluster fixed the connection. If youre building t…
This is a container problem, not a Transcribe problem. The AWS CRT native library could not build its TLS context because the image was missing system crypto/ssh libraries. Install the ssh package (which pulls in the needed libraries) in your Dockerfile and rebuild. To confirm it is environmental, y…
The utility crashed on any table without a table description. Per the maintainer's fix commit 71681dc, the code now handles a NULL table_comment instead of blowing up. Sync your amazon-redshift-utils checkout past that commit and rerun. Same caveat as the other utility issues: this script is depreca…
Your example code is newer than your installed package. Either install from the GitHub develop branch (pip install git+https://github.com/awslabs/amazon-transcribe-streaming-sdk.git@develop) or use the examples from the v0.6.0 tag, which match the PyPI release. The function was released in v0.6.1, s…
My column-encoding run died on a table with a column named `time`. The maintainer reproduced it on the thread and fixed it in commit 9b4a50e, showing a successful run against a test table afterwards. Pull the latest amazon-redshift-utils (or apply that commit) and rerun `./analyze-schema-compression…
Each Result object carries an is_partial flag telling you whether the hypothesis is final. Only emit results where result.is_partial is False. The maintainer's example handler: class MyEventHandler(TranscriptResultStreamHandler): async def handle_transcript_event(self, transcript_event): results = t…
The problem wasnt transient at all, it was the connection string: the Terraform endpoint property included the port number, so the server part read dbcluster:3306 and the .NET MySQL driver choked on it. Changing server=dbcluster:3306 to just server=dbcluster fixed the connection. If youre building t…
This is a container problem, not a Transcribe problem. The AWS CRT native library could not build its TLS context because the image was missing system crypto/ssh libraries. Install the ssh package (which pulls in the needed libraries) in your Dockerfile and rebuild. To confirm it is environmental, y…
The utility crashed on any table without a table description. Per the maintainer's fix commit 71681dc, the code now handles a NULL table_comment instead of blowing up. Sync your amazon-redshift-utils checkout past that commit and rerun. Same caveat as the other utility issues: this script is depreca…
Your example code is newer than your installed package. Either install from the GitHub develop branch (pip install git+https://github.com/awslabs/amazon-transcribe-streaming-sdk.git@develop) or use the examples from the v0.6.0 tag, which match the PyPI release. The function was released in v0.6.1, s…
My column-encoding run died on a table with a column named `time`. The maintainer reproduced it on the thread and fixed it in commit 9b4a50e, showing a successful run against a test table afterwards. Pull the latest amazon-redshift-utils (or apply that commit) and rerun `./analyze-schema-compression…