Replies: 3 comments
-
>>> databend.init_service(config = """
... # Storage config.
... [storage]
... # fs | s3 | azblob | obs | oss
... type = "fs"
... allow_insecure = true
... [storage.fs]
... data_path = "/par"
... """)
thread '<unnamed>' panicked at src/bendpy/src/lib.rs:80:43:
called `Result::unwrap()` on an `Err` value: anyhow. Code: 1002, Text = TOML parse error at line 7, column 14
|
7 | data_path = "
| ^
invalid basic string
, source: None
TOML parse error at line 7, column 14
|
7 | data_path = "
| ^
invalid basic string
.
<Backtrace disabled by default. Please use RUST_BACKTRACE=1 to enable>
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace use '' instead of "" also failed >>> databend.init_service(config = """
... # Storage config.
... [storage]
... # fs | s3 | azblob | obs | oss
... type = 'fs'
... allow_insecure = true
... [storage.fs]
... data_path = '/par/'
... """)
thread '<unnamed>' panicked at src/bendpy/src/lib.rs:50:43:
called `Result::unwrap()` on an `Err` value: PoisonError { .. }
Traceback (most recent call last):
File "<python-input-2>", line 1, in <module>
databend.init_service(config = """
~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
# Storage config.
^^^^^^^^^^^^^^^^^
...<5 lines>...
data_path = '/par/'
^^^^^^^^^^^^^^^^^^^
""")
^^^^
pyo3_runtime.PanicException: called `Result::unwrap()` on an `Err` value: PoisonError { .. } |
Beta Was this translation helpful? Give feedback.
0 replies
-
I did not reproduce it.
outputs:
|
Beta Was this translation helpful? Give feedback.
0 replies
-
my os Windows11 wsl+ubuntu 22.4
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
the file path is
'/par/fire/data/tables_pyarrow/scale-10.0/lineitem.parquet'
Beta Was this translation helpful? Give feedback.
All reactions