Hacktoberfest 2026: los issues que los mantenedores marcaron para octubre, abiertos y aptos para principiantes. Explorar issues de Hacktoberfest

Cannot retrieve the full file content

Abierto
#650 0 comentarios 0 reacciones 0 asignados Ver en GitHub

Nadie ha tomado este issue todavía.

Evaluación

Dificultad
4/5
Tiempo estimado
3-5 días
Aptitud para principiantes
30/100
Tipo de issue
Error
Claridad
Necesita aclaración
Estado de actividad
Estancado
Stack tecnológico
java
Área
api

Línea de trabajo

El informe no menciona ningún archivo del repositorio ni ninguna prueba; empieza reproduciendo la descarga a través del Files content endpoint mediante el método Java y el comando wget proporcionados. Rastrea dónde el cliente gestiona las respuestas interrumpidas y compara el tamaño recibido con Content-Length. Se considera terminado cuando se obtiene el archivo de salida completo sin una terminación prematura.

Escrito por el modelo de indexación a partir del texto del issue.

Descripción

bug sdk

I use this API to create a batch embedding task:
https://api.openai.com/v1/batches

After the task is completed, download the embedding result file based on the output_file_id using the following API:
https://api.openai.com/v1/files/{file_id}/content

Recently, the project ran into an issue. After investigation, it was found that the problem was caused by incomplete downloaded files resulting in missing data.
The program was set to request 5,000 items per batch, but the result file downloaded locally contained only a few hundred items and showed the following message:
Premature end of Content-Length delimited message body (expected: 391505535; received: 113446592

I also tried to retrieve the result file in chunks, but it still failed and I could only get partial data.
The following is the Java code I originally used to download the file. Before this, this method was able to download the result file completely.

public static int downloadFile(String outputFilePath, String url, Map<String, String> headers) throws IOException {
    HttpGet request = new HttpGet(url);
    
    if (headers != null) {
        headers.forEach(request::addHeader);
    }

    CloseableHttpResponse execute = httpClient.execute(request);
    int statusCode = execute.getStatusLine().getStatusCode();
    HttpEntity entity = execute.getEntity();
    InputStream content = entity.getContent();
    try (FileOutputStream outputStream = new FileOutputStream(outputFilePath)) {
        byte[] buffer = new byte[8192];
        int bytesRead;
        while ((bytesRead = content.read(buffer)) != -1) {
            outputStream.write(buffer, 0, bytesRead);
        }
        System.out.println("File downloaded to: " + outputFilePath);
    } catch (IOException e) {
        System.err.println("Error writing to file: " + e.getMessage());
    } finally {
        try {
            content.close();
        } catch (IOException e) {
            System.err.println("Error closing input stream: " + e.getMessage());
        }
    }
    return statusCode;
}

I tried testing the download on the server using wget. After downloading part of the file, it would close and then retry, repeating in a loop.

[root@scripts]# wget --header="Authorization: Bearer token" \
>      -O file.jsonl \
>      https://api.openai.com/v1/files/{fileId}/content
--2025-11-13 02:59:44--  https://api.openai.com/v1/files/{fileId}/content
Resolving api.openai.com (api.openai.com)... 162.159.140.245, 172.66.0.243
Connecting to api.openai.com (api.openai.com)|162.159.140.245|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 730814739 (697M) [application/octet-stream]
Saving to: ‘file.jsonl’

file.jsonl                                                         10%[===============>                                                                                                                                           ]  73.76M  25.1MB/s    in 2.9s    

2025-11-13 03:00:33 (25.1 MB/s) - Connection closed at byte 77340672. Retrying.

--2025-11-13 03:00:36--  (try: 2)  https://api.openai.com/v1/files/{fileId}/content
Connecting to api.openai.com (api.openai.com)|162.159.140.245|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 730814739 (697M) [application/octet-stream]
Saving to: ‘file.jsonl’

file.jsonl                                                          3%[====>                                                                                                                                                      ]  23.03M  24.7MB/s    in 0.9s    

2025-11-13 03:00:51 (24.7 MB/s) - Connection closed at byte 77340672. Retrying.

--2025-11-13 03:00:55--  (try: 3)  https://api.openai.com/v1/files/{fileId}/content
Connecting to api.openai.com (api.openai.com)|162.159.140.245|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 730814739 (697M) [application/octet-stream]
Saving to: ‘file.jsonl’

file.jsonl                                                          6%[========>                                                                                                                                                  ]  42.78M  19.3MB/s    in 2.2s    

2025-11-13 03:01:10 (19.3 MB/s) - Connection closed at byte 77340672. Retrying.
HTTP request sent, awaiting response... ^C
[root@scripts]# wc -l file.jsonl 
851 file.jsonl
Lenguaje dominante
Kotlin
Estrellas
1.5k
Forks
264
Merge medio
13 h 31 min
PR fusionados (30 d)
89

Guía de contribución

Abrir la guía de contribución

Primeros pasos

  1. Lee el issue completo y luego la guía de contribución del proyecto.
  2. Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
  3. Haz un fork del repositorio y trabaja en una rama.
  4. Abre un pull request que haga referencia al número del issue.

Más de openai/openai-java

Todos los issues de openai/openai-java

Issues similares

Más issues de Kotlin

Recibe los nuevos issues en tu correo

Un resumen breve de issues de GitHub para principiantes.