jaffle shop on dbt cloud with spark: raw_orders keeps on running

Hi,

I’m using jaffle shop GitHub - dbt-labs/jaffle-shop: 🥪🦘 An open source sandbox project exploring dbt workflows via a fictional sandwich shop's data. with the apache spark connector and run I follow the instructions and run dbt seed, all the tables load with the exception of raw_orders. It just runs the create table command and then just pauses. Eventually it’ll time out. Logs and a picture of dbt seed running for 6 minutes but raw_orders doesn’t move.

16:50:24 Began running node seed.jaffle_shop.raw_orders
16:50:24 3 of 6 START seed file dbt_raw.raw_orders ...................................... [RUN]
16:50:24 Acquiring new spark connection 'seed.jaffle_shop.raw_orders'
16:50:24 Began compiling node seed.jaffle_shop.raw_orders
16:50:24 Began executing node seed.jaffle_shop.raw_orders
16:50:27 Spark adapter: NotImplemented: add_begin_query
16:50:27 Using spark connection "seed.jaffle_shop.raw_orders"
16:50:27 On seed.jaffle_shop.raw_orders: /* {"app": "dbt", "dbt_version": "2025.4.8+634b9ce", "profile_name": "user", "target_name": "default", "node_id": "seed.jaffle_shop.raw_orders"} */

    create table dbt_raw.raw_orders (`id` string,`customer` string,`ordered_at` timestamp,`store_id` string,`subtotal` bigint,`tax_paid` bigint,`order_total` bigint)
    
    using hudi
    
    
    
    location 's3://lakehouse-albert-us-west-2/demolake/dbt_raw/raw_orders'
    
  
16:50:27 Opening a new connection, currently in state init
16:50:29 Spark adapter: Poll status: 2, query complete
16:50:29 SQL status: OK in 2.775 seconds

logs at [Bug] jaffle shop on dbt cloud with spark: raw_orders keeps on running · Issue #1040 · dbt-labs/dbt-adapters · GitHub