Tag Group Scan Rate

Probably not, due to the nature of the protocols involved your fastest is probably going to be ~250ms. Pturmel's Ethernet IP Communication Suite driver is known to be faster (users routinely have 100ms poll rates) but I'm not sure that could reach this poll rate either.

If this is for logging to a database, collect the values at your faster rate and stuff them into a buffer array on the device, and read chunks of the array at a set slower rate.

IE, have 5 seconds worth of data storage space, filling into it at your 16.67ms rate. Read the latest 1s of data into ignition and write it to a DB table. Read the next 1s of data and repeat. And keep repeating that process.

This is the normal approach for recording high speed data on a slower polling protocol.