Got this answer from our DBA.
So, this was not a recursion bug (though the error message was really bad, and looked like one). Rather, it was a memory complexity problem.
Basically, each statement must run in a limited memory space (128K in this case). While most statements fit in far less than this space, it appears that this trigger has considerably greater memory requirements.
The reason that this worked in testing is that the tests attempted were not large enough. (And the testing server likely had more memory allocated to it)
As an example, this worked in testing:
UPDATE users SET name="j@mail.com" WHERE id=1234;
But what really runs in production is:
update users set full_name='Jason H', attr1='abc1', attr2='abc', attr3='adad' .... where id=1917;
Basically, the java/hibernate system is UPDATEing every single field... for some reason. This is pretty silly, and hibernate probably should be doing less.
The considerably greater complexity of the real query pushed it over the memory limits in production.