Uploaded image for project: 'Parquet'
  1. Parquet
  2. PARQUET-1237

Reading big texts cause OutOfMemmory Error. How to read text partialy?

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 1.8.1
    • None
    • parquet-avro
    • None

    Description

       I have dataset with big strings (every record about 15 mb) in parquet.

      When I try to open all parquet parts I get OutOfMemory exception.

      How can I get only headers (first 100 symbols) for each string record without reading all record?

       

        Schema avroProj = SchemaBuilder.builder()

          .record("proj").fields()

          .name("idx").type().nullable().longType().noDefault()

          .name("text").type().nullable().bytesType().noDefault()

          .endRecord();

        Configuration conf = new Configuration();

        AvroReadSupport.setRequestedProjection(conf, avroProj);

        ParquetReader<GenericRecord> parquetReader = AvroParquetReader

          .<GenericRecord>builder(new Path(filePath))

          .withConf(conf)

          .build();

        GenericRecord record = parquetReader.read(); // record already have full text in RAM

        Long idx = (Long) record.get("idx");

        ByteBuffer rawText = (ByteBuffer) record.get("text");

        String header = new String(rawText.array()).substring(0, 200);

      Attachments

        Activity

          People

            Unassigned Unassigned
            DrEwan Andrei Iatsuk
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: