I have a table that is partitioned by day with partition filter required. When attempting to write to specific partitions, I can only ever get the bigquery sink to write to the current day's partition (2021-08-10).
I have tried:
1. specifying partition filter field as both _PARTITIONDATE = "2021-08-08" and _PARTITIONTIME = "2021-08-08" (separate runs) while using insert operation
2. specifying partition filter field as both _PARTITIONDATE = "2021-08-08" and _PARTITIONTIME = "2021-08-08" (separate runs) while using upsert operation and specifying Primary Key appropriately.
If anyone knows how to write to specific partition, please let me know. Thank you!