Assigned
Status Update
Comments
ka...@google.com <ka...@google.com>
ka...@google.com <ka...@google.com> #2
I have forwarded this request to the engineering team. We will update this issue with any progress updates and a resolution.
Description
This will create a feature request which anybody can view and comment on.
Please describe your requested enhancement. Good feature requests will solve common problems or enable new use cases.
What you would like to accomplish:
Cx wants to change BQ table names and GCS object names in sinks
How this might work:
the customer could change the name of the tables and save this in the format that he wants in a sink
If applicable, reasons why alternative solutions are not sufficient:
I confirmed that currently we do not support custom table names.
Other information (workarounds you have tried, documentation consulted, etc):
create a view containing only
bigquery_project
logs:CREATE VIEW uam_dataproduct.uba_user_activity_bq_sink AS (
SELECT * from uam_dataproduct.cloudaudit_googleapis_com
WHERE resource.type = "bigquery_project"
);
Some of the limitations of views, such as not reflecting schema updates to the underlying table, are not so important with this specific log file, since the structure is consistent and unlikely to change often or at all.