Git Product home page Git Product logo

Comments (2)

nicor88 avatar nicor88 commented on June 12, 2024

Leaving this for anyone picking this up.
The first attempt, we could overwrite collect_freshness macro, e.g. here

Alternatively, but a bit more complicated, on the python side, we can overwrite this method in the adapter:

    def calculate_freshness_from_metadata(
        self,
        source: BaseRelation,
        macro_resolver: Optional[MacroResolverProtocol] = None,
    ) -> Tuple[Optional[AdapterResponse], FreshnessResponse]:
....

from dbt-athena.

sanromeo avatar sanromeo commented on June 12, 2024

From my side I can add than max(<ts_column>) as max_loaded_at doesn't work fine for dbt source freshness query. For large tables it comes to scan full data without partition predicate. It seems like for max, min functions in Iceberg tables don't using Iceberg metadata. From another side I can say that querying metadata scan almost nothing (few kb).

I propose override collect_freshness macro and depends on table_type and partition column use different queries for dbt source freshness command:
For non-partitioned Iceberg tables and all Hive tables use default query:

select
      max(<ts_column>) as max_loaded_at,
      {{ current_timestamp() }} as snapshotted_at
    from <source_table>

For partitioned Iceberg tables use the following query:

select
      max(data.<partitioned_by_ts_column>.max) as max_loaded_at
from "<source_schema>"."<source_table>$partitions"

from dbt-athena.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.