parquet
Here are 247 public repositories matching this topic...
Hello everyone,
Recently I tried to set up petastorm on my company's hadoop cluster.
However as the cluster uses Kerberos for authentication using petastorm failed.
I figured out that petastorm relies on pyarrow which actually supports kerberos authentication.
I hacked "petastorm/petastorm/hdfs/namenode.py" line 250
and replaced it with
driver = 'libhdfs'
return pyarrow.hdfs.cNote sure if it could be interesting but:
When registering a table:
addr: 0.0.0.0:8084
tables:
- name: "example"
uri: "/data/"
option:
format: "parquet"
use_memory_table: false
add in options:
glob
pattern: "file_typev1*.parquet"
or regexp
pattern: "\wfile_type\wv1\w*.parquet"
It would allow selecting in uri's with different exte
-
Updated
Apr 6, 2022 - Jupyter Notebook
-
Updated
Apr 6, 2022 - Python
Currently, there isn't a way to get the table properties in the SparkOrcWriter via the WriterFactory.
-
Updated
May 29, 2021 - JavaScript
RDF tests failing
I'm submitting a
- [x ] bug report.
Current Behaviour:
After #249
Trying to run tests with pytest tests/rdf_tests/test_rdf_basic.py -k test_rdf_runner -s, you get a report file with all the tests run.
Some tests return errors, for example:
{
"Basic - Term 7": {
"input": "basic/data-4.ttl",
"query": "basic/term-7.rq",
"error": "Expected {Sele
-
Updated
Apr 4, 2022 - Python
-
Updated
Mar 3, 2022 - C#
Over time we've had some things leak into the diff methods that make it more cumbersome to use BigDiffy via code instead of CLI.
For example diffAvro here https://github.com/spotify/ratatool/blob/master/ratatool-diffy/src/main/scala/com/spotify/ratatool/diffy/BigDiffy.scala#L284
User has to manually pass in schema otherwise we they receive a non-informative error regarding null schema, add
-
Updated
Mar 4, 2022 - C#
-
Updated
May 30, 2021 - JavaScript
-
Updated
Feb 8, 2021 - Python
As a user i would like a command to aid in debugging parquet files. For instance I would like to obtain the following file stats in a single command:
- compression algorithm
- page type v1/v2?
- row group size
- author / created by
- version
- metadata
- page size
- total records /row count
- any internal info that could help too
-
Updated
Feb 1, 2019 - TypeScript
-
Updated
Apr 2, 2022 - Scala
-
Updated
May 18, 2021 - C++
-
Updated
Apr 1, 2022 - Java
Improve this page
Add a description, image, and links to the parquet topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the parquet topic, visit your repo's landing page and select "manage topics."
In many places in Gaffer, correct logging string formatting is used:
https://github.com/gchq/Gaffer/blob/fb63fc25be2f01d6476d1010780500cb0856b6c4/store-implementation/accumulo-store/src/main/java/uk/gov/gchq/gaffer/accumulostore/operation/hdfs/handler/AddElementsFromHdfsHandler.java#L254
However, in some places, string concatenation is incorrectly used instead:
https://github.com/gchq/Gaffer/