Replies: 2 comments 1 reply
-
Currently, the uid and gid of more than int32 are not supported. It can be made to work by manually repairing the table structure, which is a workaround to the solution.
|
Beta Was this translation helpful? Give feedback.
-
No, this happens with the gateway that's started using the 'juicefs gateway' command from 'juicefs-1.1.1-windows-amd64.tar.gz'. Whether using the web interface or making API calls through the gateway, I keep encountering this issue when uploading data. Seems like an internal software incompatibility, right? Any suitable fix for this? FileInputStream input = new FileInputStream("F:/Administrator/Downloads/202311/juicefs-1.1.1-windows-amd64.tar.gz");
ObjectMetadata meta = new ObjectMetadata();
meta.setContentLength(input.available());
s3client.putObject("myifs","20234797", input, meta); set MINIO_ROOT_USER=admin
set MINIO_ROOT_PASSWORD=123456789
juicefs gateway postgres://***:***@***:5432/pgdata ***:9080
pause |
Beta Was this translation helpful? Give feedback.
-
While the system automatically initializes the file system, the 'uid' and 'gid' within the 'node' are initially set as 'int'. However, file uploads via the gateway require 'bigint', resulting in upload failures that necessitate manual modification. Is this a software bug or an operational mistake?
version: juicefs-1.1.1-windows-amd64.tar.gz
Beta Was this translation helpful? Give feedback.
All reactions