Search in sources :

Example 1 with GenericInputSplit

use of org.apache.flink.core.io.GenericInputSplit in project flink by apache.

the class GenericInputFormat method createInputSplits.

@Override
public GenericInputSplit[] createInputSplits(int numSplits) throws IOException {
    if (numSplits < 1) {
        throw new IllegalArgumentException("Number of input splits has to be at least 1.");
    }
    numSplits = (this instanceof NonParallelInput) ? 1 : numSplits;
    GenericInputSplit[] splits = new GenericInputSplit[numSplits];
    for (int i = 0; i < splits.length; i++) {
        splits[i] = new GenericInputSplit(i, numSplits);
    }
    return splits;
}
Also used : GenericInputSplit(org.apache.flink.core.io.GenericInputSplit)

Example 2 with GenericInputSplit

use of org.apache.flink.core.io.GenericInputSplit in project flink by apache.

the class NonRichGenericInputFormat method createInputSplits.

@Override
public GenericInputSplit[] createInputSplits(int numSplits) throws IOException {
    if (numSplits < 1) {
        throw new IllegalArgumentException("Number of input splits has to be at least 1.");
    }
    numSplits = (this instanceof NonParallelInput) ? 1 : numSplits;
    GenericInputSplit[] splits = new GenericInputSplit[numSplits];
    for (int i = 0; i < splits.length; i++) {
        splits[i] = new GenericInputSplit(i, numSplits);
    }
    return splits;
}
Also used : GenericInputSplit(org.apache.flink.core.io.GenericInputSplit) NonParallelInput(org.apache.flink.api.common.io.NonParallelInput)

Example 3 with GenericInputSplit

use of org.apache.flink.core.io.GenericInputSplit in project flink by apache.

the class CollectionInputFormatTest method testSerializabilityStrings.

@Test
public void testSerializabilityStrings() {
    final String[] data = new String[] { "To be, or not to be,--that is the question:--", "Whether 'tis nobler in the mind to suffer", "The slings and arrows of outrageous fortune", "Or to take arms against a sea of troubles,", "And by opposing end them?--To die,--to sleep,--", "No more; and by a sleep to say we end", "The heartache, and the thousand natural shocks", "That flesh is heir to,--'tis a consummation", "Devoutly to be wish'd. To die,--to sleep;--", "To sleep! perchance to dream:--ay, there's the rub;", "For in that sleep of death what dreams may come,", "When we have shuffled off this mortal coil,", "Must give us pause: there's the respect", "That makes calamity of so long life;", "For who would bear the whips and scorns of time,", "The oppressor's wrong, the proud man's contumely,", "The pangs of despis'd love, the law's delay,", "The insolence of office, and the spurns", "That patient merit of the unworthy takes,", "When he himself might his quietus make", "With a bare bodkin? who would these fardels bear,", "To grunt and sweat under a weary life,", "But that the dread of something after death,--", "The undiscover'd country, from whose bourn", "No traveller returns,--puzzles the will,", "And makes us rather bear those ills we have", "Than fly to others that we know not of?", "Thus conscience does make cowards of us all;", "And thus the native hue of resolution", "Is sicklied o'er with the pale cast of thought;", "And enterprises of great pith and moment,", "With this regard, their currents turn awry,", "And lose the name of action.--Soft you now!", "The fair Ophelia!--Nymph, in thy orisons", "Be all my sins remember'd." };
    try {
        List<String> inputCollection = Arrays.asList(data);
        CollectionInputFormat<String> inputFormat = new CollectionInputFormat<String>(inputCollection, BasicTypeInfo.STRING_TYPE_INFO.createSerializer(new ExecutionConfig()));
        // serialize
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        ObjectOutputStream oos = new ObjectOutputStream(baos);
        oos.writeObject(inputFormat);
        oos.close();
        // deserialize
        ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray());
        ObjectInputStream ois = new ObjectInputStream(bais);
        Object result = ois.readObject();
        assertTrue(result instanceof CollectionInputFormat);
        int i = 0;
        @SuppressWarnings("unchecked") CollectionInputFormat<String> in = (CollectionInputFormat<String>) result;
        in.open(new GenericInputSplit(0, 1));
        while (!in.reachedEnd()) {
            assertEquals(data[i++], in.nextRecord(""));
        }
        assertEquals(data.length, i);
    } catch (Exception e) {
        e.printStackTrace();
        fail(e.getMessage());
    }
}
Also used : GenericInputSplit(org.apache.flink.core.io.GenericInputSplit) ExecutionConfig(org.apache.flink.api.common.ExecutionConfig) ByteArrayOutputStream(java.io.ByteArrayOutputStream) ObjectOutputStream(java.io.ObjectOutputStream) IOException(java.io.IOException) ByteArrayInputStream(java.io.ByteArrayInputStream) ObjectInputStream(java.io.ObjectInputStream) Test(org.junit.Test)

