-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Data too long for column 'string_value' at row 1 #165
Comments
it looks like there's internally some truncation going on within MLMD (see here) and the character limit for a string_value seems to be |
Hi @mayankanand007, currently MySQL backend use In MLMD v7, we modified [1] https://github.com/google/ml-metadata/blob/master/ml_metadata/util/metadata_source_query_config.cc#L2163 |
Thanks, @BrianSong! would you be able to link to me the right version I should be upgrading to? Currently, when I do Name: ml-metadata
Version: 0.22.1
Summary: A library for maintaining metadata for artifacts.
Home-page: https://github.com/google/ml-metadata
Author: Google LLC
Author-email: [email protected]
License: Apache 2.0
Location: /data/user/mayank/miniconda3/envs/dev/lib/python3.7/site-packages
Requires: absl-py, protobuf, six, tensorflow
Required-by: mylib EDIT: I think I found the right version: https://github.com/google/ml-metadata/releases/tag/v1.1.0, thanks a lot! for your help, I will close this issue. |
Hey team, thanks for working on such a useful library. I was wondering if I could get some help on an error I’m facing.
I’m trying to log my Teradata SQL query to MLMD, and I have defined the
query
property to be of typeSTRING
orstring_value
as mentioned in the documentation. Is it possible to somehow define it asLONGTEXT
or some other field that can accommodate larger strings? Also, what is the length thatstring_value
can currently accommodate?Thanks!
The text was updated successfully, but these errors were encountered: