間のBigQueryに選択肢を要求するためにそれを使用することができますよう
# hello, I'm a comment and I have meta-data
SELECT * FROM `wherever`
ちょうど、最初の行に注意してください以下は、私が見たオプションの一部です。
1に - あなたはそれは、このような、それはあなたが利用可能などんな情報で構成されています仕事のAPI呼び出し
jobReference.jobId string [Required] The ID of the job. The ID must contain
only letters (a-z, A-Z), numbers (0-9),
underscores (_), or dashes (-).
The maximum length is 1,024 characters.
の時に私が1024個の文字を考えることを設定することができます
jobReference.jobId
ジョブのプロパティを使用します必要なメタデータをエンコードするのに十分です。
2 - 別のオプションは、ジョブのconfiguration.labels
プロパティを使用することです。
configuration.labels object [Experimental] The labels associated with this job.
You can use these to organize and group your jobs.
Label keys and values can be no longer than 63
characters, can only contain lowercase letters, numeric
characters, underscores and dashes. International
characters are allowed. Label values are optional.
Label keys must start with a letter and each label in
the list must have a different key.
あなたはLabeling Datasets
でlabeling
についての詳細を読むことができます。それはデータセットのためのラベルを記述していても - それは使用するために、正確に同じ概念であるジョブズ
と最後に、私は、ユーザーのクエリを調整回避をお勧めします - 特に
いくつかのメタデータを挿入するためにあなたに@Felipeをありがとうございます。 –