Google Guava tips

I'm the author of Data Engineering Design Patterns (O'Reilly), a Databricks MVP, and a freelance data engineer specializing in Apache Spark and Databricks. I help teams move from working pipelines to resilient architectures.
I'm currently accepting new projects for Jun 2026. Whether you need a 2-day architectural audit, a hands-on lead for a complex data engineering problem, or a workshop let's discuss your project here.

How to get first element from iterable object ?

We can do that with...first() method. It allows to not only get the first element but also to get a default object when iterable object is empty: @Test public void should_get_first_element() { ...

Continue Reading β†’