Re: Help regarding setting up the r package in arrow apache

2023-10-24 Thread Divyansh Khatri
Hello Bryce, Gistfile1 includes my result when I tried building ( https://arrow.apache.org/docs/r/articles/developers/docker.html#example---the-manual-way) from scratch.Before getting to the part of running the docker container I made changes in line endings of 4 files(as seen in the gist).After t

Re: Help regarding setting up the r package in arrow apache

2023-10-23 Thread Bryce Mecum
Is the `docker-compose run r` output before or after you changed the line endings in build_arrow_static.sh? This error: inst/build_arrow_static.sh: line 38: $'\r': command not found makes it look like you may have written the file out with Windows-style line endings which I suspect MinGW is havin

Re: Help regarding setting up the r package in arrow apache

2023-10-23 Thread Divyansh Khatri
Hi Jonathan, So,first of all regarding the previous message I sent I thought I setup the R correctly but when i ran the container it was exiting immediately so I did the process again.I followed the developer documentation [1] ( https://arrow.apache.org/docs/r/articles/developers/docker.html#exampl

Re: Help regarding setting up the r package in arrow apache

2023-10-22 Thread Divyansh Khatri
> > Thanks for the help Jonathan,Nic and Bryce I was able to setup R and the > docs.

Re: Help regarding setting up the r package in arrow apache

2023-10-22 Thread Divyansh Khatri
i'll keep these things in mind Jonathan Keane On Fri, 20 Oct 2023 at 20:38, Jonathan Keane wrote: > Hello Divyansh, > > First, and foremost, I would like to call your attention to what Nic said > here: > > It looks like you're trying to set up > > a Docker image based on one of our CI jobs which

Re: Help regarding setting up the r package in arrow apache

2023-10-20 Thread Jonathan Keane
Hello Divyansh, First, and foremost, I would like to call your attention to what Nic said here: It looks like you're trying to set up > a Docker image based on one of our CI jobs which builds the docs for > multiple Arrow implementations, which I wouldn't recommend, as it involves > a lot more st

Re: Help regarding setting up the r package in arrow apache

2023-10-20 Thread Divyansh Khatri
This is a different issue from the previous one Nic Crane I think I figured out the one with the R setup but this one is related to the setup of the Ubuntu-docs which i setup up with the help of the docker-compose.yml file as mentioned in the gist.I have built the image but for some reason am not

Re: Help regarding setting up the r package in arrow apache

2023-10-20 Thread Nic Crane
Hi Divyansh, You mentioned previously that you were trying to get an R dev setup in Docker, but that gist looks quite different to what's recommended in the R dev setup instructions linked above. It looks like you're trying to set up a Docker image based on one of our CI jobs which builds the doc

Re: Help regarding setting up the r package in arrow apache

2023-10-20 Thread Divyansh Khatri
please see this and help me resolve the issue https://gist.github.com/Divyansh200102/3ba4f5e391d8e62307f8b584a5a659d8 On Wed, 18 Oct 2023 at 19:14, Jonathan Keane wrote: > For development of the R package with docker containers, the link [1] that > Nic sent in this same thread is the place to go

Re: Help regarding setting up the r package in arrow apache

2023-10-18 Thread Jonathan Keane
For development of the R package with docker containers, the link [1] that Nic sent in this same thread is the place to go. In addition to that docker-focused one, there are a handful of others that might prove useful to you in getting your development environment setup [2]. If you run into any is

Re: Help regarding setting up the r package in arrow apache

2023-10-18 Thread Divyansh Khatri
I am trying to contribute to the arrow project.so i am trying to setup the project on locally. On Tue, 17 Oct 2023 at 05:14, Bryce Mecum wrote: > That error makes it look like you're running `docker compose up` from > the root of the Arrow source tree which is likely not what you want. > Are you

Re: Help regarding setting up the r package in arrow apache

2023-10-16 Thread Bryce Mecum
That error makes it look like you're running `docker compose up` from the root of the Arrow source tree which is likely not what you want. Are you trying to use the Arrow R package in a Docker container or are you trying to contribute to it by developing inside of a Docker container? Nic's link [1]

Re: Help regarding setting up the r package in arrow apache

2023-10-16 Thread Nic Crane
I'm not sure that's quite right, but I don't know enough Docker without looking it up to say what's happened. There's some R-specific guidance here with an example: https://arrow.apache.org/docs/r/articles/developers/docker.html On Mon, 16 Oct 2023, 13:31 Divyansh Khatri, wrote: > Hi,so i am b

Re: Help regarding setting up the r package in arrow apache

2023-10-16 Thread Divyansh Khatri
Hi,so i am basically using the docker cmd 'docker compose up -d' in the docker-compose.yml but i am encountering this error(Error response from daemon: manifest for amd64/maven:3.5.4-eclipse-temurin-8 not found: manifest unknown: manifest unknown)so i am not sure how to proceed from here? On Mon,

Re: Help regarding setting up the r package in arrow apache

2023-10-16 Thread Divyansh Khatri
> > > Hi,so basically i am using the 'docker compose up -d' cmd in the > docker-compose.yml file and then i am encountering this error (Error > response from daemon: manifest for amd64/maven:3.5.4-eclipse-temurin-8 not > found: manifest unknown: manifest unknown) so i am not sure how to procced > f

Re: Help regarding setting up the r package in arrow apache

2023-10-16 Thread Benson Muite
Dpending on context, this message maybe for the users list: https://arrow.apache.org/community/ Consider examining the CI files: https://github.com/apache/arrow/blob/main/.github/workflows/r.yml An alternative to docker is Guile: https://packages.guix.gnu.org/packages/r-arrow/13.0.0.1/ On 10/16/

Re: Help regarding setting up the r package in arrow apache

2023-10-16 Thread Nic Crane
Hi Divyansh, There are instructions for creating a R package dev setup here: https://arrow.apache.org/docs/r/articles/developers/setup.html If you can explain a bit more about what you've tried so far and what's not working, we may be able to advise. Best wishes, Nic On Mon, 16 Oct 2023 at 06:

Help regarding setting up the r package in arrow apache

2023-10-15 Thread Divyansh Khatri
I am having problems regarding setting up the r package using docker of the apache arrow.Can you give me the step by step process of how do i setup the r package in my vs code system using docker.