---- environment ----
python==3.9.6
google-ads==13.0.0
---------------------
I met an error TOO_MANY_USER_IDENTIFIERS when doing "add_offline_user_data_job_operations" with python library.
Our python system that append user id to an audience with python handles with up to 20M userId list.
the system divides list of userId into 100K if the list size over 100K, then calls "add_offline_user_data_job_operations".
This system works well (w/o TOO_MANY_USER_IDENTIFIERS error) at least until Jan 21st 2022.
Then when did at Jan 24th 2022, We came to get an error below.
```
Maximum number of user identifiers allowed per request is 100,000 and per operation is 20.
offline_user_data_job_error: TOO_MANY_USER_IDENTIFIERS
```
So, We did with 20 userId list as trial, there was no error.
and when 21 userId list, the error occurs.
and also, the error message of "TOO_MANY_USER_IDENTIFIERS" is not same as this
https://developers.google.com/google-ads/api/reference/rpc/v8/OfflineUserDataJobErrorEnum.OfflineUserDataJobErrorOur questions are
1. Has the spec of this api changed recently?
2. Concretely, what is "request", "operation" in the error message?
3. How handle the process when 20M userId list?
Thank you for advance.