rafapereirabr commented on issue #37655:
URL: https://github.com/apache/arrow/issues/37655#issuecomment-2218986102

   Hey all! I'm facing the same issue. Looking forward to seeing this issue 
fixed. Just wanted to share that, in the meantime, I'm converting the data to 
`arrow::to_duckdb()` and it works quite well. Code below
   
   ```
   # Create a large Arrow Table with heavy payloads
   data <- data.frame(
     id = ids
   ) |> 
     as_arrow_table() |>
     mutate(
       # Create payload variables
       variable1   = id,
       variable2   = id,
       variable3   = id,
       variable4   = id,
       variable5   = id,
       variable6   = id,
       variable7   = id,
       variable8   = id,
       variable9   = id,
       variable10  = id
     ) |>
     compute()
   
   data <- arrow::to_duckdb(data)
   vars <- colnames(data)[!colnames(data) %in% c("id")]
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to