Example 4 with GenericInputSplit

use of org.apache.flink.core.io.GenericInputSplit in project flink by apache.

the class CollectionInputFormatTest method testSerializability.

@Test
public void testSerializability() {
    try (ByteArrayOutputStream buffer = new ByteArrayOutputStream();
        ObjectOutputStream out = new ObjectOutputStream(buffer)) {
        Collection<ElementType> inputCollection = new ArrayList<ElementType>();
        ElementType element1 = new ElementType(1);
        ElementType element2 = new ElementType(2);
        ElementType element3 = new ElementType(3);
        inputCollection.add(element1);
        inputCollection.add(element2);
        inputCollection.add(element3);
        @SuppressWarnings("unchecked") TypeInformation<ElementType> info = (TypeInformation<ElementType>) TypeExtractor.createTypeInfo(ElementType.class);
        CollectionInputFormat<ElementType> inputFormat = new CollectionInputFormat<ElementType>(inputCollection, info.createSerializer(new ExecutionConfig()));
        out.writeObject(inputFormat);
        ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(buffer.toByteArray()));
        Object serializationResult = in.readObject();
        assertNotNull(serializationResult);
        assertTrue(serializationResult instanceof CollectionInputFormat<?>);
        @SuppressWarnings("unchecked") CollectionInputFormat<ElementType> result = (CollectionInputFormat<ElementType>) serializationResult;
        GenericInputSplit inputSplit = new GenericInputSplit(0, 1);
        inputFormat.open(inputSplit);
        result.open(inputSplit);
        while (!inputFormat.reachedEnd() && !result.reachedEnd()) {
            ElementType expectedElement = inputFormat.nextRecord(null);
            ElementType actualElement = result.nextRecord(null);
            assertEquals(expectedElement, actualElement);
        }
    } catch (Exception e) {
        e.printStackTrace();
        fail(e.toString());
    }
}
Also used : GenericInputSplit(org.apache.flink.core.io.GenericInputSplit) ArrayList(java.util.ArrayList) ByteArrayOutputStream(java.io.ByteArrayOutputStream) ExecutionConfig(org.apache.flink.api.common.ExecutionConfig) ObjectOutputStream(java.io.ObjectOutputStream) TypeInformation(org.apache.flink.api.common.typeinfo.TypeInformation) IOException(java.io.IOException) ByteArrayInputStream(java.io.ByteArrayInputStream) ObjectInputStream(java.io.ObjectInputStream) Test(org.junit.Test)

Aggregations

GenericInputSplit (org.apache.flink.core.io.GenericInputSplit)4 ByteArrayInputStream (java.io.ByteArrayInputStream)2 ByteArrayOutputStream (java.io.ByteArrayOutputStream)2 IOException (java.io.IOException)2 ObjectInputStream (java.io.ObjectInputStream)2 ObjectOutputStream (java.io.ObjectOutputStream)2 ExecutionConfig (org.apache.flink.api.common.ExecutionConfig)2 Test (org.junit.Test)2 ArrayList (java.util.ArrayList)1 NonParallelInput (org.apache.flink.api.common.io.NonParallelInput)1 TypeInformation (org.apache.flink.api.common.typeinfo.TypeInformation)1