Save 50 percent of your Data Engineering effort via Continuous Queries

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ก.พ. 2025

ความคิดเห็น • 14

  • @nickorlove-dev
    @nickorlove-dev 5 หลายเดือนก่อน +6

    LOVE LOVE LOVE the passion from our Google Developer Expert program, and Richard for going above and beyond to create this video! It's super exciting to see the enthusiasm being generated around BigQuery continuous queries!
    Quick feedback up regarding the concerns/recommendations highlighted in the video:
    - All feedback is welcome and valid, so THANK YOU! Seriously!
    - The observed query concurrency limit of 1 query max for 50 slots and 3 queries max for 100 slots is an identified bug. We're in the process of fixing this, which will raise this limit and allow BigQuery to dynamically adjust concurrent continuous queries being submitted based on the available CONTINUOUS reservation assignment resources.
    - Continuous queries is currently in public preview, which simply means we aren't done with feature development yet. There are some really exciting items on our roadmap, which I cannot comment on in such a public forum, but concerns over cost efficiency, monitoring, administration, etc are at the VERY TOP of that list.

    • @practicalgcp2780
      @practicalgcp2780  5 หลายเดือนก่อน +2

      Amazing ❤ thanks for the kind words and also the clarification on the concurrency bug, can’t wait to see it gets lifted so we can try it at scale!

  • @s7006
    @s7006 5 หลายเดือนก่อน +1

    very through analysis ! one of the best TH-cam channels out there on GCP product deep dives.

  • @mohammedsafiahmed1639
    @mohammedsafiahmed1639 5 หลายเดือนก่อน +1

    thanks! Good to see you back

    • @practicalgcp2780
      @practicalgcp2780  5 หลายเดือนก่อน

      😊 was on holiday for a couple of weeks

  • @ghazalehabadian6536
    @ghazalehabadian6536 4 หลายเดือนก่อน

    What order do the videos follow?

  • @ItsMe-mh5ib
    @ItsMe-mh5ib 5 หลายเดือนก่อน

    what happens if your source query combines multiple tables?

    • @practicalgcp2780
      @practicalgcp2780  5 หลายเดือนก่อน

      The short answer is most of these won’t work. At least during the public review. You can use certain sub queries if they don’t have keyword like Exists or NOT Exists. JOIN won’t work either. See the list of limitations here cloud.google.com/bigquery/docs/continuous-queries-introduction#limitations
      This makes sense because it’s a storage layer feature so it is very hard to implement things like listening to append logs on two separate tables together and somehow put them together.
      I would suggest focus on reverse ETL use cases which it’s mostly useful for the time being.

    • @ItsMe-mh5ib
      @ItsMe-mh5ib 5 หลายเดือนก่อน

      @@practicalgcp2780 thank you

  • @mohammedsafiahmed1639
    @mohammedsafiahmed1639 5 หลายเดือนก่อน

    so this is like CDC for BQ tables?

    • @practicalgcp2780
      @practicalgcp2780  5 หลายเดือนก่อน

      Yes pretty much, via SQL but more a reverse of CDC (reverse ETL in streaming mode if you prefer to call it that).