CSV Uploads
You can upload CSV files directly in Mitzu to create a new data table that can be used in analysis.
Supported column types​
Mitzu automatically detects and maps common scalar types from CSV values.
Int- whole numbers, for example1,42,9000Float- decimal numbers, for example10.2,0.75Date- calendar dates, for example2024-01-01Timestamp- date and time values, for example2024-01-01 10:15:01String- text values
If a value is empty, Mitzu keeps it as null.
CSV upload limits and behavior​
- Maximum file size: 20 MB per upload
- File must be in valid CSV format
- Uploads are processed in chunks for reliability on larger files
- Column names are normalized to safe names (for example, spaces become underscores)
Important limitations​
- Only CSV input is supported in this flow
- Complex nested data structures are not inferred from CSV values
- Type detection is based on the values present in the uploaded file
- Mixed formats in a single column may be interpreted as text
Tips for best results​
- Include a header row with clear column names
- Keep each column semantically consistent (for example, do not mix numbers and free text)
- Use ISO-like date and timestamp formats where possible