Significance of having all selector fields enabled for GET request
9 views
Skip to first unread message
Jun Park
unread,
Jun 19, 2017, 1:07:39 AM6/19/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
Hello,
I am curious whether there is any limitation or performance-related practices for using Selectors (from Java client library) and its fields.
What are the implications such cases?
case 1:
SelectorBuilder selectorBuilder = new SelectorBuilder() .fields( // 3 fields )
vs.
case 2:
SelectorBuilder selectorBuilder = new SelectorBuilder() .fields( // every single field possible for respective Service )
Peter Oliquino
unread,
Jun 19, 2017, 2:12:47 AM6/19/17
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
Hi Jun Park,
As far as I know, there should be no issues whether you defined only three or all the selectable fields of a service in your Selector. Furthermore, you will require to use paging for the get() method when pulling a significant volume of data to reduce the risk or avoid any errors regarding performance.