CSV Tools

Sample Parquet File

A downloadable sample Parquet file with 30 fictional employee records — columnar, snappy-compressed, with an embedded schema. Ready for readers, viewers, and converters.

Data Parquet Binary format

sample-employees.parquet

Data Preview

30 rows × 7 columns
1nameemaildepartmentrolesalarystart_dateoffice
2Marcus Chen[email protected]EngineeringSenior Software Engineer1550002019-03-15San Francisco
3Priya Sharma[email protected]EngineeringStaff Engineer1780002019-06-01San Francisco
4David Kim[email protected]EngineeringSoftware Engineer1250002021-01-10New York
5Rachel Torres[email protected]EngineeringEngineering Manager1680002020-02-20San Francisco
6James Okafor[email protected]EngineeringJunior Developer920002024-06-15Austin
7Lena Vogt[email protected]EngineeringDevOps Engineer1400002022-04-01New York
8Amir Patel[email protected]EngineeringBackend Engineer1320002023-01-09London
9Sofia Lindberg[email protected]DesignLead Designer1450002019-09-12New York
10Carlos Rivera[email protected]DesignUX Designer1120002021-07-20San Francisco
11Hannah Becker[email protected]DesignUI Designer1050002022-11-01London
12Yuki Tanaka[email protected]DesignProduct Designer1180002023-03-14San Francisco
13Olivia Martin[email protected]MarketingVP of Marketing1650002019-04-22New York
14Ethan Brooks[email protected]MarketingContent Strategist950002021-10-05Austin
15Nina Kowalski[email protected]MarketingSEO Specialist880002022-08-15New York
16Daniel Ochoa[email protected]MarketingMarketing Analyst910002023-05-20Austin
17Samira Hassan[email protected]MarketingSocial Media Manager820002024-01-08London
18Tyler Washington[email protected]SalesSales Director1580002019-11-30New York
19Jessica Huang[email protected]SalesAccount Executive1100002020-06-14San Francisco
20Ryan O'Brien[email protected]SalesAccount Executive1050002021-03-22London
21Fatima Al-Rashid[email protected]SalesSales Development Rep720002023-09-01Austin
22Kevin Dupont[email protected]SalesSolutions Engineer1350002022-01-17San Francisco
23Megan Stewart[email protected]SalesAccount Manager980002024-03-11New York
24Laura Chen[email protected]HRHR Director1480002019-08-05New York
25Brian Nakamura[email protected]HRHR Business Partner1050002020-12-01San Francisco
26Chloe Dubois[email protected]HRRecruiter780002022-05-23London
27Angela Moretti[email protected]HRPeople Operations850002023-07-10Austin
28Isaac Fernandez[email protected]EngineeringFrontend Engineer1280002022-09-19New York
29Sarah Mitchell[email protected]DesignDesign Systems Lead1380002020-04-06San Francisco
30Omar Farah[email protected]EngineeringQA Engineer950002024-02-12London
31Natalie Park[email protected]MarketingGrowth Manager1080002021-11-28San Francisco

Schema

Field Type Description
name string Employee full name.
email string Work email address on the fictional example.com domain.
department string One of Engineering, Sales, Marketing, HR, or Design.
role string Job title within the department.
salary int32 Annual salary in USD, stored as a 32-bit integer column.
start_date string Hire date as an ISO 8601 string (YYYY-MM-DD).
office string Office location — San Francisco, New York, Austin, or London.

About the Parquet Format

Parquet is a columnar storage format: instead of writing records one after another the way CSV does, it writes each column’s values together. This sample stores all 30 names, then all 30 emails, and so on — grouped into a single row group, with each column chunk compressed independently using snappy.

That layout is why Parquet dominates analytics workloads:

  • Column pruning. A query that needs only salary reads only the salary chunk, skipping the other six columns entirely.
  • Predicate pushdown. Per-chunk statistics (min/max) in the footer let engines skip whole row groups that can’t match a filter.
  • Embedded schema. The footer records every column’s name and physical type, so salary comes back as an int32 — no header-sniffing or type inference, unlike CSV.

The trade-off is that none of this is inspectable with cat. The file is binary, footer-indexed, and only meaningful to a Parquet reader — hence no raw-contents block on this page. Open it with the Parquet Viewer, convert it with Parquet to CSV, or load it in code: pd.read_parquet(...), duckdb.sql("SELECT * FROM 'sample-employees.parquet'"), or arrow::read_parquet() in R.

One honest caveat: at 30 rows, format overhead (footer metadata, dictionary pages) dominates and the file is larger per-row than its CSV twin. Parquet’s advantages compound at thousands to billions of rows; this sample is sized for testing correctness, not benchmarking.

All eleven formats in this section carry the same 30 employee records. The nearest relative is the Feather sample — also columnar and binary, but optimized for interchange speed rather than storage efficiency. To produce files like this from your own data, use CSV to Parquet.

FAQ

4 questions
How do I open a Parquet file without installing anything?
Parquet is a binary format, so a text editor shows gibberish. Use the Parquet Viewer at /parquet-viewer/ to inspect this file in your browser, or the Parquet to CSV tool at /parquet-to-csv/ to get a plain-text version. In code: pandas.read_parquet('sample-employees.parquet') or DuckDB's read_parquet().
Does downloading this file send any data to a server?
No. The sample is a static file served directly by the site — nothing is uploaded, processed, or inspected. The Parquet tools linked below run entirely in your browser too.
What compression does this file use?
Snappy, the Parquet ecosystem's default codec — fast to decompress with moderate ratios, and supported by essentially every Parquet reader. Column chunks are compressed independently, which is what lets readers skip columns they don't need.
Is the employee data real?
No. All 30 records are fictional, and every email address uses the reserved example.com domain, so the file is safe for demos, tests, and documentation.

Work With Parquet Files 5 tools