Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Trino data lake connectors categorize HDFS quota exceeded exceptions as EXTERNAL but should be USER_ERROR #22462

Open
xkrogen opened this issue Jun 20, 2024 · 3 comments

Comments

@xkrogen
Copy link
Member

xkrogen commented Jun 20, 2024

When using a data lake connector (Hive/Iceberg/etc.) to write data to HDFS using Trino, we may see a QuotaExceededException (e.g. namespace quota or disk space quota exceeded). This is a userspace issue, but currently we categorize it as an EXTERNAL error.

I would like to work on a fix for this, but have a couple of things I'd like to discuss before moving forward:

  1. My initial approach would be to modify HdfsOutputFile to add a new catch block here for QuotaExceededException, which will throw a TrinoException with type USER_ERROR:

    catch (org.apache.hadoop.fs.FileAlreadyExistsException e) {
    createFileCallStat.recordException(e);
    throw withCause(new FileAlreadyExistsException(toString()), e);
    }

    (I think we would need to modify HdfsOutputStream#write() as well to catch disk space quota issues specifically, but need to double-check.)
    However I noticed that there is only one place in all of the various trino-filesystem-*/trino-hdfs modules where we throw a TrinoException, so I am wondering if there is a different best-practice for surfacing this kind of issue from the FS layer?

  2. Are there analogous concepts on other blob stores (S3/GCS/Azure) that we should handle similarly?

As one example, when writing ORC data from Hive or Iceberg using OrcFileWriterFactory (handled here) or IcebergFileWriterFactory (handled here), you get an error with type (HIVE|ICEBERG)_WRITER_OPEN_ERROR) and message of simply "Error creating ORC file", which makes it challenging for the end user to understand that there is something on their end to correct (quota issue).

@xkrogen
Copy link
Member Author

xkrogen commented Jun 20, 2024

cc @electrum @weijiii @findepi

@wendigo
Copy link
Contributor

wendigo commented Jun 20, 2024

cc @pajaks

@xkrogen
Copy link
Member Author

xkrogen commented Jun 27, 2024

Bump @findepi @pajaks @electrum

If it's helpful to guide the discussion I can put together a PR for this following the proposed approach, but I would love feedback before that to avoid myself any duplicate work in the wrong direction 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants