Explore data files with pyspark
Project description
Spark File Explorer
When developing spark applications I came across the growing number of data files that I create.
CSVs are fine but what about JSON and complex PARQUET files?
To open and explore a file I used Excel to view CSV files, text editors with plugins to view JSON files, but there was nothing handy to view PARQUETs. Event formatted JSONs were not always readable. What about viewing schemas?
Each time I had to use spark and write simple apps which was not a problem itself but was tedious and boring.
Why not a database?
Well, for tabular data there problems is already solved - just use your preferred database. Quite often we can load text files or even parquets directly to the database.
So what's the big deal?
Hierarchical data sets
Unfortunately the files I often deal with have hierarchical structure. They cannot be simply visualized as tables or rather some fields contain tables of other structures. Each of these structures is a table itself but how to load and explore such embedded tables in a database?
For Spark files use... Spark!
Hold on - since I generate files using Apache Spark, why can't I use it to explore them? I can easily handle complex structures and file types using built-in features. So all I need is to build a use interface to display directories, files and their contents.
Why console?
I use Kubernetes in production environment, I develop Spark applications locally or in VM. In all environments I would like to have one tool to rule them all.
I like console tools a lot, they require some sort of simplicity. They can run locally or over SSH connection on the remote cluster. Sounds perfect. All I needed was a console UI library, so I wouldn't have to reinvent the wheel.
Textual
What a great project textual is!
Years ago I used curses but textual is so superior to what I used back then. It has so many features packed in a friendly form of simple to use components. Highly recommended.
Usage
Install package with pip:
pip install pyspark-explorer
Run:
pyspark-explorer
You may wish to provide a base path upfront. It can be changed at any time (press o for Options).
For local files that could be for example:
# Linux
pyspark-explorer file:///home/myuser/datafiles/base_path
# Windows
pyspark-explorer file:/c:/datafiles/base_path
For remote location:
# Remote hdfs cluster
pyspark-explorer hdfs://somecluster/datafiles/base_path
Default path is set to /, which represents local root filesystem and works fine even in Windows thanks to Spark logics.
Configuration files are saved to your home directory (.pyspark-explorer subdirectory). These are json files so you are free to edit them.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyspark_explorer-0.2.0.tar.gz.
File metadata
- Download URL: pyspark_explorer-0.2.0.tar.gz
- Upload date:
- Size: 18.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc952bc322ba7e98859e57fad8a5a9fa796c4dabee0cd2e3bb3df13a041ab628
|
|
| MD5 |
dc9dcde57a41793d04ac3581593d2538
|
|
| BLAKE2b-256 |
c6d474723fd95a8e56e921935a9b1f1ced0e351320abe98cd9718d1c1c1380ad
|
File details
Details for the file pyspark_explorer-0.2.0-py3-none-any.whl.
File metadata
- Download URL: pyspark_explorer-0.2.0-py3-none-any.whl
- Upload date:
- Size: 16.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e8184e7af6dfd390607a39c3d9fd5aa6413b910f64908502cd793f89127dbe1
|
|
| MD5 |
66be4c244081e9eb721816ec9e0d46ed
|
|
| BLAKE2b-256 |
e880b196688ca95cd315f4d6a2f53ac58e786353bdda06db347eb7938be03638
|