Hansal Shah
12/14/2022, 1:55 AMcurl -fsSL <https://get.orchest.io> > convenience_install.sh \
&& bash convenience_install.sh
on WSL 2 and access the service by running minikube ip
on WSL 2 command line and accessing it on my Windows browser?Hansal Shah
12/14/2022, 2:06 AMHansal Shah
12/14/2022, 7:10 AMRuben Bosch
12/14/2022, 12:10 PMRafael Rodrigues Santana
12/14/2022, 2:13 PM/jobs
and /jobs/{job_uuid}/runs/trigger
. Is there a better way to do what I'm planning to?
If this is the best solution, how can I authenticate my requests to be able to make them inside orchest?Esraa Madi
12/17/2022, 3:05 PMekeras
12/22/2022, 12:34 PM[unixODBC][Driver Manager]Can't open lib 'FreeTDS' : file not found (0) (SQLDriverConnect)")
How would I solve it on my local machine? I'd configure /etc/odbcinst.ini in such a way:
echo "[FreeTDS]\n\
Description = FreeTDS unixODBC Driver\n\
Driver = /usr/lib/x86_64-linux-gnu/odbc/libtdsodbc.so\n\
Setup = /usr/lib/x86_64-linux-gnu/odbc/libtdsS.so" | sudo tee -a /etc/odbcinst.ini
I tried the same on Orchest, but that doesn't fix the issue, because driver is not necessarily in the same location. In order to locate the needed location, I'd like to navigate through directories and see if it even exists. One way to do that on Orchest is to do ls
commands to find if file is existent while Setting up and environment. But as you can understand that's very inconvenient.
My question: is there any other way how I could get to look into files? Or even better maybe you know a solution to FreeTDS issue?Johan F
12/23/2022, 8:43 PMvihansh reddy
12/30/2022, 8:39 AMvihansh reddy
12/30/2022, 8:40 AMAlexsander Pereira
12/29/2022, 5:02 PMJacopo
01/07/2023, 12:07 PMv2023.01.0
or v2023.01.1
and you are experiencing issues related to git imports or ssh/git config setup please update to v2023.01.2
Ryan Cronin
01/11/2023, 9:41 PMRafael Rodrigues Santana
01/18/2023, 9:19 PMHansal Shah
01/21/2023, 7:59 AMHansal Shah
01/22/2023, 12:07 PMHansal Shah
01/22/2023, 12:11 PMHansal Shah
01/22/2023, 12:17 PMHansal Shah
01/23/2023, 4:56 PMHansal Shah
01/27/2023, 8:03 AMRafael Rodrigues Santana
01/27/2023, 8:27 PMKevin Schaich
02/08/2023, 10:04 PMminikube
, how can I get it to serve a set of files on my local Mac to be available for consumption within Orchest?
I tried slightly modifying the instructions for local development:
minikube delete
minikube start \
--cpus max \
--memory max \
--addons ingress metrics-server \
--mount-string="/Users/kevinschaich/shared-data:/shared-data" --mount
orchest install
sudo minikube tunnel
but there's no volume under /shared-data in the Orchest sidebar nor viewable if I do ls
from the Jupyter terminal.Salomon DION
02/14/2023, 7:19 AMRafael Rodrigues Santana
02/16/2023, 2:04 PMAwaiting boot lock...
Awaiting boot lock...
Awaiting boot lock...
Awaiting boot lock...
Awaiting boot lock...
Awaiting boot lock...
Awaiting boot lock...
Awaiting boot lock...
Awaiting boot lock...
Awaiting boot lock...
Because of this, we are unable to create sessions in those projects.
I have also noticed that by restarting the orchest cluster using the **restart** button, some of the projects that were not working are fixed, but other projects that were working starts to have the same issue.
Some important points:
- I have not found a lock in the $lockdir
- By running the /start.sh with the same parameters, I could reproduce the same result in jupyter-servers that are not working.
Nikita Chistikov
03/06/2023, 11:56 AMBruno Oliveira dos Santos
03/07/2023, 2:48 PMAllan Sene
03/18/2023, 2:30 PMJericho Cruz
03/20/2023, 3:37 PM{
"AUTH_ENABLED": false,
"MAX_BUILDS_PARALLELISM": 1,
"MAX_INTERACTIVE_RUNS_PARALLELISM": 4,
"MAX_JOB_RUNS_PARALLELISM": 4,
"TELEMETRY_DISABLED": false,
"TELEMETRY_UUID": "69b40767-e315-4953-8a2b-355833e344b8"
}
Bruno Oliveira dos Santos
03/21/2023, 7:28 PMReginaldo RĂ©
03/22/2023, 11:49 AMReginaldo RĂ©
03/22/2023, 11:49 AMJacopo
03/22/2023, 11:51 AMorchest status
?Reginaldo RĂ©
03/22/2023, 11:56 AMJacopo
03/22/2023, 11:57 AMorchest
namespace there? Did you get any interesting message when running orchest install
?Reginaldo RĂ©
03/22/2023, 11:58 AMJacopo
03/22/2023, 12:05 PM--dev
flag expects the Orchest repo to be mounted to support hot reloading (see --mount-string="$(pwd):/orchest-dev-repo" --mount
). Maybe you weren't in the repository directory when starting minikube?Reginaldo RĂ©
03/22/2023, 12:07 PMJacopo
03/22/2023, 12:08 PMReginaldo RĂ©
03/22/2023, 12:09 PMYannick
03/22/2023, 12:13 PMReginaldo RĂ©
03/22/2023, 12:14 PMJacopo
03/22/2023, 12:28 PMReginaldo RĂ©
03/22/2023, 1:43 PMJacopo
03/22/2023, 2:33 PMSorry. Considering you need to use the build-container.sh script when changes are made, and, to avoid issues with hot reloading, couldn't I just build a set of imagens (for example, scripts/build_container.sh -i orchest-api -t $TAG -o $TAG) and run orchest install without dev flag?Sorry forgot to reply here, yes, you can indeed do that, it' something we did often for development, see https://docs.orchest.io/en/stable/development/development_workflow.html#redeploying-orchest-after-code-changes
Reginaldo RĂ©
03/22/2023, 3:00 PMJacopo
03/22/2023, 4:05 PMexport TAG="$(orchest version --latest)"
will silently failReginaldo RĂ©
03/22/2023, 4:13 PM