Assigned
Status Update
Comments
gi...@google.com <gi...@google.com> #2
I have one question related to Google translate API. but it is not related to this issue.
When i am trying to access Google Translate API using javascript when the query string size is around 13000 characters i am getting server response error code 400. Can you please let me know what is the request size limit if any exist.
When i am trying to access Google Translate API using javascript when the query string size is around 13000 characters i am getting server response error code 400. Can you please let me know what is the request size limit if any exist.
dc...@attn.com <dc...@attn.com> #3
@vrames
according to Google API FAQ
The maximum size of each text to be translated is 5000 characters, not including any HTML tags.
according to Google API FAQ
The maximum size of each text to be translated is 5000 characters, not including any HTML tags.
dc...@attn.com <dc...@attn.com> #5
I also have a same problem some html tags who are divided in few tags , and it's problematic .. there is some news about it ??
vs...@mrocorp.com <vs...@mrocorp.com> #6
I met with the problem just now, it seems the bug nof fixed yet.
Description
This is a feature request for a method to get execution ID from within a PubSub triggered cloud function.
Currently, our default python logs have an execution ID label automatically attached in Stackdriver.
However, when we send logs using google cloud logger python library, we need to to pass label parameters. We have not found a way to get execution id from within a pubsub triggered cloud function so all we can do is attach an event id label. Then we also have to add an event id label to our python logs to tie those logs to logs created by cloud logger.
This crowds the log label space and makes it more complicated to tie all logs from one execution to one another.
So our current logs look like:
<execution id label><event id label> python log 1
<execution id label><event id label> python log 2
<event id label> cloud logger log (we use this to add traceback in one blob, python logs get split up line by line on stackdriver)
Ideally we could just have:
<execution id label> python log 1
<execution id label> python log 2
<execution id label> cloud logger log