You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Larry Dawson (Jira)" <ji...@apache.org> on 2022/04/27 19:48:00 UTC

[jira] [Created] (ARROW-16386) Simple example arrow script fails on ubuntu:latest docker container

Larry Dawson created ARROW-16386:
------------------------------------

             Summary: Simple example arrow script fails on ubuntu:latest docker container
                 Key: ARROW-16386
                 URL: https://issues.apache.org/jira/browse/ARROW-16386
             Project: Apache Arrow
          Issue Type: Bug
         Environment: Active environment is described by Docker file, but I'm running docker on windows 10.
            Reporter: Larry Dawson


This docker file using ubuntu:latest, which at this time equates to ubuntu:jammy:
{code:java}
from ubuntu:latest
run apt update -y
run apt upgrade -y
run apt install -y vim libssl-dev libpq-dev python3 python3-venv build-essential
run cd /opt && mkdir python_environments && cd python_environments && python3 -m venv venv && . venv/bin/activate && python -m pip install --upgrade pip && pip install pyarrow pandas
run cd /opt/python_environments && . venv/bin/activate && python -c "import pandas as pd; import pyarrow as pa; from pyarrow import orc; orc.write_table(pa.table({'col1': [1,2,3]}), 'test.orc'); pdtbl = orc.read_table('test.orc')" {code}
Fails on the orc.read_table command with this error:
{code:java}
#9 0.939 terminate called after throwing an instance of 'orc::TimezoneError'
#9 0.939   what():  Can't open /etc/localtime
#9 0.944 Aborted {code}
The error report is accurate, there is no /etc/localtime file in the ubuntu:latest docker image

 



--
This message was sent by Atlassian Jira
(v8.20.7#820007)