Segmentation Fault in TensorFlow Transform component

Hi!

I am trying the Taxi Tutorial on TFX 1.9 but getting a Segmentation Fault in the TensorFlow Transform Component (TFT). I have pinpointed the segfault happening during the execution of… tft.compute_and_apply_vocabulary.

I am currently running TFX in its TFX 1.9 Docker imaga for testing with the local DAG runner.
I am using Apache Flink as a Beam runner.

Thanks!
Gorjan

I have resolved the issue by adding:

tf.compat.v1.disable_eager_execution()

To the beginning of the transform file.