Skip to content

Commit

Permalink
[FLINK-7880][QS] Fix QS test instabilities.
Browse files Browse the repository at this point in the history
  • Loading branch information
kl0u committed Oct 29, 2017
1 parent 5231c93 commit 6b8f7dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,12 @@
import org.apache.flink.runtime.state.AbstractStateBackend;

import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.rules.TemporaryFolder;

/**
* Several integration tests for queryable state using the {@link RocksDBStateBackend}.
*/
@Ignore
public class HAQueryableStateRocksDBBackendITCase extends HAAbstractQueryableStateTestBase {

@Rule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,12 @@
import org.apache.flink.runtime.state.AbstractStateBackend;

import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Rule;
import org.junit.rules.TemporaryFolder;

/**
* Several integration tests for queryable state using the {@link RocksDBStateBackend}.
*/
@Ignore
public class NonHAQueryableStateRocksDBBackendITCase extends NonHAAbstractQueryableStateTestBase {

@Rule
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* limitations under the License.
*/

package org.apache.flink.queryablestate.itcases;
package org.apache.flink.queryablestate.network;

import org.apache.flink.api.common.ExecutionConfig;
import org.apache.flink.api.common.state.ListStateDescriptor;
Expand All @@ -28,7 +28,6 @@
import org.apache.flink.contrib.streaming.state.RocksDBKeyedStateBackend;
import org.apache.flink.queryablestate.client.VoidNamespace;
import org.apache.flink.queryablestate.client.VoidNamespaceSerializer;
import org.apache.flink.queryablestate.network.KvStateRequestSerializerTest;
import org.apache.flink.runtime.query.TaskKvStateRegistry;
import org.apache.flink.runtime.state.KeyGroupRange;
import org.apache.flink.runtime.state.internal.InternalListState;
Expand Down Expand Up @@ -124,6 +123,7 @@ public void testListSerialization() throws Exception {
new ListStateDescriptor<>("test", LongSerializer.INSTANCE));

KvStateRequestSerializerTest.testListSerialization(key, listState);
longHeapKeyedStateBackend.dispose();
}

/**
Expand Down Expand Up @@ -163,5 +163,6 @@ public void testMapSerialization() throws Exception {
new MapStateDescriptor<>("test", LongSerializer.INSTANCE, StringSerializer.INSTANCE));

KvStateRequestSerializerTest.testMapSerialization(key, mapState);
longHeapKeyedStateBackend.dispose();
}
}

0 comments on commit 6b8f7dc

Please sign in to comment.