Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

3D Files can consume a lot of space. Depending on the use case, the size of a 3D FIle can vary between a couple of Bytes bytes for a simple cube up , to hundreds of MegaByte megabyte for complex and organic shapes.

One typical problem that our This page list options that can help on-premise customers face is running out of space on the volume that stores the 3D Files. This page shall list options on what can be done to save spaceto keep space consumption under control.

Info

Since version 4.1.0, the 3YOURMIND Software uses significantly less space for saving 3D fIles. Also we work on future savings and compression strategiesto store new 3D files.

Option 1:

...

Use an Object Storage like S3

Object Stores Storages have the benefit that they do not run out of space and the costs increase according to the actual usage (so you don’t pay for unused capacity). Read here how to configure the 3YOURMIND Software to work with S3.

...

To avoid the need of increasing the storage often, consider to provision more than enough capacity.
For productive environments, it’s probably better to think in TerraBytes instead of GigaBytes.Option 3: Delete/Archive unneeded files

For each uploaded file, 3YOURMIND stores multiple other files. Below is a list of each files purpose and the impact of removing it from the file system.

You can delete the files by running

find . -name "[filename]" -type f -delete -print

Filename

Purpose

Presence

Typical size

Impact when Deleted

originalFile.*

The uploaded file, for “Download Original“

always

1 * original

“Download Original“ will not work

repaired.stl

Repaired file, for download

always

1 * original

“Download Optimized“ will not work

repaired_original.ctm

Repaired file in lossless format, used for further computations, e.g. orientation optimization

always

0.1 * original

Orientation Optimization would stop working

repaired.ctm

Repaired file in lossy format, used in the 3D viewer

always

0.1 * original

Viewer would not open

thumbnail.png

Thumbnail, used as preview in the application

always

100 KB

Thumbnails in Software and PDFs would be missing

support_histogram.json

Support histogram, for pricing

always

10 KB

Pricing in the Basket would stop working

support.json

Support structure for visualization in the 3D viewer

always

0.5 * original
(before version 4.1.0 → 2 * original )

Support structure could not be shown in the viewer

wta.json

Wall thickness analysis for visualization in the 3D viewer

always

0.2 * original

Wall Thickness Analysis would be unavailable in the viewer.

repaired_simple.ctm

Simplified repaired file, used in the 3D viewer

big files

0.01 * original

Viewer would be unavailable for big files.

optimized_orientation.fb

Cached results of orientation optimization

orientation optimization in pricing formula

200 B

model.zip

Repaired WRL file and texture (if present), for download

multicolor files

texture.png

Texture of the file, used in the 3D viewer

textured files

wtaOriginal.json

Wall thickness analysis of the original file

always before 4.1.0, removed after

0.2 * original

parameter.3yd

3D model parameter of the original file

always before 4.1.0, removed after

viewer.ctm

Original file in lossy format, used in the 3D viewer of the old user panel

always before 4.1.0, removed after

0.1 * original

viewerOriginal.ctm

Original file in lossless format

always before 4.1.0, removed after

0.1 * original

original.stl

Original file converted to STL

always before 4.1.0, removed after

1 * original

repaired_texture.png

Texture of the repaired file

textured files, removed in 4.1.0

Option 4: Delete/Archive old files

...